diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2003-10-07 04:22:20 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2003-10-07 04:22:20 +0000 |
commit | 743cf297ce169c889fd0f316a0d6092a80f9448f (patch) | |
tree | adabaee1e7b2ba84a4e6da53763c543e14eafb84 /games/monkeybubble/Makefile | |
parent | I believe this works now. I am able to compile and run some C# apps included (diff) |
Add monkeybubble, a GTK2 puzzle bobble clone.
GTK2 Puzzle Bobble clone. With monkeys. Frozen Bubble, but
with monkeys. It's like a game, except SO MUCH MORE, because
it has monkeys.
Note that the game seems to want a couple hundred megs of
memory to start, but once the UI comes up, it only consumes
about 25MB. We're working on it, but the game plays fine.
Tested by: anholt, marcus, and others
Notes
Notes:
svn path=/head/; revision=90486
Diffstat (limited to 'games/monkeybubble/Makefile')
-rw-r--r-- | games/monkeybubble/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/games/monkeybubble/Makefile b/games/monkeybubble/Makefile new file mode 100644 index 000000000000..ee69b6bb7dc0 --- /dev/null +++ b/games/monkeybubble/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: monkeybubble +# Date created: 06 October 2003 +# Whom: Adam Weinberger +# +# $FreeBSD$ +# + +PORTNAME= monkeybubble +PORTVERSION= 0.1.6 +CATEGORIES= games gnome +MASTER_SITES= http://monkey-bubble.tuxfamily.org/ +DISTNAME= monkey-bubble-${PORTVERSION} + +MAINTAINER= adamw@FreeBSD.org +COMMENT= GTK2 Puzzle Bobble clone with monkeys + +LIB_DEPENDS= gstplay-0.6.1:${PORTSDIR}/multimedia/gstreamer-plugins + +USE_X_PREFIX= yes +USE_REINPLACE= yes +INSTALLS_SHLIB= yes +USE_LIBTOOL= yes +USE_GMAKE= yes +USE_GNOME= gnomehack gnomeprefix librsvg2 + +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib" + +post-patch: + @${REINPLACE_CMD} -e "s/-pg//" ${WRKSRC}/src/ui/Makefile.in + +.include <bsd.port.mk> |