diff options
author | agc <agc> | 2000-07-10 10:40:39 +0000 |
---|---|---|
committer | agc <agc> | 2000-07-10 10:40:39 +0000 |
commit | 2f0b09b588eff52a3b5220f8f4761fcc47fe8801 (patch) | |
tree | eb8c75c4d78a779a039aa1995f70225e25ce9df1 /graphics/gimp-helpbrowser | |
parent | ba0f4a0faaf07ab1fae22236bcfedcff16165e50 (diff) | |
download | pkgsrc-2f0b09b588eff52a3b5220f8f4761fcc47fe8801.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 'graphics/gimp-helpbrowser')
-rw-r--r-- | graphics/gimp-helpbrowser/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/gimp-helpbrowser/Makefile b/graphics/gimp-helpbrowser/Makefile index 0bef920ec21..de0ff526786 100644 --- a/graphics/gimp-helpbrowser/Makefile +++ b/graphics/gimp-helpbrowser/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2000/07/05 03:40:27 hubertf Exp $ +# $NetBSD: Makefile,v 1.5 2000/07/10 10:40:40 agc Exp $ DISTNAME= gimp-1.1.24 PKGNAME= ${DISTNAME:S/-/-helpbrowser-/} @@ -18,7 +18,7 @@ USE_X11BASE= yes USE_GMAKE= yes USE_PKGLIBTOOL= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-gtk-prefix=${X11PREFIX} \ +CONFIGURE_ARGS+= --with-gtk-prefix="`${PKG_INFO} -qp gtk+ | ${AWK} '{print $$2}'`" \ --disable-perl \ --disable-python CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" INTLLIBS="-lintl" \ |