From d6cbb69e6c721df35d5b030a681d42df20e6e79b Mon Sep 17 00:00:00 2001 From: "Edinaldo P. Silva" Date: Fri, 24 Jul 2015 19:00:47 +0700 Subject: office/paps: Added (text to PostScript converter). Signed-off-by: Willy Sudiarto Raharjo --- office/paps/README | 3 ++ office/paps/paps.SlackBuild | 95 +++++++++++++++++++++++++++++++++++++++++++++ office/paps/paps.info | 10 +++++ office/paps/slack-desc | 19 +++++++++ 4 files changed, 127 insertions(+) create mode 100644 office/paps/README create mode 100644 office/paps/paps.SlackBuild create mode 100644 office/paps/paps.info create mode 100644 office/paps/slack-desc (limited to 'office/paps') diff --git a/office/paps/README b/office/paps/README new file mode 100644 index 0000000000..2f2c612401 --- /dev/null +++ b/office/paps/README @@ -0,0 +1,3 @@ +paps reads a UTF-8 encoded file and generates a PostScript language rendering +of it. The rendering is done by creating outline curves through the pango +ft2 backend. diff --git a/office/paps/paps.SlackBuild b/office/paps/paps.SlackBuild new file mode 100644 index 0000000000..abd2d0ce41 --- /dev/null +++ b/office/paps/paps.SlackBuild @@ -0,0 +1,95 @@ +#!/bin/sh + +# Slackware build script for paps + +# Copyright (c) 2015 Leonard Schmidt +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# 1.- Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY +# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY +# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +PRGNAM=paps +VERSION=${VERSION:-0.6.8} +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.gz +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 \ + --prefix=/usr \ + --libdir=/usr/lib$LIBDIRSUFFIX \ + --sysconfdir=/etc/paps \ + --mandir=/usr/man \ + --enable-static=no \ + --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 + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a AUTHORS COPYING.LIB ChangeLog 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.${PKGTYPE:-tgz} diff --git a/office/paps/paps.info b/office/paps/paps.info new file mode 100644 index 0000000000..4001d43e57 --- /dev/null +++ b/office/paps/paps.info @@ -0,0 +1,10 @@ +PRGNAM="paps" +VERSION="0.6.8" +HOMEPAGE="http://paps.sf.net" +DOWNLOAD="http://prdownloads.sourceforge.net/paps/paps-0.6.8.tar.gz" +MD5SUM="e9508132bf27609bf2fded2bfd9cb3f1" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="Leonard Schmidt" +EMAIL="lems@gmx.net" diff --git a/office/paps/slack-desc b/office/paps/slack-desc new file mode 100644 index 0000000000..82976cc085 --- /dev/null +++ b/office/paps/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------------------------------------------------------| +paps: paps (Unicode-aware text to PostScript converter) +paps: +paps: paps reads a UTF-8 encoded file and generates a PostScript language +paps: rendering of it. The rendering is done by creating outline curves +paps: through the pango ft2 backend. +paps: +paps: +paps: +paps: +paps: +paps: -- cgit v1.2.3