svn commit: r302683 - in head/games: . xgalaga++ xgalaga++/files

Dmitry Marakasov amdmi3 at FreeBSD.org
Fri Aug 17 13:25:40 UTC 2012


Author: amdmi3
Date: Fri Aug 17 13:25:39 2012
New Revision: 302683
URL: http://svn.freebsd.org/changeset/ports/302683

Log:
  XGalaga++ is a classic vertical scrolling shoot em up.
  It requires no X Window extension and its window is freely resizable.
  It is inspired by XGalaga, but rewritten from scratch,
  except for the graphics.
  
  WWW: http://marc.mongenet.ch/OSS/XGalaga/
  
  PR:		ports/167240
  Submitted by:	nemysis <nemysis at gmx.ch>

Added:
  head/games/xgalaga++/
  head/games/xgalaga++/Makefile   (contents, props changed)
  head/games/xgalaga++/distinfo   (contents, props changed)
  head/games/xgalaga++/files/
  head/games/xgalaga++/files/pkg-install.in   (contents, props changed)
  head/games/xgalaga++/pkg-descr   (contents, props changed)
Modified:
  head/games/Makefile

Modified: head/games/Makefile
==============================================================================
--- head/games/Makefile	Fri Aug 17 13:24:40 2012	(r302682)
+++ head/games/Makefile	Fri Aug 17 13:25:39 2012	(r302683)
@@ -1021,6 +1021,7 @@
     SUBDIR += xflame
     SUBDIR += xfrisk
     SUBDIR += xgalaga
+    SUBDIR += xgalaga++
     SUBDIR += xglk
     SUBDIR += xgospel
     SUBDIR += xhexagons

Added: head/games/xgalaga++/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/xgalaga++/Makefile	Fri Aug 17 13:25:39 2012	(r302683)
@@ -0,0 +1,52 @@
+# New Ports collection makefile for:	xgalaga++
+# Date created:		2012-04-20
+# Whom:			nemysis at gmx.ch
+#
+# $FreeBSD$
+#
+
+PORTNAME=	xgalaga++
+PORTVERSION=	0.8.3
+CATEGORIES=	games
+MASTER_SITES=	http://marc.mongenet.ch/OSS/XGalaga/
+DISTNAME=	${PORTNAME}_${PORTVERSION}
+
+MAINTAINER=	nemysis at gmx.ch
+COMMENT=	A classic single screen vertical shoot em up
+
+LICENSE=	GPLv2
+
+WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
+
+USE_GMAKE=	yes
+ALL_TARGET=	${PORTNAME}
+USE_XORG=	x11 xpm
+MAN6=		xgalaga++.6x
+
+SUB_FILES=	pkg-install
+
+PLIST_FILES=	bin/xgalaga++
+
+PORTDOCS=	README
+
+.include <bsd.port.options.mk>
+
+post-patch:
+	@${REINPLACE_CMD} -e '/^CXX =/ d; s|/usr/local|${LOCALBASE}|' \
+		${WRKSRC}/Makefile
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
+	${INSTALL_MAN} ${WRKSRC}/${MAN6} ${MAN6PREFIX}/man/man6
+	${CHOWN} :games ${PREFIX}/bin/${PORTNAME}
+	${CHMOD} g+s  ${PREFIX}/bin/${PORTNAME}
+
+# Documentation
+.if ${PORT_OPTIONS:MDOCS}
+	${MKDIR} ${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
+.endif
+
+	@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
+
+.include <bsd.port.mk>

Added: head/games/xgalaga++/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/xgalaga++/distinfo	Fri Aug 17 13:25:39 2012	(r302683)
@@ -0,0 +1,2 @@
+SHA256 (xgalaga++_0.8.3.tar.gz) = cd7444938a923496437a7a4f64e5272eeb098a29c9eec0092ea5acb1804af9f2
+SIZE (xgalaga++_0.8.3.tar.gz) = 32466

Added: head/games/xgalaga++/files/pkg-install.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/xgalaga++/files/pkg-install.in	Fri Aug 17 13:25:39 2012	(r302683)
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+FILE="/var/games/xgalaga++.scores"
+
+touch $FILE
+chgrp games $FILE
+chmod 664 $FILE

Added: head/games/xgalaga++/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/xgalaga++/pkg-descr	Fri Aug 17 13:25:39 2012	(r302683)
@@ -0,0 +1,6 @@
+XGalaga++ is a classic vertical scrolling shoot em up.
+It requires no X Window extension and its window is freely resizable.
+It is inspired by XGalaga, but rewritten from scratch,
+except for the graphics.
+
+WWW: http://marc.mongenet.ch/OSS/XGalaga/



More information about the svn-ports-all mailing list