summaryrefslogtreecommitdiff
path: root/games/bombermaze/Makefile
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2000-07-25 10:08:17 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2000-07-25 10:08:17 +0000
commitf2c0d934853509036f34ab2695275bd9cc71e519 (patch)
tree1a7d0522a264e40d519a1d540d4d2a384bd60f03 /games/bombermaze/Makefile
parentChange RUN_DEPENDS file when EMACS_COMMON_PORT=YES. (diff)
Add bombermaze - a bomberman clone for GNOME desktop.
Notes
Notes: svn path=/head/; revision=31024
Diffstat (limited to 'games/bombermaze/Makefile')
-rw-r--r--games/bombermaze/Makefile43
1 files changed, 43 insertions, 0 deletions
diff --git a/games/bombermaze/Makefile b/games/bombermaze/Makefile
new file mode 100644
index 000000000000..ce5cbfdeb7af
--- /dev/null
+++ b/games/bombermaze/Makefile
@@ -0,0 +1,43 @@
+# New ports collection makefile for: bombermaze
+# Date created: 25 July 2000
+# Whom: Maxim Sobolev
+#
+# $FreeBSD$
+#
+
+PORTNAME= bombermaze
+PORTVERSION= 0.4.1
+CATEGORIES= games gnome
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= ${PORTNAME}
+
+MAINTAINER= sobomax@FreeBSD.org
+
+LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \
+ gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf
+RUN_DEPENDS= gnomecc:${PORTSDIR}/sysutils/gnomecontrolcenter
+
+USE_X_PREFIX= yes
+USE_GMAKE= yes
+GNU_CONFIGURE= yes
+
+GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
+GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
+
+CFLAGS+= -fpermissive
+
+CONFIGURE_ARGS= --localstatedir=${PREFIX}/share/gnome \
+ --datadir=${PREFIX}/share/gnome
+CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \
+ GTK_CONFIG="${GTK_CONFIG}" \
+ CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+
+post-extract:
+ @${PERL} -pi -e 's|-lpthread|-pthread|g ; \
+ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure
+ @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \
+ 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \
+ s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g'
+
+.include <bsd.port.mk>