diff options
author | B. Watson <yalhcru@gmail.com> | 2010-05-12 23:29:24 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 23:29:24 +0200 |
commit | ded2ffc51a4b5e5d54d17b05b8cde862c8951c6b (patch) | |
tree | c60aba0bbcf99a558bf487fc4deda74e45914e5e /games/jzintv/jzintv.SlackBuild | |
parent | 20eb94d46acb721b51a2d2ce0520578f9b76bb2c (diff) | |
download | slackbuilds-ded2ffc51a4b5e5d54d17b05b8cde862c8951c6b.tar.gz |
games/jzintv: Added to 12.2 repository
Diffstat (limited to 'games/jzintv/jzintv.SlackBuild')
-rw-r--r-- | games/jzintv/jzintv.SlackBuild | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/games/jzintv/jzintv.SlackBuild b/games/jzintv/jzintv.SlackBuild new file mode 100644 index 0000000000..cbff9cf246 --- /dev/null +++ b/games/jzintv/jzintv.SlackBuild @@ -0,0 +1,72 @@ +#!/bin/sh + +# Slackware build script for jzintv + +# Written by B. Watson (yalhcru@gmail.com) + +PRGNAM=jzintv +VERSION=${VERSION:-1.0_beta3} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +SRCVER=$(echo $VERSION | sed 's/_/-/') + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$SRCVER +unzip $CWD/$PRGNAM-$SRCVER-src.zip +cd $PRGNAM-$SRCVER +chown -R root:root . +chmod -R a-s,u+w,go+r-w . + +# jzintv defines a dprintf macro that clashes with stdio.h +# when -D_GNU_SOURCE=1 (and sdl-config --cflags defines that, +# not jzintv's Makefile). The patch changes the jzintv version +# to jzintv_dprintf. +patch -p1 < $CWD/jzintv_dprintf.patch + +# Don't see a way to redefine the ROM path on the make command +# line (it's hard-coded to /usr/local/share/jzintv/rom). +patch -p1 < $CWD/jzintv_rompath.patch + +cd src + make OPT_FLAGS="$SLKCFLAGS" +cd - + +# There's no 'make install' +rm -f bin/README* bin/*.dll +strip bin/* +mkdir -p $PKG/usr/bin +cp -a bin/* $PKG/usr/bin + +# The rompath patch above makes jzintv look here for the +# system ROMs +mkdir -p $PKG/usr/share/$PRGNAM/rom + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -r *.txt doc examples rom misc $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +cat $CWD/README > $PKG/usr/doc/$PRGNAM-$VERSION/README_SBo.txt + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz |