(same backwards compat warnings related to 1.13 as in 1.12.5) Bugs fixed in 1.12.6: * Python-related bugs: - The default installation location for python modules has been improved for Python 3 on Debian and Ubuntu systems, changing from: ${prefix}/lib/python3/dist-packages to ${prefix}/lib/python3.x/site-packages This change should ensure modules installed using the default ${prefix} "/usr/local" are found by default by system python 3.x installations. See automake bug#10227. - Python byte-compilation supports the new layout mandated by PEP-3147, with its __pycache__ directory (automake bug#8847). * Build system issues: - The maintainer rebuild rules for Makefiles and aclocal.m4 in Automake's own build system works correctly again (bug introduced in Automake 1.12.5). * Testsuite issues: - The Vala-related tests has been changed to adjust to the removal of the 'posix' profile in the valac compiler. See automake bug#12934 a.k.a. bug#12522. - Some spurious testsuite failures related to older tools and systems have been fixed.
34 lines
958 B
Makefile
34 lines
958 B
Makefile
# $NetBSD: Makefile,v 1.90 2012/12/16 10:41:11 wiz Exp $
|
|
#
|
|
|
|
# Note: when the minor version changes (e.g. 1.11 -> 1.12)
|
|
# emulators/b-em/hacks.mk needs to be updated for the new version.
|
|
# Please do so when updating automake as otherwise pbulk will choke.
|
|
# (It should be safe to make the change blindly.)
|
|
|
|
DISTNAME= automake-1.12.6
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=automake/} \
|
|
ftp://sources.redhat.com/pub/automake/
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= wiz@NetBSD.org
|
|
HOMEPAGE= http://www.gnu.org/software/automake/automake.html
|
|
COMMENT= GNU Standards-compliant Makefile generator
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
DEPENDS+= autoconf>=2.62:../../devel/autoconf
|
|
|
|
USE_TOOLS+= gm4:run perl:run
|
|
|
|
PLIST_SUBST+= PKG_DIR_VERSION=1.12
|
|
GNU_CONFIGURE= YES
|
|
_STRIPFLAG_INSTALL= # none
|
|
INFO_FILES= YES
|
|
REPLACE_PERL= lib/tap-driver.pl
|
|
|
|
# doesn't work because buildlink3 hides scripts
|
|
# from autoconf too well
|
|
#TEST_TARGET= check
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|