diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2002-09-09 01:27:39 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2002-09-09 01:27:39 +0000 |
commit | b520fc42b332749be46f3b19804511973cddb723 (patch) | |
tree | 7d658754b75243d3f21039aa849a1f29e9dbaf6e /games | |
parent | Fix build on -current (incorrect #include) (diff) |
Fix things up after the GNOMENG commit.
PR: 42565
Submitted by: Tilman Linneweh <tilman@arved.de>
Notes
Notes:
svn path=/head/; revision=65881
Diffstat (limited to 'games')
-rw-r--r-- | games/xpuyopuyo/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/games/xpuyopuyo/Makefile b/games/xpuyopuyo/Makefile index caa34a8adcf5..2bd94827ad06 100644 --- a/games/xpuyopuyo/Makefile +++ b/games/xpuyopuyo/Makefile @@ -18,6 +18,7 @@ USE_X_PREFIX= yes USE_XPM= yes USE_AUTOCONF= yes USE_GNOMENG= yes +USE_GNOME= gtk12 WANT_GNOME= yes MAN6= xpuyopuyo.6 @@ -30,11 +31,13 @@ LIB_DEPENDS+= mikmod.2:${PORTSDIR}/audio/libmikmod CONFIGURE_ARGS+=--with-libmikmod-prefix=${LOCALBASE} .endif -.if ${HAVE_GNOME:Mgtk12}!="" -USE_GNOME+= gtk12 -PKGNAMESUFFIX= -gtk +.if ${HAVE_GNOME:Mgnomelibs}!="" +USE_GNOME+= gnomelibs gnomehack +PKGNAMESUFFIX= -gnome +PLIST_SUB+= DATADIR="share/gnome" .else -CONFIGURE_ARGS+=--without-gnome +CONFIGURE_ARGS+= --without-gnome +PLIST_SUB+= DATADIR="share" .endif .if defined(WITH_ROTATE_FIXED) |