diff options
author | Niels Horn <niels.horn@gmail.com> | 2010-05-13 00:58:25 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-13 00:58:25 +0200 |
commit | 03dbb76648622a5f58819c728e82d4a7b84644bc (patch) | |
tree | d58b787c7ef2c4734d88f9e487d7789bc2955148 /graphics/xpe/xpe.SlackBuild | |
parent | 90fd724a8dc2808ec96ce16bb53a51feea460d7f (diff) |
graphics/xpe: Added to 13.0 repository
Diffstat (limited to 'graphics/xpe/xpe.SlackBuild')
-rw-r--r-- | graphics/xpe/xpe.SlackBuild | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/graphics/xpe/xpe.SlackBuild b/graphics/xpe/xpe.SlackBuild new file mode 100644 index 000000000000..46c11a0c1472 --- /dev/null +++ b/graphics/xpe/xpe.SlackBuild @@ -0,0 +1,85 @@ +#!/bin/sh + +# Slackware build script for xpe: +# the neXtgen Povray Editor + +# Written by Niels Horn - niels.horn@gmail.com +# revision date 2009/10/07 + +PRGNAM=xpe +VERSION=0.9.5b +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +# The tarballs come with the name "xpe_project" to distinguish them from +# the "xpe_daily" svn snapshots +SRCPRGNAM=xpe_project +# The Source tarball has a different version numbering +SRCVERSION="v$(echo $VERSION | tr . _)" + +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 $TMP/${SRCPRGNAM} $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +tar xvf $CWD/${SRCPRGNAM}_${SRCVERSION}.tar.gz +cd ${SRCPRGNAM} +chown -R root:root . +chmod -R u+w,go+r-w,a-s . + +CFLAGS="$SLKCFLAGS" \ +CPPFLAGS="$SLKCFLAGS" \ + ./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --htmldir=/usr/doc/$PRGNAM-$VERSION/html \ + --mandir=/usr/man \ + --build=$ARCH-slackware-linux +make +make install DESTDIR=$PKG + +( 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 || true +) + +# Copy icon & desktop file to package +mkdir -p $PKG/usr/share/{applications,pixmaps} +cat $CWD/xpe.desktop > $PKG/usr/share/applications/xpe.desktop +cat $CWD/xpe.png > $PKG/usr/share/pixmaps/xpe.png + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + AUTHORS COPYING INSTALL TODO \ + $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \; + +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} |