summaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
authormezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2007-05-04 07:10:02 +0800
committermezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059>2007-05-04 07:10:02 +0800
commit6fc602e507bd7c054ca0a1c8516c7294825009e4 (patch)
treec6aa7190b3eebddc1de5f39fbc764221b73e6781 /games
parent93dc85094425182f87c6851c2eb58d7c8f9453b9 (diff)
downloadmarcuscom-ports-6fc602e507bd7c054ca0a1c8516c7294825009e4.tar.gz
marcuscom-ports-6fc602e507bd7c054ca0a1c8516c7294825009e4.tar.zst
marcuscom-ports-6fc602e507bd7c054ca0a1c8516c7294825009e4.zip
share/gnome/ -> share/
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8801 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'games')
-rw-r--r--games/bombermaze/Makefile28
-rw-r--r--games/bombermaze/distinfo3
-rw-r--r--games/bombermaze/files/patch-src::Makefile.in14
-rw-r--r--games/bombermaze/files/patch-src_map.cc23
-rw-r--r--games/bombermaze/pkg-descr7
-rw-r--r--games/bombermaze/pkg-plist82
-rw-r--r--games/gnmm/Makefile29
-rw-r--r--games/gnmm/distinfo3
-rw-r--r--games/gnmm/files/patch-Makefile.in11
-rw-r--r--games/gnmm/pkg-descr8
-rw-r--r--games/gnmm/pkg-plist7
11 files changed, 215 insertions, 0 deletions
diff --git a/games/bombermaze/Makefile b/games/bombermaze/Makefile
new file mode 100644
index 000000000..475b1a243
--- /dev/null
+++ b/games/bombermaze/Makefile
@@ -0,0 +1,28 @@
+# New ports collection makefile for: bombermaze
+# Date created: 25 July 2000
+# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= bombermaze
+PORTVERSION= 0.6.6
+PORTREVISION= 3
+CATEGORIES= games gnome
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= ${PORTNAME}
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= A multiplayer game, strategy place bombs to kill enemies and obstacles
+
+USE_X_PREFIX= yes
+USE_GMAKE= yes
+USE_GNOME= gnomeprefix gnomehack gnomelibs gdkpixbuf
+USE_GETTEXT= yes
+GNU_CONFIGURE= yes
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+
+CFLAGS+= -fpermissive
+
+.include <bsd.port.mk>
diff --git a/games/bombermaze/distinfo b/games/bombermaze/distinfo
new file mode 100644
index 000000000..59a064a55
--- /dev/null
+++ b/games/bombermaze/distinfo
@@ -0,0 +1,3 @@
+MD5 (bombermaze-0.6.6.tar.gz) = beda6b0e6b412652cd35a953eb0e6eaa
+SHA256 (bombermaze-0.6.6.tar.gz) = 213d2179949578e6ebede7218541d50d871fa79041890c0a9a5b4d2426b755bf
+SIZE (bombermaze-0.6.6.tar.gz) = 694713
diff --git a/games/bombermaze/files/patch-src::Makefile.in b/games/bombermaze/files/patch-src::Makefile.in
new file mode 100644
index 000000000..52b297eff
--- /dev/null
+++ b/games/bombermaze/files/patch-src::Makefile.in
@@ -0,0 +1,14 @@
+
+$FreeBSD$
+
+--- src/Makefile.in 2001/11/13 14:00:49 1.1
++++ src/Makefile.in 2001/11/13 14:01:29
+@@ -127,7 +127,7 @@
+
+ CPPFLAGS = -Wall
+
+-INCLUDES = -I$(top_srcdir) -I$(includedir) $(GNOME_INCLUDEDIR) -DG_LOG_DOMAIN=\"$(PACKAGE)\" -DGNOMELOCALEDIR=\""$(datadir)/locale"\" -DPACKAGE_DATADIR=\"$(configdir)\" -I../intl -I$(top_srcdir)/intl
++INCLUDES = -I$(top_srcdir) -I$(includedir) $(GDK_PIXBUF_CFLAGS) $(GNOME_INCLUDEDIR) -DG_LOG_DOMAIN=\"$(PACKAGE)\" -DGNOMELOCALEDIR=\""$(datadir)/locale"\" -DPACKAGE_DATADIR=\"$(configdir)\" -I../intl -I$(top_srcdir)/intl
+
+
+ bin_PROGRAMS = bombermaze
diff --git a/games/bombermaze/files/patch-src_map.cc b/games/bombermaze/files/patch-src_map.cc
new file mode 100644
index 000000000..0e5e66185
--- /dev/null
+++ b/games/bombermaze/files/patch-src_map.cc
@@ -0,0 +1,23 @@
+
+$FreeBSD$
+
+--- src/map.cc.orig Sun Feb 25 08:50:07 2001
++++ src/map.cc Sun Aug 22 21:25:12 2004
+@@ -1587,7 +1587,7 @@
+ width = w;
+ height = h;
+
+- map = new (char *)[width];
++ map = new char * [width];
+
+ unsigned i;
+ for (i = 0; i < width; i++)
+@@ -1728,7 +1728,7 @@
+
+ void GameMap::allocate_map(MapSquare ***m)
+ {
+- *m = new (MapSquare *)[width];
++ *m = new MapSquare * [width];
+ int i;
+ for (i = 0; i < width; i++)
+ {
diff --git a/games/bombermaze/pkg-descr b/games/bombermaze/pkg-descr
new file mode 100644
index 000000000..2bee0fb46
--- /dev/null
+++ b/games/bombermaze/pkg-descr
@@ -0,0 +1,7 @@
+Bombermaze is Bomberman clone for GNOME. It is a multiplayer action game in
+which players run around in a square-grid maze while dropping bombs and
+collecting power-ups. The bombs exlode after a short time delay, taking out any
+nearby bricks and players. For maximum effect, bombs can be arranged so as to
+cause a chain reaction of explosions. The last player left is the winner.
+
+WWW: http://www.nongnu.org/bombermaze/
diff --git a/games/bombermaze/pkg-plist b/games/bombermaze/pkg-plist
new file mode 100644
index 000000000..391150b52
--- /dev/null
+++ b/games/bombermaze/pkg-plist
@@ -0,0 +1,82 @@
+bin/bombermaze
+%%DATADIR%%/maps/11x11
+%%DATADIR%%/maps/11x11_random
+%%DATADIR%%/maps/15x13
+%%DATADIR%%/maps/15x13_random
+%%DATADIR%%/maps/15x15
+%%DATADIR%%/maps/15x15_random
+%%DATADIR%%/pixmaps/title.png
+%%DATADIR%%/themes/default/README
+%%DATADIR%%/themes/default/bomb.png
+%%DATADIR%%/themes/default/brick.png
+%%DATADIR%%/themes/default/fire.png
+%%DATADIR%%/themes/default/floor.png
+%%DATADIR%%/themes/default/player1.png
+%%DATADIR%%/themes/default/player2.png
+%%DATADIR%%/themes/default/player3.png
+%%DATADIR%%/themes/default/player4.png
+%%DATADIR%%/themes/default/powerup.png
+%%DATADIR%%/themes/default/wall.png
+%%DATADIR%%/themes/gnomed/README
+%%DATADIR%%/themes/gnomed/bomb.png
+%%DATADIR%%/themes/gnomed/brick.png
+%%DATADIR%%/themes/gnomed/fire.png
+%%DATADIR%%/themes/gnomed/floor.png
+%%DATADIR%%/themes/gnomed/player1.png
+%%DATADIR%%/themes/gnomed/player2.png
+%%DATADIR%%/themes/gnomed/player3.png
+%%DATADIR%%/themes/gnomed/player4.png
+%%DATADIR%%/themes/gnomed/powerup.png
+%%DATADIR%%/themes/gnomed/wall.png
+%%DATADIR%%/themes/icons3d/README
+%%DATADIR%%/themes/icons3d/bomb.png
+%%DATADIR%%/themes/icons3d/brick.png
+%%DATADIR%%/themes/icons3d/fire.png
+%%DATADIR%%/themes/icons3d/floor.png
+%%DATADIR%%/themes/icons3d/player1.png
+%%DATADIR%%/themes/icons3d/player2.png
+%%DATADIR%%/themes/icons3d/player3.png
+%%DATADIR%%/themes/icons3d/player4.png
+%%DATADIR%%/themes/icons3d/powerup.png
+%%DATADIR%%/themes/icons3d/wall.png
+%%DATADIR%%/themes/space/README
+%%DATADIR%%/themes/space/bomb.png
+%%DATADIR%%/themes/space/brick.png
+%%DATADIR%%/themes/space/fire.png
+%%DATADIR%%/themes/space/floor.png
+%%DATADIR%%/themes/space/player1.png
+%%DATADIR%%/themes/space/player2.png
+%%DATADIR%%/themes/space/player3.png
+%%DATADIR%%/themes/space/player4.png
+%%DATADIR%%/themes/space/powerup.png
+%%DATADIR%%/themes/space/wall.png
+share/gnome/apps/Games/bombermaze.desktop
+share/gnome/help/bombermaze/C/animation.html
+share/gnome/help/bombermaze/C/index.html
+share/gnome/help/bombermaze/C/numeric.html
+share/gnome/help/bombermaze/C/topic.dat
+share/locale/da/LC_MESSAGES/bombermaze.mo
+share/locale/de/LC_MESSAGES/bombermaze.mo
+share/locale/es/LC_MESSAGES/bombermaze.mo
+share/locale/fr/LC_MESSAGES/bombermaze.mo
+share/locale/it/LC_MESSAGES/bombermaze.mo
+share/locale/ja/LC_MESSAGES/bombermaze.mo
+share/locale/no/LC_MESSAGES/bombermaze.mo
+share/locale/pt_BR/LC_MESSAGES/bombermaze.mo
+share/locale/ru/LC_MESSAGES/bombermaze.mo
+share/locale/uk/LC_MESSAGES/bombermaze.mo
+share/pixmaps/bombermaze.png
+@dirrmtry share/locale/uk/LC_MESSAGES
+@dirrmtry share/locale/uk
+@dirrmtry share/locale/no/LC_MESSAGES
+@dirrmtry share/locale/no
+@dirrm share/gnome/help/bombermaze/C
+@dirrm share/gnome/help/bombermaze
+@dirrm %%DATADIR%%/themes/space
+@dirrm %%DATADIR%%/themes/icons3d
+@dirrm %%DATADIR%%/themes/gnomed
+@dirrm %%DATADIR%%/themes/default
+@dirrm %%DATADIR%%/themes
+@dirrm %%DATADIR%%/pixmaps
+@dirrm %%DATADIR%%/maps
+@dirrm %%DATADIR%%
diff --git a/games/gnmm/Makefile b/games/gnmm/Makefile
new file mode 100644
index 000000000..506010c27
--- /dev/null
+++ b/games/gnmm/Makefile
@@ -0,0 +1,29 @@
+# New ports collection makefile for: gnmm
+# Date created: 19 January 2003
+# Whom: Simon Barner <barner@gmx.de>
+#
+# $FreeBSD$
+#
+
+PORTNAME= gnmm
+PORTVERSION= 0.1.2
+PORTREVISION= 4
+CATEGORIES= games gnome
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= ${PORTNAME}
+DISTNAME= ${PORTNAME}-${PORTVERSION}
+DIST_SUBDIR= gnome
+
+MAINTAINER= ports@FreeBSD.org
+COMMENT= A "nine mens' morris" implementation for the GNOME Desktop Environment
+
+USE_GETTEXT= yes
+USE_ICONV= yes
+USE_X_PREFIX= yes
+USE_GMAKE= yes
+USE_GNOME= gnomeprefix gnomehack gnomelibs gdkpixbuf
+
+GNU_CONFIGURE= yes
+CONFIGURE_ARGS= "--with-libiconv-prefix=${LOCALBASE}"
+
+.include <bsd.port.mk>
diff --git a/games/gnmm/distinfo b/games/gnmm/distinfo
new file mode 100644
index 000000000..9856a8468
--- /dev/null
+++ b/games/gnmm/distinfo
@@ -0,0 +1,3 @@
+MD5 (gnome/gnmm-0.1.2.tar.gz) = 59a9a9cb63ad49905c9ba8d1db4652b8
+SHA256 (gnome/gnmm-0.1.2.tar.gz) = 3f123f99dca637c414406997e7c47a651deaba8ed8df71343b79962467df8f67
+SIZE (gnome/gnmm-0.1.2.tar.gz) = 291031
diff --git a/games/gnmm/files/patch-Makefile.in b/games/gnmm/files/patch-Makefile.in
new file mode 100644
index 000000000..c9e71c9bd
--- /dev/null
+++ b/games/gnmm/files/patch-Makefile.in
@@ -0,0 +1,11 @@
+--- Makefile.in.orig Sun Jan 19 17:53:32 2003
++++ Makefile.in Sun Jan 19 17:53:40 2003
+@@ -119,7 +119,7 @@
+ cflags_set = @cflags_set@
+ cxxflags_set = @cxxflags_set@
+
+-SUBDIRS = src intl po macros pixmaps
++SUBDIRS = intl src po macros pixmaps
+
+ EXTRA_DIST = \
+ gnmm.desktop
diff --git a/games/gnmm/pkg-descr b/games/gnmm/pkg-descr
new file mode 100644
index 000000000..2ec88a61d
--- /dev/null
+++ b/games/gnmm/pkg-descr
@@ -0,0 +1,8 @@
+A "nine mens' morris" implementation for the GNOME Desktop Environment
+
+Features:
+ * a strong computer player,
+ * move takeback,
+ * localization.
+
+WWW: http://gnmm.sourceforge.net/
diff --git a/games/gnmm/pkg-plist b/games/gnmm/pkg-plist
new file mode 100644
index 000000000..0b6d89a2e
--- /dev/null
+++ b/games/gnmm/pkg-plist
@@ -0,0 +1,7 @@
+bin/gnmm
+share/gnome/apps/Games/gnmm.desktop
+share/locale/de/LC_MESSAGES/gnmm.mo
+share/pixmaps/gnmm-logo.png
+share/pixmaps/gnmm/board.png
+share/pixmaps/gnmm/pieces.png
+@dirrm share/pixmaps/gnmm