diff options
author | agc <agc> | 2000-07-11 09:31:32 +0000 |
---|---|---|
committer | agc <agc> | 2000-07-11 09:31:32 +0000 |
commit | a42851526b37603d8c8e2edb1ea4d1f310e47a4c (patch) | |
tree | c9fbacddd7bd87d9d754a9fdd648e80a35196cbd /x11/fvwm2 | |
parent | 939e120af31bb485a664185e7cc33a2d696bb815 (diff) | |
download | pkgsrc-a42851526b37603d8c8e2edb1ea4d1f310e47a4c.tar.gz |
Make these packages work better with xpkgwedge by using X11PREFIX in
preference to X11BASE, and by finding out where the xpm package is
installed by using pkg_info(1), not hardcoding a best guess.
Diffstat (limited to 'x11/fvwm2')
-rw-r--r-- | x11/fvwm2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/fvwm2/Makefile b/x11/fvwm2/Makefile index 526179db4f8..728419b612f 100644 --- a/x11/fvwm2/Makefile +++ b/x11/fvwm2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 1999/12/02 12:04:18 kleink Exp $ +# $NetBSD: Makefile,v 1.23 2000/07/11 09:31:33 agc Exp $ # FreeBSD Id: Makefile,v 1.12 1997/10/11 10:42:43 jkh Exp # @@ -25,7 +25,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-extras CONFIGURE_ARGS+= --sysconfdir=${PREFIX}/lib/X11/fvwm2 CONFIGURE_ARGS+= --libexecdir=${PREFIX}/lib/X11 -CONFIGURE_ARGS+= --with-xpm-includes=${PREFIX}/include +CONFIGURE_ARGS+= --with-xpm-includes=`${PKG_INFO} -qp xpm | ${AWK} '{print $$2}'`/include CONFIGURE_ARGS+= --with-readline-includes=${LOCALBASE}/include CONFIGURE_ARGS+= --with-rplay-includes=${LOCALBASE}/include CONFIGURE_ARGS+= --with-iconpath=${PREFIX}/lib/X11/fvwm2/pixmaps:${X11ROOT}/include/bitmaps:${X11ROOT}/include/pixmaps |