diff options
author | hubertf <hubertf> | 2000-11-17 06:45:11 +0000 |
---|---|---|
committer | hubertf <hubertf> | 2000-11-17 06:45:11 +0000 |
commit | 5a65d3a705ec100408708c2d9e986cf33411b245 (patch) | |
tree | 915882031d1ec3d0004aa8b638bbf5508763b73e /games/xtux/Makefile | |
parent | 7b8af0b99d3f9083b1d25b82876952c2f7e228e6 (diff) | |
download | pkgsrc-5a65d3a705ec100408708c2d9e986cf33411b245.tar.gz |
Tux Arena is a client server network game for X11 featuring opensource
mascots. The plan is to have both a multiplayer deathmatch mode (called
Holywar) and single player missions where you take on the Microsoft Empire.
* Hint: BSD daemon's available as mascot. Recommended map: Rivership down.
Diffstat (limited to 'games/xtux/Makefile')
-rw-r--r-- | games/xtux/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/games/xtux/Makefile b/games/xtux/Makefile new file mode 100644 index 00000000000..303abf42301 --- /dev/null +++ b/games/xtux/Makefile @@ -0,0 +1,32 @@ +# $NetBSD: Makefile,v 1.1.1.1 2000/11/17 06:45:11 hubertf Exp $ +# + +DISTNAME= xtux-arena-src-nov-15 +PKGNAME= xtux-0.2000.11.15 +CATEGORIES= games +MASTER_SITES= http://www.adelaide.net.au/~philaw/ \ + ${MASTER_SITE_SOURCEFORGE:=xtux/} + +MAINTAINER= hubertf@netbsd.org +HOMEPAGE= http://xtux.sourceforge.net/ + +USE_XPM= yes +USE_GMAKE= yes + +WRKSRC= ${WRKDIR}/xtux + +do-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/xtux + cd ${WRKSRC} ; \ + ${GTAR} cf - data | ( cd ${PREFIX}/share/xtux ; ${GTAR} vxf - ) + cd ${WRKSRC} ; \ + ${GTAR} cf - doc | ( cd ${PREFIX}/share/xtux ; ${GTAR} vxf - ) + ${INSTALL_DATA} ${WRKSRC}/AUTHORS ${PREFIX}/share/xtux + ${INSTALL_DATA} ${WRKSRC}/CHANGELOG ${PREFIX}/share/xtux + ${INSTALL_DATA} ${WRKSRC}/COPYING ${PREFIX}/share/xtux + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/xtux + ${INSTALL_DATA} ${WRKSRC}/example-config ${PREFIX}/share/xtux + ${INSTALL_PROGRAM} ${WRKSRC}/tux_serv ${PREFIX}/bin/tux_serv + ${INSTALL_PROGRAM} ${WRKSRC}/xtux ${PREFIX}/bin/xtux + +.include "../../mk/bsd.pkg.mk" |