diff options
author | Luis Henrique <lmello.009@gmail.com> | 2010-05-12 23:29:45 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 23:29:45 +0200 |
commit | 7c81bab02dc24ab1b5194b2507b36fc063b181bb (patch) | |
tree | 2ea53ba44d5e4291893ef38ca473d334f47793be /graphics/svp | |
parent | b5eb90d9833afbafdba91d139c7bcb7b7519efd3 (diff) |
graphics/svp: Added to 12.2 repository
Diffstat (limited to 'graphics/svp')
-rw-r--r-- | graphics/svp/README | 5 | ||||
-rw-r--r-- | graphics/svp/slack-desc | 19 | ||||
-rw-r--r-- | graphics/svp/svp.SlackBuild | 62 | ||||
-rw-r--r-- | graphics/svp/svp.info | 8 |
4 files changed, 94 insertions, 0 deletions
diff --git a/graphics/svp/README b/graphics/svp/README new file mode 100644 index 000000000000..ae57fab3170c --- /dev/null +++ b/graphics/svp/README @@ -0,0 +1,5 @@ +svp (A ghostscript front end for svgalib) + +This program uses ghostscript to display postscript and PDF +files using svgalib. The interface is similar to tmview (dvi +viewer for svgalib). diff --git a/graphics/svp/slack-desc b/graphics/svp/slack-desc new file mode 100644 index 000000000000..fbb80902d410 --- /dev/null +++ b/graphics/svp/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 ':'. + + |-----handy-ruler------------------------------------------------------| +svp: svp (A ghostscript front end for svgalib) +svp: +svp: This program uses ghostscript to display postscript and PDF +svp: files using svgalib. The interface is similar to tmview (dvi +svp: viewer for svgalib). +svp: +svp: +svp: +svp: +svp: +svp: diff --git a/graphics/svp/svp.SlackBuild b/graphics/svp/svp.SlackBuild new file mode 100644 index 000000000000..4625369fff17 --- /dev/null +++ b/graphics/svp/svp.SlackBuild @@ -0,0 +1,62 @@ +#!/bin/sh + +# Slackware build script for svp + +# Written by Luis Henrique <lmello.009@gmail.com> + +PRGNAM=svp +VERSION=${VERSION:-0.3} +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" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +fi + +set -e # Exit on most errors + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +make + +# Install the program +/usr/bin/ginstall -d -m 0755 $PKG/usr/bin +/usr/bin/ginstall -m 0755 svp $PKG/usr/bin + +( 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 +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a README $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 + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/graphics/svp/svp.info b/graphics/svp/svp.info new file mode 100644 index 000000000000..f31269d8c9e2 --- /dev/null +++ b/graphics/svp/svp.info @@ -0,0 +1,8 @@ +PRGNAM="svp" +VERSION="0.3" +HOMEPAGE="http://www.svgalib.org/matan/svp" +DOWNLOAD="http://www.svgalib.org/matan/svp/svp-0.3.tar.gz" +MD5SUM="6eaf7f21262b4dca32c2ef6bb0d212bb" +MAINTAINER="Luis Henrique" +EMAIL="lmello.009@gmail.com" +APPROVED="dsomero" |