svn commit: r303482 - in head/games: . pacmanarena

Glen Barber gjb at FreeBSD.org
Sat Sep 1 15:14:52 UTC 2012


Author: gjb
Date: Sat Sep  1 15:14:51 2012
New Revision: 303482
URL: http://svn.freebsd.org/changeset/ports/303482

Log:
  Pacman Arena is a Pacman clone in full 3D with a few surprises.
  Rockets, bombs and explosions abound.
  
  A Pacman clone gone mad
  
  Yes, it's Pacman. With rockets. And bombs. And spoiled gameplay.
  And in full 3D.  Finally, a version of Pacman which will bring
  your shiny new machine down to it's knees.
  
  PR:		ports/171184
  Submitted by:	nemysis <nemysis at gmx.ch> (maintainer)
  Approved by:	eadler (mentor)

Added:
  head/games/pacmanarena/
  head/games/pacmanarena/Makefile   (contents, props changed)
  head/games/pacmanarena/distinfo   (contents, props changed)
  head/games/pacmanarena/pkg-descr   (contents, props changed)
Modified:
  head/games/Makefile

Modified: head/games/Makefile
==============================================================================
--- head/games/Makefile	Sat Sep  1 14:13:10 2012	(r303481)
+++ head/games/Makefile	Sat Sep  1 15:14:51 2012	(r303482)
@@ -662,6 +662,7 @@
     SUBDIR += p5-Games-GuessWord
     SUBDIR += p5-Games-Tournament-RoundRobin
     SUBDIR += pachi
+    SUBDIR += pacmanarena
     SUBDIR += paintown
     SUBDIR += palomino
     SUBDIR += passage

Added: head/games/pacmanarena/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/pacmanarena/Makefile	Sat Sep  1 15:14:51 2012	(r303482)
@@ -0,0 +1,59 @@
+# $FreeBSD$
+
+PORTNAME=	pacmanarena
+PORTVERSION=	0.15
+CATEGORIES=	games
+MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/v0.0/ \
+		SF/nemysisfreebsdp/:icons
+DISTFILES=	${DISTNAME:S/na/n-a/}.tar.bz2 \
+		${PORTNAME:S/arena/-data/}-0.0.zip \
+		${PORTNAME}_icons.tar.gz:icons
+
+MAINTAINER=	nemysis at gmx.ch
+COMMENT=	A Pacman clone in full 3D with a few surprises
+
+LICENSE=	GPLv2
+
+EXTRACT_DEPENDS=zip:${PORTSDIR}/archivers/zip
+
+WRKSRC=		${WRKDIR}/${PORTNAME:S/arena//}
+
+USE_AUTOTOOLS=	aclocal ${AUTOMAKE} ${AUTOCONF}
+USE_SDL=	mixer net sdl
+
+PLIST_FILES=	bin/${PORTNAME} \
+		share/pixmaps/${PORTNAME}_48.png \
+		share/pixmaps/${PORTNAME}_64.png \
+		share/pixmaps/${PORTNAME}_72.png \
+		share/pixmaps/${PORTNAME}_96.png
+
+PORTDATA=	*
+PORTDOCS=	README
+
+post-patch:
+# Fix data location
+	@${REINPLACE_CMD} -e 's|@prefix@|${DATADIR}|' \
+	-e 's|@datadir@/pacman|${DATADIR}|'  ${WRKSRC}/Makefile.in
+
+.include <bsd.port.options.mk>
+
+do-install:
+# Executable
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME:S/arena//} ${PREFIX}/bin/${PORTNAME}
+
+# Data
+	${MKDIR} ${DATADIR}
+.for d in gfx sfx
+	@(cd ${WRKSRC}/../ && ${COPYTREE_SHARE} ${d} ${DATADIR})
+.endfor
+
+# Pixmaps
+	${INSTALL_DATA} ${WRKDIR}/${PORTNAME}*.png ${PREFIX}/share/pixmaps
+
+# Documentation
+.if ${PORT_OPTIONS:MDOCS}
+	${MKDIR} ${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
+.endif
+
+.include <bsd.port.mk>

Added: head/games/pacmanarena/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/pacmanarena/distinfo	Sat Sep  1 15:14:51 2012	(r303482)
@@ -0,0 +1,6 @@
+SHA256 (pacman-arena-0.15.tar.bz2) = 3f151518f3d4a9595ea03f9ef681e8a8829e88e76fb5d39bab0249906121fc23
+SIZE (pacman-arena-0.15.tar.bz2) = 100112
+SHA256 (pacman-data-0.0.zip) = 7949f080ca0ba4c02d737c5bb365856c3e66f103838329be8c1857d6c297b9b8
+SIZE (pacman-data-0.0.zip) = 11994364
+SHA256 (pacmanarena_icons.tar.gz) = 55a6e8e4144f4fc3c49597a11bb9482ff980935d43f993da9080db837fdcc3d7
+SIZE (pacmanarena_icons.tar.gz) = 14848

Added: head/games/pacmanarena/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/pacmanarena/pkg-descr	Sat Sep  1 15:14:51 2012	(r303482)
@@ -0,0 +1,10 @@
+Pacman Arena is a Pacman clone in full 3D with a few surprises.
+Rockets, bombs and explosions abound.
+
+A Pacman clone gone mad
+
+Yes, it's Pacman. With rockets. And bombs. And spoiled gameplay. And in full 3D.
+Finally, a version of Pacman which will bring your shiny new machine
+down to it's knees.
+
+WWW: http://pacmanarena.sourceforge.net/



More information about the svn-ports-all mailing list