diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-05-25 04:17:21 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2002-05-25 04:17:21 +0000 |
commit | 18d982b7e8eb4d14d8cfb7380a3307df7bb644bc (patch) | |
tree | 3a62c4c193a11ddb469dd4677d411e750c83818f /x11 | |
parent | Update to 0.40 (diff) |
- Only detect GNOME if WITH_GNOME is defined. This allows port to be used with
gnome2 desktop;
- add missed gdk-puxbuf into LIB_DEPENDS while I am here.
Notes
Notes:
svn path=/head/; revision=59961
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xscreensaver/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/x11/xscreensaver/Makefile b/x11/xscreensaver/Makefile index 4a78820f3e1a..804550648b9f 100644 --- a/x11/xscreensaver/Makefile +++ b/x11/xscreensaver/Makefile @@ -13,13 +13,16 @@ MASTER_SITES= http://www.jwz.org/xscreensaver/ MAINTAINER?= DougB@FreeBSD.org LIB_DEPENDS= gle.3:${PORTSDIR}/graphics/gle \ - xml.5:${PORTSDIR}/textproc/libxml + xml.5:${PORTSDIR}/textproc/libxml \ + gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf USE_X_PREFIX= yes USE_XPM= yes USE_MESA= yes USE_GTK= yes +.if defined(WITH_GNOME) WANT_GNOME= yes +.endif GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-pam --with-gl --with-gle --with-xpm --with-xml \ --with-hackdir=${PREFIX}/bin/xscreensaver-hacks/ \ |