diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-08-20 22:10:49 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-08-20 22:10:49 +0000 |
commit | 4c01feb76b6a445b363df88aed4b6a7c8ef1e05a (patch) | |
tree | 07fac0f3c9e4d7ea2fc4fdcc4564a16679dea21a | |
parent | 421ca9206a5d86f01a1b43b2ad01403133c8ca31 (diff) | |
download | ports-4c01feb76b6a445b363df88aed4b6a7c8ef1e05a.tar.gz ports-4c01feb76b6a445b363df88aed4b6a7c8ef1e05a.zip |
Notes
-rw-r--r-- | games/xpuyopuyo/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/games/xpuyopuyo/Makefile b/games/xpuyopuyo/Makefile index 90abca751663..e4bf746cf395 100644 --- a/games/xpuyopuyo/Makefile +++ b/games/xpuyopuyo/Makefile @@ -23,10 +23,13 @@ WANT_GNOME= yes MAN6= xpuyopuyo.6 +OPTIONS= MIKMOD "libmikmod support" off \ + ROTATE_FIXED "Fix position of one blob during rotation" off \ + AIBREED "Allow AI breeding" off + .include <bsd.port.pre.mk> -.if defined(WITH_MIKMOD) || (exists(${LOCALBASE}/lib/libmikmod.a) && \ - !defined(WITHOUT_MIKMOD)) +.if defined(WITH_MIKMOD) || exists(${LOCALBASE}/lib/libmikmod.a) LIB_DEPENDS+= mikmod.2:${PORTSDIR}/audio/libmikmod CONFIGURE_ARGS+=--with-libmikmod-prefix=${LOCALBASE} .endif |