diff options
author | Pete Fritchman <petef@FreeBSD.org> | 2002-05-27 00:10:24 +0000 |
---|---|---|
committer | Pete Fritchman <petef@FreeBSD.org> | 2002-05-27 00:10:24 +0000 |
commit | 884cdeb180e9c1c04eb8815e621a706a0ffc3b90 (patch) | |
tree | 6e9ecc1c580ec6864d08c4d41bb56a944c214028 /x11-wm/fvwm24/Makefile | |
parent | - update to 0.32 (diff) |
Only depend on GTK & Imlib if we're buildling the GNOME version.
Submitted by: AMAKAWA Shuhei <sa264@cam.ac.uk>
Notes
Notes:
svn path=/head/; revision=60050
Diffstat (limited to 'x11-wm/fvwm24/Makefile')
-rw-r--r-- | x11-wm/fvwm24/Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/x11-wm/fvwm24/Makefile b/x11-wm/fvwm24/Makefile index 72e59ee515c1..219754ff6ae7 100644 --- a/x11-wm/fvwm24/Makefile +++ b/x11-wm/fvwm24/Makefile @@ -23,11 +23,16 @@ LIB_DEPENDS+= stroke.0:${PORTSDIR}/devel/libstroke .endif USE_GMAKE= yes -USE_GTK= yes -USE_IMLIB= yes USE_XPM= yes USE_X_PREFIX= yes + +.include <bsd.port.pre.mk> + WANT_GNOME= yes +.if defined(HAVE_GNOME) +USE_GTK= yes +USE_IMLIB= yes +.endif GNU_CONFIGURE= yes @@ -46,13 +51,12 @@ CONFIGURE_ARGS+= --disable-shape PLIST_SUB+= FVWM_VERSION="${PORTVERSION}" -.include <bsd.port.pre.mk> - .if defined(HAVE_GNOME) USE_GNOME= yes PLIST_SUB+= GNOMEDATADIR="share/gnome/fvwm" .else -CONFIGURE_ARGS+= --without-gnome --disable-gnome-hints +CONFIGURE_ARGS+= --without-gnome --disable-gnome-hints \ + --disable-gtktest --disable-imlibtest PLIST_SUB+= GNOMEDATADIR="share/fvwm" .endif |