ap/fop: Added.
This commit is contained in:
parent
6991290551
commit
c00a9b62ee
|
@ -0,0 +1 @@
|
|||
4d59d4a4b6704965cab87cfdb4b49e0d86b7837f fop-0.95-bin.tar.gz
|
|
@ -0,0 +1,118 @@
|
|||
#!/bin/bash
|
||||
# Build script for Slackware
|
||||
# Damien Goutte-Gattat "gouttegd" <Damien.Goutte-Gattat at e.ujf-grenoble.fr>
|
||||
#
|
||||
# Redistribution and use of this script, with or without modifications, is
|
||||
# permitted provided that the following conditions are met:
|
||||
#
|
||||
# 1. Redistributions of this script 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.
|
||||
#
|
||||
# Latest fop sourcecode is available at:
|
||||
# http://xmlgraphics.apache.org/fop/
|
||||
#
|
||||
# Depends: ap/xalan-j
|
||||
|
||||
# Source package infos
|
||||
NAMESRC=${NAMESRC:-fop}
|
||||
VERSION=${VERSION:-0.95}
|
||||
ARCHIVE=${ARCHIVE:-$NAMESRC-$VERSION-bin.tar.gz}
|
||||
WGET=${WGET:-ftp://mir1.ovh.net/ftp.apache.org/dist/xmlgraphics/fop/binaries/$ARCHIVE}
|
||||
HYPH_SRC=${HYPH_SRC:-offo-hyphenation-fop-stable.zip}
|
||||
HYPH_WGET=${HYPH_WGET:-http://surfnet.dl.sourceforge.net/sourceforge/offo/$HYPH_SRC}
|
||||
|
||||
# Built package infos
|
||||
NAMETGZ=${NAMETGZ:-fop}
|
||||
BUILD=${BUILD:-1GGD}
|
||||
ARCH=${ARCH:-noarch}
|
||||
TARGET=${TARGET:-i486}
|
||||
|
||||
# Directories
|
||||
TMP=${TMP:-/tmp}
|
||||
OUT=${OUT:-$TMP/build}
|
||||
PKG=${PKG:-$OUT/$NAMETGZ}
|
||||
CWD=$(pwd)
|
||||
|
||||
set -e # Quit if a command returns non-zero
|
||||
|
||||
# Sanity checks
|
||||
if [ $UID -eq 0 ]; then
|
||||
echo "You should NOT run this script as ROOT!"
|
||||
exit 1
|
||||
fi
|
||||
if [ ! -d $TMP ]; then
|
||||
echo "$TMP does not exist or is not a directory!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Get and verify the source archive
|
||||
if [ ! -r $ARCHIVE ]; then
|
||||
wget "$WGET"
|
||||
fi
|
||||
if [ ! -r $HYPH_SRC ]; then
|
||||
wget "$HYPH_WGET"
|
||||
fi
|
||||
sha1sum -c $ARCHIVE.sha1
|
||||
sha1sum -c $HYPH_SRC.sha1
|
||||
NAME=$(tar ft $ARCHIVE | head -n 1 | cut -d / -f 1)
|
||||
|
||||
# Prepare the package tree
|
||||
cd $TMP
|
||||
echo "Building $ARCHIVE..."
|
||||
tar xf $CWD/$ARCHIVE
|
||||
cd $NAME
|
||||
unzip $CWD/$HYPH_SRC
|
||||
|
||||
mkdir -p $PKG/usr/lib/apache-xml
|
||||
install -m 644 \
|
||||
lib/avalon-framework-4.2.0.jar \
|
||||
lib/batik-all-1.7.jar \
|
||||
lib/commons-io-1.3.1.jar \
|
||||
lib/commons-logging-1.0.4.jar \
|
||||
lib/xml-apis-ext-1.3.04.jar \
|
||||
lib/xmlgraphics-commons-1.3.1.jar \
|
||||
offo-hyphenation-fop-stable/fop-hyph.jar \
|
||||
$PKG/usr/lib/apache-xml
|
||||
install -m 644 build/fop.jar $PKG/usr/lib/apache-xml/fop-$VERSION.jar
|
||||
install -D -m 644 conf/fop.xconf $PKG/etc/fop.conf
|
||||
install -D -m 755 $CWD/fop.sh $PKG/usr/bin/fop
|
||||
|
||||
# Install the documentation
|
||||
mkdir -p $PKG/usr/doc/$NAME/offo
|
||||
install -m 644 LICENSE README $PKG/usr/doc/$NAME
|
||||
find docs -type f -name '*.xml' -delete
|
||||
find docs -type f -name '*.pdf' -delete
|
||||
mv docs $PKG/usr/doc/$NAME/html
|
||||
mv javadocs $PKG/usr/doc/$NAME/html/apidocs
|
||||
mv examples $PKG/usr/doc/$NAME
|
||||
install -m 644 offo-hyphenation-fop-stable/*.html $PKG/usr/doc/$NAME/offo
|
||||
cp -r offo-hyphenation-fop-stable/{images,skin} $PKG/usr/doc/$NAME/offo
|
||||
|
||||
# Copy slack-desc file
|
||||
install -D -m 644 $CWD/slack-desc $PKG/install/slack-desc
|
||||
|
||||
# Package the tree
|
||||
cd $PKG
|
||||
mkdir -p $OUT
|
||||
PACKAGING="
|
||||
chown root:root . -R
|
||||
/sbin/makepkg -l y -c n $OUT/$NAMETGZ-$VERSION-$ARCH-$BUILD.tgz
|
||||
rm -rf $PKG
|
||||
rm -rf $TMP/$NAME
|
||||
"
|
||||
if type -p fakeroot ; then
|
||||
echo "$PACKAGING" | fakeroot
|
||||
else
|
||||
su -c "$PACKAGING"
|
||||
fi
|
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
DB_EXT=/usr/share/xml/docbook/xsl-stylesheets-1.73.2/extensions/xalan27.jar
|
||||
LIBS=/usr/lib/apache-xml:/usr/lib/apache-xml/*:$DB_EXT
|
||||
PROGRAM_CLASS=org.apache.fop.cli.Main
|
||||
RESOLVER_CLASS=org.apache.xml.resolver.tools.CatalogResolver
|
||||
CONF=/etc/fop.conf
|
||||
|
||||
if [ ! "$1" ]; then
|
||||
java -cp $LIBS $PROGRAM_CLASS
|
||||
exit 1
|
||||
fi
|
||||
|
||||
java -cp $LIBS $PROGRAM_CLASS -c $CONF $@
|
|
@ -0,0 +1 @@
|
|||
81f0b0962868714fa67eceba68f60fc5ffcb79da offo-hyphenation-fop-stable.zip
|
|
@ -0,0 +1,12 @@
|
|||
|-----handy-ruler------------------------------------------------------|
|
||||
fop: fop (XSL/FO processor)
|
||||
fop:
|
||||
fop: Apache FOP (Formatting Objects Processor) is a print formatter driven
|
||||
fop: by XSL formatting objects (XSL/FO) and an output independent
|
||||
fop: formatter. Is is a Java application that reads a formatting object
|
||||
fop: (FO) tree and renders the resulting pages to a specified output.
|
||||
fop: Output formats currently supported include PDF, PS, PCL, AFP, XML
|
||||
fop: (area tree representation), Print, AWT and PNG, and to a lesser
|
||||
fop: extent, RTF and TXT. The primary output target is PDF.
|
||||
fop:
|
||||
fop:
|
Loading…
Reference in New Issue