From owner-svn-ports-all@FreeBSD.ORG Fri Aug 17 13:25:39 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF520106566B; Fri, 17 Aug 2012 13:25:39 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id AABCA8FC12; Fri, 17 Aug 2012 13:25:39 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q7HDPdMx075180; Fri, 17 Aug 2012 13:25:39 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q7HDPdrt075174; Fri, 17 Aug 2012 13:25:39 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201208171325.q7HDPdrt075174@svn.freebsd.org> From: Dmitry Marakasov Date: Fri, 17 Aug 2012 13:25:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r302683 - in head/games: . xgalaga++ xgalaga++/files X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Aug 2012 13:25:40 -0000 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 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@gmx.ch +# +# $FreeBSD$ +# + +PORTNAME= xgalaga++ +PORTVERSION= 0.8.3 +CATEGORIES= games +MASTER_SITES= http://marc.mongenet.ch/OSS/XGalaga/ +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= nemysis@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 + +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 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/