diff options
author | agc <agc@pkgsrc.org> | 2000-07-10 10:40:39 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2000-07-10 10:40:39 +0000 |
commit | e05e4735ddf3f9207384f7ffab7fa66a65f20df7 (patch) | |
tree | eb8c75c4d78a779a039aa1995f70225e25ce9df1 /games/xarchon | |
parent | b16e065ccc96b67b06741355aaed54c93e111998 (diff) | |
download | pkgsrc-e05e4735ddf3f9207384f7ffab7fa66a65f20df7.tar.gz |
Hardcoding X11PREFIX into package Makefiles forces the user to install
xpkgwedge once, before any other packages have been installed, and
never to delete it. This change finds the prefix of the installed
pre-req package using pkg_info(1), and allows packages to be found in
${X11BASE} and ${LOCALBASE}, not just ${X11PREFIX} - from mail from
Dave Sainty <dave@dtsp.co.nz>, munged slightly by myself.
Diffstat (limited to 'games/xarchon')
-rw-r--r-- | games/xarchon/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/games/xarchon/Makefile b/games/xarchon/Makefile index 237bdef9c7b..12fcdf8b33b 100644 --- a/games/xarchon/Makefile +++ b/games/xarchon/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2000/06/30 10:04:46 agc Exp $ +# $NetBSD: Makefile,v 1.10 2000/07/10 10:40:40 agc Exp $ # DISTNAME= xarchon-0.50 @@ -14,10 +14,13 @@ DEPENDS+= gtk+-1.2.*:../../x11/gtk DEPENDS+= esound-*:../../audio/esound GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--with-xpm-prefix=${X11PREFIX} \ - --with-gtk-prefix=${X11PREFIX} \ +CONFIGURE_ARGS+=--with-xpm-prefix=${XPM_PREFIX} \ + --with-gtk-prefix=${GTK_PREFIX} \ --with-esd-prefix=${LOCALBASE} +GTK_PREFIX!= ${PKG_INFO} -qp gtk+ | ${AWK} '{print $$2}' +XPM_PREFIX!= ${PKG_INFO} -qp xpm | ${AWK} '{print $$2}' + .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "SunOS" |