From 278c5b0fe14c8c508bb115c4cdea2feabbe2645b Mon Sep 17 00:00:00 2001 From: B. Watson Date: Mon, 28 Apr 2014 23:02:25 +0700 Subject: games/openyahtzee: Added (dice game). Signed-off-by: Willy Sudiarto Raharjo --- games/openyahtzee/README | 4 ++ games/openyahtzee/doinst.sh | 3 ++ games/openyahtzee/openyahtzee.SlackBuild | 84 ++++++++++++++++++++++++++++++++ games/openyahtzee/openyahtzee.info | 10 ++++ games/openyahtzee/slack-desc | 19 ++++++++ 5 files changed, 120 insertions(+) create mode 100644 games/openyahtzee/README create mode 100644 games/openyahtzee/doinst.sh create mode 100644 games/openyahtzee/openyahtzee.SlackBuild create mode 100644 games/openyahtzee/openyahtzee.info create mode 100644 games/openyahtzee/slack-desc (limited to 'games/openyahtzee') diff --git a/games/openyahtzee/README b/games/openyahtzee/README new file mode 100644 index 0000000000..5782e7e02d --- /dev/null +++ b/games/openyahtzee/README @@ -0,0 +1,4 @@ +openyahtzee (dice game) + +Open Yahtzee is an open-source (free) version of the classic dice game +Yahtzee, with a graphical user interface. diff --git a/games/openyahtzee/doinst.sh b/games/openyahtzee/doinst.sh new file mode 100644 index 0000000000..5fb28930db --- /dev/null +++ b/games/openyahtzee/doinst.sh @@ -0,0 +1,3 @@ +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/openyahtzee/openyahtzee.SlackBuild b/games/openyahtzee/openyahtzee.SlackBuild new file mode 100644 index 0000000000..0952178d78 --- /dev/null +++ b/games/openyahtzee/openyahtzee.SlackBuild @@ -0,0 +1,84 @@ +#!/bin/sh + +# Slackware build script for openyahtzee + +# Written by B. Watson (yalhcru@gmail.com) + +# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. + +PRGNAM=openyahtzee +VERSION=${VERSION:-1.9.1} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +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" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --bindir=/usr/games \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --build=$ARCH-slackware-linux + +make +make install-strip DESTDIR=$PKG + +find $PKG/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + +# README and NEWS are 0-byte placeholder in 1.9.1 +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING ChangeLog TODO $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/openyahtzee/openyahtzee.info b/games/openyahtzee/openyahtzee.info new file mode 100644 index 0000000000..06ea0f723e --- /dev/null +++ b/games/openyahtzee/openyahtzee.info @@ -0,0 +1,10 @@ +PRGNAM="openyahtzee" +VERSION="1.9.1" +HOMEPAGE="http://www.openyahtzee.org/" +DOWNLOAD="http://downloads.sourceforge.net/project/openyahtzee/Open%20Yahtzee/Open%20Yahtzee%201.9.1/openyahtzee-1.9.1.tar.bz2" +MD5SUM="b45d42abe3f62741043e59d2ba9b83e9" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="wxPython" +MAINTAINER="B. Watson" +EMAIL="yalhcru@gmail.com" diff --git a/games/openyahtzee/slack-desc b/games/openyahtzee/slack-desc new file mode 100644 index 0000000000..1a51aaba4d --- /dev/null +++ b/games/openyahtzee/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 ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +openyahtzee: openyahtzee (dice game) +openyahtzee: +openyahtzee: Open Yahtzee is an open-source (free) version of the classic dice game +openyahtzee: Yahtzee, with a graphical user interface. +openyahtzee: +openyahtzee: +openyahtzee: +openyahtzee: +openyahtzee: +openyahtzee: +openyahtzee: -- cgit v1.2.3