diff options
author | Niels Horn <niels.horn@gmail.com> | 2010-05-13 01:01:19 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-13 01:01:19 +0200 |
commit | efebcd3389c3ca493ef0af9e62105e3675ca8c21 (patch) | |
tree | 6fd5570de903fc80cb8b1fe75916b98a2b6a1857 /system/xtrs/xtrs.SlackBuild | |
parent | 7603037553aaeb9858ddf2dc7ad4e04c51535afc (diff) | |
download | slackbuilds-efebcd3389c3ca493ef0af9e62105e3675ca8c21.tar.gz |
system/xtrs: Added to 13.0 repository
Diffstat (limited to 'system/xtrs/xtrs.SlackBuild')
-rw-r--r-- | system/xtrs/xtrs.SlackBuild | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/system/xtrs/xtrs.SlackBuild b/system/xtrs/xtrs.SlackBuild new file mode 100644 index 0000000000..f0b4a2ef87 --- /dev/null +++ b/system/xtrs/xtrs.SlackBuild @@ -0,0 +1,85 @@ +#!/bin/sh + +# Slackware build script for xtrs - the X Windows TRS-80 emulator + +# Written by Niels Horn - niels.horn@gmail.com +# revision date 2009/09/05 + +PRGNAM=xtrs +VERSION=4.9d +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 + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +rm -rf $TMP/$PRGNAM-$VERSION +cd $TMP +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +# Make /usr/share/xtrs the default rom directory +patch -p1 < $CWD/default_rom_dir.patch + +# xtrs does not have a ./configure +make \ + DEBUG="$SLKCFLAGS" \ + PREFIX=/usr \ + MANDIR=/usr/man \ + APPDEFAULTS='-DAPPDEFAULTS=\"/etc/X11/app-defaults\"' + +mkdir -p $PKG/usr/bin $PKG/usr/man/man1 +make BINDIR=$PKG/usr/bin MANDIR=$PKG/usr/man install || exit + +# Make a directory for the ROMs (not included), include fakerom.hex & xtrsrom4p.hex +mkdir -p $PKG/usr/share/xtrs +cp -a fakerom.hex xtrsrom4p.hex $PKG/usr/share/xtrs + +# Copy icon & desktop file to package +mkdir -p $PKG/usr/share/{applications,pixmaps} +cat $CWD/xtrs.desktop > $PKG/usr/share/applications/xtrs.desktop +cp -a $CWD/xtrs-ico.png $PKG/usr/share/pixmaps + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null +) + +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a ChangeLog README xtrsrom4p.README $PKG/usr/doc/$PRGNAM-$VERSION +find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \; +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 $TMP/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |