svn commit: r334930 - in head/games: . popstar
Rusmir Dusko
nemysis at FreeBSD.org
Tue Nov 26 13:27:01 UTC 2013
Author: nemysis
Date: Tue Nov 26 13:26:59 2013
New Revision: 334930
URL: http://svnweb.freebsd.org/changeset/ports/334930
Log:
Pop Star is a simple puzzle game where you must use floating stars to
form polygons. The stars are continuously moving, which makes this tricky.
Various opportunities exist to gain bonus points.
WWW: http://www.newbreedsoftware.com/popstar/
PR: ports/170939
Submitted by: nemysis (self)
Approved by: wg (mentor)
Added:
head/games/popstar/
head/games/popstar/Makefile (contents, props changed)
head/games/popstar/distinfo (contents, props changed)
head/games/popstar/pkg-descr (contents, props changed)
head/games/popstar/pkg-plist (contents, props changed)
Modified:
head/games/Makefile
Modified: head/games/Makefile
==============================================================================
--- head/games/Makefile Tue Nov 26 13:21:14 2013 (r334929)
+++ head/games/Makefile Tue Nov 26 13:26:59 2013 (r334930)
@@ -728,6 +728,7 @@
SUBDIR += pokerth
SUBDIR += polypuzzle
SUBDIR += pongix
+ SUBDIR += popstar
SUBDIR += pouetchess
SUBDIR += powder
SUBDIR += powermanga
Added: head/games/popstar/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/games/popstar/Makefile Tue Nov 26 13:26:59 2013 (r334930)
@@ -0,0 +1,46 @@
+# Created by: Rusmir Dusko <nemysis at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= popstar
+PORTVERSION= 0.0.2
+CATEGORIES= games
+MASTER_SITES= ftp://ftp.tuxpaint.org/unix/x/popstar/ \
+ ftp://ftp.billsgames.com/unix/x/popstar/ \
+ SF/nemysisfreebsdp/${CATEGORIES}/${PORTNAME}/:icons
+DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \
+ ${PORTNAME}.png:icons
+EXTRACT_ONLY= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX}
+
+MAINTAINER= nemysis at FreeBSD.org
+COMMENT= Simple puzzle game involving floating stars
+
+LICENSE= GPLv2 CCbyNCSA3
+LICENSE_COMB= dual
+LICENSE_NAME_CCbyNCSA3=Attribution-NonCommercial-ShareAlike 3.0 Unported
+LICENSE_FILE_CCbyNCSA3=${WRKSRC}/docs/COPYING-CC-Attrib30.txt
+LICENSE_PERMS_CCbyNCSA3=dist-mirror pkg-mirror auto-accept
+
+USES= gmake
+USE_SDL= image mixer sdl
+
+PORTDOCS= AUTHORS.txt CHANGES.txt README.txt TODO.txt
+
+DESKTOP_ENTRIES="Pop Star" "${COMMENT}" "${PORTNAME}" \
+ "${PORTNAME}" "Game;ArcadeGame;" false
+
+OPTIONS_DEFINE= DOCS
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
+
+.for d in images music sounds
+ @(cd ${WRKSRC}/data && ${COPYTREE_SHARE} ${d} ${STAGEDIR}${DATADIR})
+.endfor
+
+ ${INSTALL_DATA} ${_DISTDIR}/${PORTNAME}.png \
+ ${STAGEDIR}${PREFIX}/share/pixmaps/
+
+ @${MKDIR} ${STAGEDIR}${DOCSDIR}
+ ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/docs/|} ${STAGEDIR}${DOCSDIR}
+
+.include <bsd.port.mk>
Added: head/games/popstar/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/games/popstar/distinfo Tue Nov 26 13:26:59 2013 (r334930)
@@ -0,0 +1,4 @@
+SHA256 (popstar-0.0.2.tar.gz) = 1c52bdac549b3cd67ac84a61f371503ff987e4e457f9accd36e6f133bd61f6ce
+SIZE (popstar-0.0.2.tar.gz) = 7774410
+SHA256 (popstar.png) = 8cc60b4244c845550616ce706932a3bb0955ee58feffd2f3901726529eff0ad3
+SIZE (popstar.png) = 1574
Added: head/games/popstar/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/games/popstar/pkg-descr Tue Nov 26 13:26:59 2013 (r334930)
@@ -0,0 +1,5 @@
+Pop Star is a simple puzzle game where you must use floating stars to
+form polygons. The stars are continuously moving, which makes this tricky.
+Various opportunities exist to gain bonus points.
+
+WWW: http://www.newbreedsoftware.com/popstar/
Added: head/games/popstar/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/games/popstar/pkg-plist Tue Nov 26 13:26:59 2013 (r334930)
@@ -0,0 +1,25 @@
+bin/popstar
+share/pixmaps/popstar.png
+%%DATADIR%%/images/bkgd1.png
+%%DATADIR%%/images/bkgd2.png
+%%DATADIR%%/images/bonus.png
+%%DATADIR%%/images/complete.png
+%%DATADIR%%/images/cursor.png
+%%DATADIR%%/images/gameover.png
+%%DATADIR%%/images/incomplete.png
+%%DATADIR%%/images/stars.png
+%%DATADIR%%/images/title.png
+%%DATADIR%%/music/bull_fight.ogg
+%%DATADIR%%/music/ethereal_jaunt.ogg
+%%DATADIR%%/music/ph1lipina_sunris3.ogg
+%%DATADIR%%/music/popstar_song2.ogg
+%%DATADIR%%/sounds/bonus.wav
+%%DATADIR%%/sounds/line_break.wav
+%%DATADIR%%/sounds/missed1.wav
+%%DATADIR%%/sounds/move.wav
+%%DATADIR%%/sounds/pop.wav
+%%DATADIR%%/sounds/select.wav
+ at dirrm %%DATADIR%%/sounds
+ at dirrm %%DATADIR%%/music
+ at dirrm %%DATADIR%%/images
+ at dirrm %%DATADIR%%
More information about the svn-ports-all
mailing list