[Lunar-commits] <moonbase> frogatto: moved from zbeta to games
Duncan Gibson
engelsman at lunar-linux.org
Sun Jul 25 16:47:43 CEST 2010
commit c30d9bd0fdf08dff00270ab69a5aef5ad2eab674
Author: Duncan Gibson <engelsman at lunar-linux.org>
Date: Sun Jul 25 16:47:43 2010 +0200
frogatto: moved from zbeta to games
---
games/frogatto/BUILD | 43 +++++++++++++++++++++++++++++++++++++++++++
games/frogatto/DEPENDS | 7 +++++++
games/frogatto/DETAILS | 25 +++++++++++++++++++++++++
zbeta/frogatto/BUILD | 43 -------------------------------------------
zbeta/frogatto/DEPENDS | 7 -------
zbeta/frogatto/DETAILS | 25 -------------------------
6 files changed, 75 insertions(+), 75 deletions(-)
diff --git a/games/frogatto/BUILD b/games/frogatto/BUILD
new file mode 100644
index 0000000..b7f3d48
--- /dev/null
+++ b/games/frogatto/BUILD
@@ -0,0 +1,43 @@
+(
+
+ # From http://aur.archlinux.org/packages/frogatto/frogatto/PKGBUILD
+ sedit "s/ccache //g" Makefile &&
+ sedit "s/-lprofiler//g" Makefile &&
+
+ # From http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=tree;f=games-arcade/frogatto
+ local i &&
+ for i in `find src -name *.cpp`; do sed -i "$i" -e "s:.\/images/:/usr/share/games/frogatto/images/:g"; done &&
+ for i in `find src -name *.cpp`; do sed -i "$i" -e "s:data/:/usr/share/games/frogatto/data/:g"; done &&
+ for i in `find src -name *.cpp`; do sed -i "$i" -e "s:music/:/usr/share/games/frogatto/music/:g"; done &&
+ for i in `find src -name *.cpp`; do sed -i "$i" -e "s:music_aac/:/usr/share/games/frogatto/music_aac/:g"; done &&
+ for i in `find src -name *.cpp`; do sed -i "$i" -e "s:sounds/:/usr/share/games/frogatto/sounds/:g"; done &&
+ for i in `find src -name *.cpp`; do sed -i "$i" -e "s:sounds_wav/:/usr/share/games/frogatto/sounds_wav/:g"; done &&
+ for i in `find src -name *.cpp`; do sed -i "$i" -e "s:FreeMono.ttf:/usr/share/games/frogatto/FreeMono.ttf:g"; done &&
+
+ make &&
+ prepare_install &&
+
+ # Executable
+ install -D -m755 game /usr/bin/frogatto &&
+
+ # Data
+ mkdir -p /usr/share/games/frogatto/ &&
+ cp -r data images music music_aac sounds sounds_wav *.ttf /usr/share/games/frogatto/ &&
+
+ # Icon
+ install -D -m644 images/window-icon.png /usr/share/pixmaps/$MODULE.png &&
+
+ # Desktop menu entry
+ cat > $MODULE.desktop << EOF &&
+[Desktop Entry]
+Type=Application
+Name=Frogatto
+Comment=$SHORT
+Exec=$MODULE
+Icon=$MODULE
+Categories=Game;
+EOF
+
+ install -D -m644 $MODULE.desktop /usr/share/applications/$MODULE.desktop
+
+) > $C_FIFO 2>&1
diff --git a/games/frogatto/DEPENDS b/games/frogatto/DEPENDS
new file mode 100644
index 0000000..009b6ae
--- /dev/null
+++ b/games/frogatto/DEPENDS
@@ -0,0 +1,7 @@
+depends glew
+depends SDL
+depends SDL_image
+depends SDL_ttf
+depends SDL_mixer
+depends libpng
+depends boost
diff --git a/games/frogatto/DETAILS b/games/frogatto/DETAILS
new file mode 100644
index 0000000..17b3c73
--- /dev/null
+++ b/games/frogatto/DETAILS
@@ -0,0 +1,25 @@
+ MODULE=frogatto
+ VERSION=1.0
+ SOURCE=$MODULE-$VERSION.tar.bz2
+ SOURCE_URL=http://www.frogatto.com/files
+ SOURCE_VFY=sha1:e277bf4ffb49dce7c9c25a242f0b9c5073f5fa3b
+ WEB_SITE=http://www.frogatto.com/
+ ENTERED=20100715
+ UPDATED=2010715
+ SHORT="A fun, classic adventure platformer starring a frog"
+
+# Description from http://freshmeat.net/projects/frogatto
+cat << EOF
+Frogatto is an old-school 2D platformer game starring a certain
+quixotic frog. It has gorgeous, high-end pixel art, pumping arcade
+tunes, and all the gameplay nuance of a classic console title. Run and
+jump over pits and enemies. Grab enemies with your tongue, swallow
+them, and then spit them out at other enemies as projectiles! Fight
+dangerous bosses, and solve vexing puzzles. Collect coins and use them
+to buy upgrades and new abilities in the store. Talk to characters in-
+game, and work to unravel Big Bad Milgram's plot against the townsfolk!
+
+At over 30 levels set in 4 different environments, Frogatto is not a
+flash in the pan, and has the playing time you'd expect from a real
+video game.
+EOF
diff --git a/zbeta/frogatto/BUILD b/zbeta/frogatto/BUILD
deleted file mode 100644
index b7f3d48..0000000
--- a/zbeta/frogatto/BUILD
+++ /dev/null
@@ -1,43 +0,0 @@
-(
-
- # From http://aur.archlinux.org/packages/frogatto/frogatto/PKGBUILD
- sedit "s/ccache //g" Makefile &&
- sedit "s/-lprofiler//g" Makefile &&
-
- # From http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=tree;f=games-arcade/frogatto
- local i &&
- for i in `find src -name *.cpp`; do sed -i "$i" -e "s:.\/images/:/usr/share/games/frogatto/images/:g"; done &&
- for i in `find src -name *.cpp`; do sed -i "$i" -e "s:data/:/usr/share/games/frogatto/data/:g"; done &&
- for i in `find src -name *.cpp`; do sed -i "$i" -e "s:music/:/usr/share/games/frogatto/music/:g"; done &&
- for i in `find src -name *.cpp`; do sed -i "$i" -e "s:music_aac/:/usr/share/games/frogatto/music_aac/:g"; done &&
- for i in `find src -name *.cpp`; do sed -i "$i" -e "s:sounds/:/usr/share/games/frogatto/sounds/:g"; done &&
- for i in `find src -name *.cpp`; do sed -i "$i" -e "s:sounds_wav/:/usr/share/games/frogatto/sounds_wav/:g"; done &&
- for i in `find src -name *.cpp`; do sed -i "$i" -e "s:FreeMono.ttf:/usr/share/games/frogatto/FreeMono.ttf:g"; done &&
-
- make &&
- prepare_install &&
-
- # Executable
- install -D -m755 game /usr/bin/frogatto &&
-
- # Data
- mkdir -p /usr/share/games/frogatto/ &&
- cp -r data images music music_aac sounds sounds_wav *.ttf /usr/share/games/frogatto/ &&
-
- # Icon
- install -D -m644 images/window-icon.png /usr/share/pixmaps/$MODULE.png &&
-
- # Desktop menu entry
- cat > $MODULE.desktop << EOF &&
-[Desktop Entry]
-Type=Application
-Name=Frogatto
-Comment=$SHORT
-Exec=$MODULE
-Icon=$MODULE
-Categories=Game;
-EOF
-
- install -D -m644 $MODULE.desktop /usr/share/applications/$MODULE.desktop
-
-) > $C_FIFO 2>&1
diff --git a/zbeta/frogatto/DEPENDS b/zbeta/frogatto/DEPENDS
deleted file mode 100644
index 009b6ae..0000000
--- a/zbeta/frogatto/DEPENDS
+++ /dev/null
@@ -1,7 +0,0 @@
-depends glew
-depends SDL
-depends SDL_image
-depends SDL_ttf
-depends SDL_mixer
-depends libpng
-depends boost
diff --git a/zbeta/frogatto/DETAILS b/zbeta/frogatto/DETAILS
deleted file mode 100644
index 17b3c73..0000000
--- a/zbeta/frogatto/DETAILS
+++ /dev/null
@@ -1,25 +0,0 @@
- MODULE=frogatto
- VERSION=1.0
- SOURCE=$MODULE-$VERSION.tar.bz2
- SOURCE_URL=http://www.frogatto.com/files
- SOURCE_VFY=sha1:e277bf4ffb49dce7c9c25a242f0b9c5073f5fa3b
- WEB_SITE=http://www.frogatto.com/
- ENTERED=20100715
- UPDATED=2010715
- SHORT="A fun, classic adventure platformer starring a frog"
-
-# Description from http://freshmeat.net/projects/frogatto
-cat << EOF
-Frogatto is an old-school 2D platformer game starring a certain
-quixotic frog. It has gorgeous, high-end pixel art, pumping arcade
-tunes, and all the gameplay nuance of a classic console title. Run and
-jump over pits and enemies. Grab enemies with your tongue, swallow
-them, and then spit them out at other enemies as projectiles! Fight
-dangerous bosses, and solve vexing puzzles. Collect coins and use them
-to buy upgrades and new abilities in the store. Talk to characters in-
-game, and work to unravel Big Bad Milgram's plot against the townsfolk!
-
-At over 30 levels set in 4 different environments, Frogatto is not a
-flash in the pan, and has the playing time you'd expect from a real
-video game.
-EOF
More information about the Lunar-commits
mailing list