From e524edc30cdab8b8cca5a3265c171c2d8ef941f6 Mon Sep 17 00:00:00 2001 From: David Melik Date: Thu, 20 Dec 2012 12:19:47 +0100 Subject: games/tome: Updated for version v2.3.10_ah, added a startup script. (cleanups, linked explicitly to libm --ponce) Signed-off-by: Matteo Bernardini --- games/tome/doinst.sh | 2 +- games/tome/tome.SlackBuild | 51 +++++++++++++++++++++------------------------- games/tome/tome.desktop | 2 +- games/tome/tome.info | 8 ++++---- games/tome/tome.sh | 5 +++++ 5 files changed, 34 insertions(+), 34 deletions(-) create mode 100644 games/tome/tome.sh (limited to 'games') diff --git a/games/tome/doinst.sh b/games/tome/doinst.sh index d91f5bd8c5..4228e4bbf2 100644 --- a/games/tome/doinst.sh +++ b/games/tome/doinst.sh @@ -16,5 +16,5 @@ if [ -x /usr/bin/update-desktop-database ]; then /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 fi -config var/games/tome/apex/scores.raw.new +#config var/games/tome/apex/scores.raw.new diff --git a/games/tome/tome.SlackBuild b/games/tome/tome.SlackBuild index 178d62763c..b15e84c02d 100644 --- a/games/tome/tome.SlackBuild +++ b/games/tome/tome.SlackBuild @@ -7,7 +7,7 @@ # Partly based on Marshall Scott's Angband SlackBuild. PRGNAM=tome -VERSION=${VERSION:-235} +VERSION=${VERSION:-v2.3.10_ah} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -43,9 +43,9 @@ set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $PRGNAM-$VERSION-src -tar xvf $CWD/$PRGNAM-$VERSION-src.tar.bz2 -cd $PRGNAM-$VERSION-src +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.?z* +cd $PRGNAM-$VERSION chown -R root:root . find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ @@ -53,35 +53,30 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -# make use of our CFLAGS -sed -i "s/-O1/$SLKCFLAGS/g" src/makefile.std - -cd src - make \ - -f makefile.std \ - BINDIR=/usr/games \ - LIBDIR=/var/games/tome - - make \ - -f makefile.std \ - BINDIR=/usr/games \ - LIBDIR=/var/games/tome \ - DESTDIR=$PKG \ - install +mkdir -p build +cd build + cmake \ + -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_INSTALL_PREFIX=/usr/share/games/$PRGNAM \ + -DSYSTEM_INSTALL:BOOL=true \ + -DLIBS:STRING="-lm" \ + -DCMAKE_BUILD_TYPE=Release .. + make + make install DESTDIR=$PKG cd - -# We'll kill the "delete.me" files in the package; probably these are left so -# that lesser package management tools don't choke on empty directories +install -m 0755 $CWD/$PRGNAM.sh $PKG/usr/share/games/$PRGNAM/bin/$PRGNAM.sh +mkdir -p $PKG/usr/games +ln -fs /usr/share/games/tome/bin/$PRGNAM.sh $PKG/usr/games/$PRGNAM + find $PKG -name "delete.me" | xargs rm -f find $PKG -name ".cvsignore" | xargs rm -f -# Now let's prevent upgrades from clobbering any existing datafiles -mv $PKG/var/games/tome/apex/scores.raw \ - $PKG/var/games/tome/apex/scores.raw.new - -mkdir -p $PKG/usr/share/{applications,pixmaps} -cp $CWD/tome.png $PKG/usr/share/pixmaps -cp $CWD/tome.desktop $PKG/usr/share/applications +install -m 0644 -D $CWD/$PRGNAM.png \ + $PKG/usr/share/pixmaps/$PRGNAM.png +install -m 0644 -D $CWD/$PRGNAM.desktop \ + $PKG/usr/share/applications/$PRGNAM.desktop mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a changes.txt credits.txt $PKG/usr/doc/$PRGNAM-$VERSION diff --git a/games/tome/tome.desktop b/games/tome/tome.desktop index 521772b191..1ef47ed0d9 100644 --- a/games/tome/tome.desktop +++ b/games/tome/tome.desktop @@ -1,6 +1,6 @@ [Desktop Entry] Name=ToME -Comment=Dive into Arda and defeat Morgoth +Comment=Dive into Arda and defeat Morgoth Exec=tome Terminal=true Type=Application diff --git a/games/tome/tome.info b/games/tome/tome.info index 2dc17a06cc..b174bbcebf 100644 --- a/games/tome/tome.info +++ b/games/tome/tome.info @@ -1,8 +1,8 @@ PRGNAM="tome" -VERSION="235" -HOMEPAGE="http://www.t-o-m-e.net" -DOWNLOAD="http://distfiles.gentoo.org/distfiles/tome-235-src.tar.bz2" -MD5SUM="751ea71973413d3b54644cf86b20758f" +VERSION="v2.3.10_ah" +HOMEPAGE="http://www.te4.org" +DOWNLOAD="http://ponce.cc/slackware/sources/repo/tome-v2.3.10_ah.tar.xz" +MD5SUM="bd77b8814e3eb0a5a3dfbf8379a0e2cd" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" diff --git a/games/tome/tome.sh b/games/tome/tome.sh new file mode 100644 index 0000000000..b26faef8a7 --- /dev/null +++ b/games/tome/tome.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +GAMES_TOME=/usr/share/games/tome/bin + +exec ${GAMES_TOME}/tome "$@" -- cgit v1.2.3