summaryrefslogtreecommitdiffstats
path: root/libraries/podofo
diff options
context:
space:
mode:
author Larry Hajali <larryhaja[at]gmail[dot]com>2010-05-12 23:31:02 +0200
committer Robby Workman <rworkman@slackbuilds.org>2010-05-12 23:31:02 +0200
commitc79338097722e389fc1149881eddeab6f110eab5 (patch)
tree34cd84bd9aeca43b371bb94355cb747ed7863e23 /libraries/podofo
parent5109825b1d87a3a39766919f5f8f6af800f019f2 (diff)
downloadslackbuilds-c79338097722e389fc1149881eddeab6f110eab5.tar.gz
slackbuilds-c79338097722e389fc1149881eddeab6f110eab5.tar.xz
libraries/podofo: Added to 12.2 repository
Diffstat (limited to 'libraries/podofo')
-rw-r--r--libraries/podofo/README7
-rw-r--r--libraries/podofo/podofo.SlackBuild89
-rw-r--r--libraries/podofo/podofo.info8
-rw-r--r--libraries/podofo/slack-desc19
4 files changed, 123 insertions, 0 deletions
diff --git a/libraries/podofo/README b/libraries/podofo/README
new file mode 100644
index 0000000000..5b9d6dcb99
--- /dev/null
+++ b/libraries/podofo/README
@@ -0,0 +1,7 @@
+The PoDoFo library is a free, portable C++ library. It can
+parse existing PDF files and create new ones from scratch.
+
+Optional build requirements: boost, cppunit, and lua.
+
+To enable boost support pass HAVE_BOOST=yes to the build script:
+ HAVE_BOOST=yes ./podofo.SlackBuild
diff --git a/libraries/podofo/podofo.SlackBuild b/libraries/podofo/podofo.SlackBuild
new file mode 100644
index 0000000000..e7a0e030fa
--- /dev/null
+++ b/libraries/podofo/podofo.SlackBuild
@@ -0,0 +1,89 @@
+#!/bin/sh
+
+# Slackware build script for podofo
+
+# Written by Larry Hajali <larryhaja[at]gmail[dot]com>
+
+PRGNAM=podofo
+VERSION=${VERSION:-0.7.0}
+ARCH=${ARCH:-i486}
+BUILD=${BUILD:-1}
+TAG=${TAG:-_SBo}
+
+CWD=$(pwd)
+TMP=${TMP:-/tmp/SBo}
+PKG=$TMP/package-$PRGNAM
+OUTPUT=${OUTPUT:-/tmp}
+
+# Determine if we use Boost. Default is no.
+HAVE_BOOST=${HAVE_BOOST:-no}
+
+# I changed the default LIBDIRSUFFIX to TRUE/FALSE because
+# cmake chooses it for us with -DWANT_LIB64:BOOL.
+if [ "$ARCH" = "i486" ]; then
+ SLKCFLAGS="-O2 -march=i486 -mtune=i686"
+ LIBDIRSUFFIX="FALSE"
+elif [ "$ARCH" = "i686" ]; then
+ SLKCFLAGS="-O2 -march=i686 -mtune=i686"
+ LIBDIRSUFFIX="FALSE"
+elif [ "$ARCH" = "x86_64" ]; then
+ SLKCFLAGS="-O2 -fPIC"
+ LIBDIRSUFFIX="TRUE"
+ HAVE_BOOST=yes
+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 . \
+ \( -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 {} \;
+
+if [ $HAVE_BOOST == "no" ]; then
+ USE_BOOST="0"
+else
+ USE_BOOST="1"
+fi
+
+mkdir build && cd build
+ cmake -G "Unix Makefiles" \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \
+ -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \
+ -DPODOFO_BUILD_STATIC:BOOL=FALSE \
+ -DPODOFO_BUILD_SHARED:BOOL=TRUE \
+ -DPODOFO_USE_VISIBILITY=1 \
+ -DWANT_BOOST:BOOL=$USE_BOOST \
+ -DWANT_LIB64:BOOL=$LIBDIRSUFFIX \
+ -DCMAKE_BUILD_TYPE=Release ..
+
+ make
+ make install DESTDIR=$PKG
+cd -
+
+( 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 \
+ AUTHORS ChangeLog CODING* COPYING* FAQ* INSTALL README* TODO \
+ $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/libraries/podofo/podofo.info b/libraries/podofo/podofo.info
new file mode 100644
index 0000000000..688098aab4
--- /dev/null
+++ b/libraries/podofo/podofo.info
@@ -0,0 +1,8 @@
+PRGNAM="podofo"
+VERSION="0.7.0"
+HOMEPAGE="http://podofo.sourceforge.net/"
+DOWNLOAD="http://downloads.sourceforge.net/podofo/podofo-0.7.0.tar.gz"
+MD5SUM="b9623fd9279fca49f7cdd5c1fed182b1"
+MAINTAINER="Larry Hajali"
+EMAIL="larryhaja[at]gmail[dot]com"
+APPROVED="rworkman"
diff --git a/libraries/podofo/slack-desc b/libraries/podofo/slack-desc
new file mode 100644
index 0000000000..48b000756d
--- /dev/null
+++ b/libraries/podofo/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------------------------------------------------------|
+podofo: PoDoFo (Is a library to work with the PDF file format)
+podofo:
+podofo: The name comes from the first letter of PDF (Portable Document Format)
+podofo: The PoDoFo library is a free, portable C++ library which includes
+podofo: classes to parse PDF files and modify their contents into memory
+podofo: The parser can also be used to extract information from a PDF file
+podofo: (for example the parser could be used in a PDF viewer).
+podofo:
+podofo: Homepage: http://podofo.sourceforge.net/
+podofo:
+podofo: