diff options
author | wiz <wiz@pkgsrc.org> | 2002-10-03 01:59:07 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2002-10-03 01:59:07 +0000 |
commit | c534ae1875afa909774b962101f15164e84d4024 (patch) | |
tree | 68dd12ea9e55b4ee89b87475fb1c2a4cb3892e41 /games | |
parent | f973703e723914d64260a0093a64a36032bc0bb0 (diff) | |
download | pkgsrc-c534ae1875afa909774b962101f15164e84d4024.tar.gz |
Use automake.mk.
Diffstat (limited to 'games')
-rw-r--r-- | games/gnome-games/Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/games/gnome-games/Makefile b/games/gnome-games/Makefile index 870cbd67ded..bbbfa1a0f7e 100644 --- a/games/gnome-games/Makefile +++ b/games/gnome-games/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.40 2002/09/10 16:06:41 wiz Exp $ +# $NetBSD: Makefile,v 1.41 2002/10/03 01:59:07 wiz Exp $ DISTNAME= gnome-games-1.4.0.4 PKGREVISION= 2 @@ -13,13 +13,13 @@ MAINTAINER= tron@netbsd.org HOMEPAGE= http://www.gnome.org/ COMMENT= GNOME games collection -BUILD_DEPENDS+= automake>=1.4:../../devel/automake # Required for ports which don't build "libgtop". DEPENDS+= guile-[0-9]*:../../lang/guile BUILD_USES_MSGFMT= YES CONFLICTS= xbill-[0-9]* +AUTOMAKE_REQD= 1.4 USE_GMAKE= YES USE_X11BASE= YES USE_LIBTOOL= YES @@ -35,9 +35,6 @@ USE_CONFIG_WRAPPER= YES INSTALL_FILE= ${WRKDIR}/INSTALL MAKE_ENV+= PKGLOCALEDIR=${PKGLOCALEDIR} -AUTOGEN_ENV= NOCONFIGURE=1 -AUTOGEN_ENV+= srcdir=${WRKSRC} - post-patch: cd ${WRKSRC} && \ ${CP} gnect/src/connect4.c gnect/src/connect4.c.broken && \ @@ -45,7 +42,11 @@ post-patch: < gnect/src/connect4.c.broken > gnect/src/connect4.c pre-configure: - cd ${WRKSRC} && ${SETENV} ${AUTOGEN_ENV} ${SH} macros/autogen.sh + cd ${WRKSRC} && ${PREFIX}/bin/libtoolize --force --copy + cd ${WRKSRC} && ${ACLOCAL} -I macros + cd ${WRKSRC} && ${AUTOHEADER} + cd ${WRKSRC} && ${AUTOMAKE} --add-missing --gnu + cd ${WRKSRC} && ${AUTOCONF} post-build: ${SED} -e 's#@@INSTALL@@#${INSTALL}#' \ @@ -67,4 +68,5 @@ post-install: .include "../../devel/gettext-lib/buildlink.mk" .include "../../devel/ncurses/buildlink.mk" .include "../../x11/gnome-core/buildlink.mk" +.include "../../mk/automake.mk" .include "../../mk/bsd.pkg.mk" |