diff options
-rw-r--r-- | games/gl-117/README | 4 | ||||
-rw-r--r-- | games/gl-117/doinst.sh | 4 | ||||
-rwxr-xr-x | games/gl-117/gl-117.SlackBuild | 76 | ||||
-rw-r--r-- | games/gl-117/gl-117.desktop | 12 | ||||
-rw-r--r-- | games/gl-117/gl-117.info | 10 | ||||
-rw-r--r-- | games/gl-117/gl-117.png | bin | 0 -> 9922 bytes | |||
-rw-r--r-- | games/gl-117/slack-desc | 19 |
7 files changed, 125 insertions, 0 deletions
diff --git a/games/gl-117/README b/games/gl-117/README new file mode 100644 index 0000000000..64b4c8a0c3 --- /dev/null +++ b/games/gl-117/README @@ -0,0 +1,4 @@ +GL-117 is an action flight simulator. Enter the Eagle Squadron and succeed +in several challanging missions leading though different landscapes. Five +predefined levels of video quality and an amount of viewing ranges let you +perfectly adjust the game to the performance of your system. diff --git a/games/gl-117/doinst.sh b/games/gl-117/doinst.sh new file mode 100644 index 0000000000..7405cfcfeb --- /dev/null +++ b/games/gl-117/doinst.sh @@ -0,0 +1,4 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + diff --git a/games/gl-117/gl-117.SlackBuild b/games/gl-117/gl-117.SlackBuild new file mode 100755 index 0000000000..67866efadc --- /dev/null +++ b/games/gl-117/gl-117.SlackBuild @@ -0,0 +1,76 @@ +#!/bin/sh + +# Slackware build script for gl-117 + +# Written by Dario Nicodemi dario.sbo@gmail.com + +PRGNAM=gl-117 +VERSION=${VERSION:-1.3.2} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +fi + +set -e # Exit on most errors + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION-src.tar.bz2 +cd $PRGNAM-$VERSION-src +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --build=$ARCH-slackware-linux + +make +make install DESTDIR=$PKG + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +# Install desktop file and icon +mkdir -p $PKG/usr/share/{applications,pixmaps} +cat $CWD/gl-117.desktop > $PKG/usr/share/applications/gl-117.desktop +cat $CWD/gl-117.png > $PKG/usr/share/pixmaps/gl-117.png + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + AUTHORS COPYING ChangeLog FAQ INSTALL NEWS README \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/games/gl-117/gl-117.desktop b/games/gl-117/gl-117.desktop new file mode 100644 index 0000000000..82d090cb58 --- /dev/null +++ b/games/gl-117/gl-117.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Version=1.0 +Exec=gl-117 +TryExec=gl-117 +Icon=gl-117 +Terminal=false +Name=GL-117 +GenericName=Action flight simulator +Comment=Action flight simulator +Categories=Game;Simulation; +Type=Application +StartupNotify=false diff --git a/games/gl-117/gl-117.info b/games/gl-117/gl-117.info new file mode 100644 index 0000000000..6da3a275e6 --- /dev/null +++ b/games/gl-117/gl-117.info @@ -0,0 +1,10 @@ +PRGNAM="gl-117" +VERSION="1.3.2" +HOMEPAGE="http://www.heptargon.de/gl-117/gl-117.html" +DOWNLOAD="http://downloads.sourceforge.net/gl-117/gl-117-1.3.2-src.tar.bz2" +MD5SUM="aad53c5531943529fd769fae4efeae02" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Dario Nicodemi" +EMAIL="dario.sbo@gmail.com" +APPROVED="rworkman" diff --git a/games/gl-117/gl-117.png b/games/gl-117/gl-117.png Binary files differnew file mode 100644 index 0000000000..4a407202d8 --- /dev/null +++ b/games/gl-117/gl-117.png diff --git a/games/gl-117/slack-desc b/games/gl-117/slack-desc new file mode 100644 index 0000000000..d70263c0f5 --- /dev/null +++ b/games/gl-117/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' on +# the right side marks the last column you can put a character in. You must make +# exactly 11 lines for the formatting to be correct. It's also customary to +# leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +gl-117: gl-117 (Action Flight Simulator) +gl-117: +gl-117: GL-117 is an action flight simulators. Enter the Eagle Squadron +gl-117: and succeed in several challanging missions leading though +gl-117: different landscapes. Five predefined levels of video quality +gl-117: and an amount of viewing ranges let you perfectly adjust the +gl-117: game to the performance of your system - joystick, mouse, sound +gl-117: effects, music... +gl-117: +gl-117: +gl-117: |