[Lunar-commits] r17382 - moonbase/trunk/games/asteroids3D
Florin Braescu
florin at lunar-linux.org
Sat Nov 19 06:55:00 UTC 2005
Author: florin
Date: 2005-11-19 06:54:59 +0000 (Sat, 19 Nov 2005)
New Revision: 17382
Modified:
moonbase/trunk/games/asteroids3D/BUILD
moonbase/trunk/games/asteroids3D/DETAILS
Log:
bump the version from 0.2.2 to 0.4.0.
Modified: moonbase/trunk/games/asteroids3D/BUILD
===================================================================
--- moonbase/trunk/games/asteroids3D/BUILD 2005-11-19 06:11:14 UTC (rev 17381)
+++ moonbase/trunk/games/asteroids3D/BUILD 2005-11-19 06:54:59 UTC (rev 17382)
@@ -1,37 +1,42 @@
(
- mv texture.c texture.c.original &&
- cat texture.c.original |
- sed "s/ast_tex0.ppm/\/usr\/share\/games\/asteroids3D\/ast_tex0.ppm/" |
- sed "s/ast_tex1.ppm/\/usr\/share\/games\/asteroids3D\/ast_tex1.ppm/" |
- sed "s/ast_tex2.ppm/\/usr\/share\/games\/asteroids3D\/ast_tex2.ppm/" |
- sed "s/ast_tex3.ppm/\/usr\/share\/games\/asteroids3D\/ast_tex3.ppm/" |
- sed "s/ast_tex4.ppm/\/usr\/share\/games\/asteroids3D\/ast_tex4.ppm/" |
- sed "s/ast_tex5.ppm/\/usr\/share\/games\/asteroids3D\/ast_tex5.ppm/" |
- sed "s/nebula_tex0.ppm/\/usr\/share\/games\/asteroids3D\/nebula_tex0.ppm/" |
- sed "s/nebula_tex1.ppm/\/usr\/share\/games\/asteroids3D\/nebula_tex1.ppm/" |
- sed "s/nebula_tex2.ppm/\/usr\/share\/games\/asteroids3D\/nebula_tex2.ppm/" |
- sed "s/torp_tex0.ppm/\/usr\/share\/games\/asteroids3D\/torp_tex0.ppm/" > texture.c
+ sedit "s:-lGLU::" Makefile &&
- mv sound.c sound.c.original &&
- cat sound.c.original |
- sed "s/ast_snd0.ub/\/usr\/share\/games\/asteroids3D\/ast_snd0.ub/" |
- sed "s/ast_snd1.ub/\/usr\/share\/games\/asteroids3D\/ast_snd1.ub/" |
- sed "s/ast_snd2.ub/\/usr\/share\/games\/asteroids3D\/ast_snd2.ub/" |
- sed "s/ast_snd3.ub/\/usr\/share\/games\/asteroids3D\/ast_snd3.ub/" |
- sed "s/ast_snd4.ub/\/usr\/share\/games\/asteroids3D\/ast_snd4.ub/" |
- sed "s/ast_snd5.ub/\/usr\/share\/games\/asteroids3D\/ast_snd5.ub/" |
- sed "s/coll_snd.ub/\/usr\/share\/games\/asteroids3D\/coll_snd.ub/" |
- sed "s/ta_snd.ub/\/usr\/share\/games\/asteroids3D\/ta_snd.ub/" |
- sed "s/tf_snd.ub/\/usr\/share\/games\/asteroids3D\/tf_snd.ub/" > sound.c
+ mv texture.c texture.c.original &&
+ cat texture.c.original |
+ sed "s/ast_tex0.ppm/\/usr\/share\/games\/asteroids3D\/ast_tex0.ppm/" |
+ sed "s/ast_tex1.ppm/\/usr\/share\/games\/asteroids3D\/ast_tex1.ppm/" |
+ sed "s/ast_tex2.ppm/\/usr\/share\/games\/asteroids3D\/ast_tex2.ppm/" |
+ sed "s/ast_tex3.ppm/\/usr\/share\/games\/asteroids3D\/ast_tex3.ppm/" |
+ sed "s/ast_tex4.ppm/\/usr\/share\/games\/asteroids3D\/ast_tex4.ppm/" |
+ sed "s/ast_tex5.ppm/\/usr\/share\/games\/asteroids3D\/ast_tex5.ppm/" |
+ sed "s/nebula_tex0.ppm/\/usr\/share\/games\/asteroids3D\/nebula_tex0.ppm/" |
+ sed "s/nebula_tex1.ppm/\/usr\/share\/games\/asteroids3D\/nebula_tex1.ppm/" |
+ sed "s/nebula_tex2.ppm/\/usr\/share\/games\/asteroids3D\/nebula_tex2.ppm/" |
+ sed "s:contrib/nebula_tex3.ppm:/usr\/share\/games\/asteroids3D\/nebula_tex3.ppm:" |
+ sed "s/torp_tex0.ppm/\/usr\/share\/games\/asteroids3D\/torp_tex0.ppm/" > texture.c
- make &&
- prepare_install &&
- cp asteroids3D /usr/games &&
- if [ ! -d /usr/share/games/asteroids3D ]; then
+ mv sound.c sound.c.original &&
+ cat sound.c.original |
+ sed "s/ast_snd0.ub/\/usr\/share\/games\/asteroids3D\/ast_snd0.ub/" |
+ sed "s/ast_snd1.ub/\/usr\/share\/games\/asteroids3D\/ast_snd1.ub/" |
+ sed "s/ast_snd2.ub/\/usr\/share\/games\/asteroids3D\/ast_snd2.ub/" |
+ sed "s/ast_snd3.ub/\/usr\/share\/games\/asteroids3D\/ast_snd3.ub/" |
+ sed "s/ast_snd4.ub/\/usr\/share\/games\/asteroids3D\/ast_snd4.ub/" |
+ sed "s/ast_snd5.ub/\/usr\/share\/games\/asteroids3D\/ast_snd5.ub/" |
+ sed "s/coll_snd.ub/\/usr\/share\/games\/asteroids3D\/coll_snd.ub/" |
+ sed "s/ta_snd.ub/\/usr\/share\/games\/asteroids3D\/ta_snd.ub/" |
+ sed "s/tf_snd.ub/\/usr\/share\/games\/asteroids3D\/tf_snd.ub/" > sound.c
+
+
+ make &&
+ prepare_install &&
+ cp asteroids3D /usr/games &&
+ if [ ! -d /usr/share/games/asteroids3D ]; then
mkdir /usr/share/games/asteroids3D
- fi &&
- cp *.ppm /usr/share/games/asteroids3D &&
- cp *.ub /usr/share/games/asteroids3D
+ fi &&
+ cp *.ppm /usr/share/games/asteroids3D &&
+ cp *.ub /usr/share/games/asteroids3D &&
+ cp contrib/*.ppm /usr/share/games/asteroids3D
) > $C_FIFO 2>&1
Modified: moonbase/trunk/games/asteroids3D/DETAILS
===================================================================
--- moonbase/trunk/games/asteroids3D/DETAILS 2005-11-19 06:11:14 UTC (rev 17381)
+++ moonbase/trunk/games/asteroids3D/DETAILS 2005-11-19 06:54:59 UTC (rev 17382)
@@ -1,12 +1,13 @@
MODULE=asteroids3D
- VERSION=0.2.2
- SOURCE=$MODULE-$VERSION.tar.gz
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE
- SOURCE_URL[0]=http://www.psc.edu/~smp/a3d/
- WEB_SITE=http://www.psc.edu/~smp/a3d
+ VERSION=0.4.0
+ SOURCE=$MODULE-$VERSION.tbz2
+ SOURCE_URL=http://jengelh.hopto.org/f/$MODULE/
+ SOURCE_VFY=sha1:e728fe66a167566142c570ebf30593c5ede98411
+ WEB_SITE=http://jengelh.hopto.org/coding/as3d.php
ENTERED=20010922
- UPDATED=20031211
- SHORT="Asteroids3D is a 3D, first-person game of blowing up asteroids."
+ UPDATED=20051119
+ SHORT="Asteroids3D is a 3D game of blowing up asteroids."
+
cat << EOF
Asteroids3D is a 3D, first-person game of blowing up asteroids.
EOF
More information about the Lunar-commits
mailing list