25b0f1cb15
and 2.7, since a lot of software use these macros to detect the installed python version and since we use 2.7 as the default now, these were all failing. patch from Brad, ok jasper@ and sthen@
79 lines
1.9 KiB
Makefile
79 lines
1.9 KiB
Makefile
# $OpenBSD: Makefile,v 1.5 2011/06/20 20:28:44 robert Exp $
|
|
|
|
COMMENT= GNU standards-compliant Makefile generator
|
|
|
|
VERSION= 1.11
|
|
DISTNAME= automake-${VERSION}.1
|
|
REVISION= 2
|
|
PKGSPEC= automake->=${VERSION},<1.12
|
|
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=automake/}
|
|
|
|
HOMEPAGE= http://www.gnu.org/software/automake/
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MODULES= lang/python
|
|
|
|
MODPY_BUILDDEP= No
|
|
MODPY_RUNDEP= No
|
|
|
|
AUTOCONF_VERSION= 2.65
|
|
|
|
BUILD_DEPENDS = ${RUN_DEPENDS}
|
|
RUN_DEPENDS= ${MODGNU_AUTOCONF_DEPENDS}
|
|
|
|
SUFFIX= -${VERSION}
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --infodir=${PREFIX}/info
|
|
CONFIGURE_ENV += AUTOCONF_VERSION=${AUTOCONF_VERSION}
|
|
|
|
MAKE_FLAGS+= pkgvdatadir=${PREFIX}/share/automake${SUFFIX} \
|
|
APIVERSION=${VERSION}
|
|
SUBST_VARS= SUFFIX
|
|
|
|
FAKE_FLAGS= docdir=${PREFIX}/share/doc/automake${SUFFIX}
|
|
|
|
REGRESS_DEPENDS= ${BASE_PKGPATH} \
|
|
${MODPY_RUN_DEPENDS} \
|
|
devel/libtool \
|
|
devel/gmake \
|
|
archivers/bzip2 \
|
|
devel/bison \
|
|
editors/emacs21 \
|
|
devel/dejagnu
|
|
|
|
TESTS_ENVIRONMENT= AUTOCONF_VERSION=${AUTOCONF_VERSION} \
|
|
MAKE=${GMAKE}
|
|
|
|
do-regress:
|
|
ln -sf ${MODPY_BIN} ${WRKDIR}/bin/python
|
|
@cd ${WRKBUILD} && \
|
|
exec ${SETENV} ${MAKE_ENV} \
|
|
TESTS_ENVIRONMENT="${TESTS_ENVIRONMENT}" \
|
|
${MAKE_PROGRAM} ${ALL_REGRESS_FLAGS} \
|
|
-f ${MAKE_FILE} ${REGRESS_TARGET}
|
|
|
|
pre-configure:
|
|
${SUBST_CMD} ${WRKSRC}/doc/automake.texi
|
|
|
|
post-install:
|
|
cd ${PREFIX}/info && mv automake.info automake${SUFFIX}.info
|
|
perl -pi -e "s,automake\: \(automake\),automake-1\.11\: \(automake-1\.11\)," \
|
|
${PREFIX}/info/automake${SUFFIX}.info
|
|
perl -pi -e "s,aclocal\: \(automake\),aclocal: \(automake-1\.11\)," \
|
|
${PREFIX}/info/automake${SUFFIX}.info
|
|
|
|
.for f in info-1 info-2
|
|
cd ${PREFIX}/info && mv automake.${f} automake${SUFFIX}.${f} \
|
|
&& perl -pi -e "s,automake.${f},automake${SUFFIX}.${f}," \
|
|
${PREFIX}/info/automake${SUFFIX}.info
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|