diff options
author | tron <tron@pkgsrc.org> | 2001-02-05 09:00:54 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2001-02-05 09:00:54 +0000 |
commit | f2d262e0bef754371e35855c069d92d11d7759bb (patch) | |
tree | 2c1d493d315c86d062bda624e834a3d6f66707c0 /games/xpuyopuyo | |
parent | 338eba73e20d12e6e7ee7489e26135aaeaef3369 (diff) | |
download | pkgsrc-f2d262e0bef754371e35855c069d92d11d7759bb.tar.gz |
Use full pathname "${LOCALBASE}/bin/auto..." in dependences and make
targets. This includes a fix for PR pkg/12125 by Tomasz Luchowski.
Diffstat (limited to 'games/xpuyopuyo')
-rw-r--r-- | games/xpuyopuyo/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/xpuyopuyo/Makefile b/games/xpuyopuyo/Makefile index 6b1529c0509..cd6cede9645 100644 --- a/games/xpuyopuyo/Makefile +++ b/games/xpuyopuyo/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2000/08/25 06:22:27 jlam Exp $ +# $NetBSD: Makefile,v 1.9 2001/02/05 09:00:57 tron Exp $ DISTNAME= xpuyopuyo-0.9.1 CATEGORIES= games x11 @@ -8,7 +8,7 @@ MASTER_SITES= http://chaos2.org/xpuyopuyo/ \ MAINTAINER= jlam@netbsd.org HOMEPAGE= http://chaos2.org/xpuyopuyo/ -BUILD_DEPENDS+= automake:../../devel/automake +BUILD_DEPENDS+= ${LOCALBASE}/bin/automake:../../devel/automake DEPENDS+= gtk+-1.2.*:../../x11/gtk DEPENDS+= libmikmod>=3.1.9:../../audio/libmikmod @@ -25,7 +25,7 @@ CONFIGURE_ENV+= ac_cv_path_GNOME_CONFIG="${GNOME_CONFIG}" GNOME_CONFIG= ${WRKDIR}/gnome-config pre-configure: - cd ${WRKSRC} && autoheader && automake --gnu && autoreconf --force + cd ${WRKSRC} && ${LOCALBASE}/bin/autoheader && ${LOCALBASE}/bin/automake --gnu && ${LOCALBASE}/bin/autoremake --force ${SED} -e "s,@PREFIX@,${PREFIX},g" ${FILESDIR}/gnome-config \ > ${GNOME_CONFIG} ${CHMOD} +x ${GNOME_CONFIG} |