office/cups-pdf: Updated for version 2.5.0

This commit is contained in:
Sebastien Ballet 2010-05-12 17:44:37 +02:00 committed by David Somero
parent ced6313e1e
commit a03e58c043
6 changed files with 78 additions and 37 deletions

View file

@ -1,4 +1,7 @@
cups-pdf is designed to produce PDF files by providing a PDF cups-pdf is designed to produce PDF files by providing a PDF
printer. printer.
See README.SBo for setup information. See README.SBo for setup information.
Users of older versions (i.e < 2.5.0) will have to look at
UPGRADE.TXT before upgrading.

View file

@ -35,24 +35,26 @@ Welcome to CUPS-PDF v2
Important notes: Important notes:
================ ================
*CUPS-PDF requires root privileges since it has to modify file ownerships.
In recent distributions the "RunAsUser" option in cupsd.conf is set to * CUPS-PDF requires root privileges since it has to modify file ownerships.
"Yes" which removes these privileges. Please make sure to set In order to ensure CUPS-PDF is running with the required root privileges
"RunAsUser No" if you want to use CUPS-PDF. you have to make 'root' the owner of the cups-pdf backend and set the
*** Starting with version 1.2.0 CUPS implements the "RunAsOption" no file permissions of the backend to 0700 (root only).
longer. In order to ensure CUPS-PDF is running with the required root NOTE: in older versions of CUPS (<1.2.0) you have to set the "RunAsUser"
privileges you have to make 'root' the owner of the cups-pdf backend option in cupsd.conf to "No" in order to grant full privileges.
and set the file permissions of the backend to 0700 (root only). * CUPS-PDF needs a fully featured UNIX-filesystem to work. Make sure if any
*make sure if any of CUPS-PDF's working directories (e.g. output) is a of CUPS-PDF's working directories (e.g. output) are located on an NFS
NFS mounted volume it is mounted without root_squash! mounted volume they are mounted without root_squash! Other filesystems
*CUPS-PDF is known to fail if the gs (GhostScript) binary on a system is (e.g. NetWare or Windows shares) are _not_ supported!
compressed by upx (Ultimate Packer for eXecutables). * CUPS-PDF is known to fail if the gs (GhostScript) binary on a system is
*if you are using SELinux make sure it does not interfere with CUPS-PDF compressed by upx (Ultimate Packer for eXecutables).
(you can disable SELinux for CUPS by "setsebool -P cupsd_disable_trans 1" * If you are using SELinux, AppArmour or similar tools, make sure these do
or have a look at contrib/SELinux-HOWTO to make it work) not interfere with CUPS-PDF.
(You can disable SELinux for CUPS by "setsebool -P cupsd_disable_trans 1"
or have a look at contrib/SELinux-HOWTO to make it work)
Now after restarting CUPS you will be able to choose "Virtual Printer (PDF Now you will be able to choose "CUPS-PDF (Virtual PDF Printer)" when
Printer)" when setting up a new printer in CUPS. setting up a new printer in CUPS (a CUPS-restart may be necessary).
To set up a queue for other UNIX clients you should select Postscript as To set up a queue for other UNIX clients you should select Postscript as
vendor and the Color Printer as model for your new printer; queues that get vendor and the Color Printer as model for your new printer; queues that get
their input from samba or netatalk (i.e. Windows, OS/2 or MacOS) can be set their input from samba or netatalk (i.e. Windows, OS/2 or MacOS) can be set
@ -96,7 +98,7 @@ Welcome to CUPS-PDF v2
4. contact 4. contact
---------- ----------
Volker Christian Behr Dr. Volker Christian Behr
behr@physik.uni-wuerzburg.de behr@physik.uni-wuerzburg.de
http://www.cups-pdf.de http://www.cups-pdf.de

View file

@ -0,0 +1,11 @@
Starting from 2.5.0, the SlackBuild prevents overwriting of
configuration file (i.e /etc/cups/cups-pdf.conf).
Therefore, users of older versions (i.e < 2.5.0) who use a
customized configuration file should save it before upgrading.
Sorry for the inconvenience.
--
SeB

View file

@ -2,10 +2,10 @@
# Slackware build script for cups-pdf # Slackware build script for cups-pdf
# Written by Sebastien Ballet (phenixi@aliceadsl.fr) # Written by Sebastien Ballet (phenixi@aliceadsl.fr)
# Modified by SlackBuilds.org # Modified by SlackBuilds.org
PRGNAM=cups-pdf PRGNAM=cups-pdf
VERSION=2.4.8 VERSION=2.5.0
ARCH=${ARCH:-i486} ARCH=${ARCH:-i486}
BUILD=${BUILD:-1} BUILD=${BUILD:-1}
TAG=${TAG:-_SBo} TAG=${TAG:-_SBo}
@ -15,38 +15,49 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp} OUTPUT=${OUTPUT:-/tmp}
set -e
if [ "$ARCH" = "i486" ]; then if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O9 -march=i486 -mtune=i686" SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O9 -march=i686 -mtune=i686" SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
fi fi
rm -rf $PKG rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT mkdir -p $TMP $PKG $OUTPUT
cd $TMP || exit 1 cd $TMP
rm -rf $PRGNAM-$VERSION rm -rf $PRGNAM-$VERSION
tar -xvf $CWD/$PRGNAM'_'$VERSION.tar.gz || exit 1 tar -xvf $CWD/$PRGNAM'_'$VERSION.tar.gz
cd $PRGNAM-$VERSION || exit 1 cd $PRGNAM-$VERSION
chown -R root:root . chown -R root:root .
chmod -R u+w,go+r-w,a-s . chmod -R u+w,go+r-w,a-s .
mkdir -p $PKG/usr/lib/cups/backend mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/cups/backend
gcc $SLCKFLAGS -s -o $PKG/usr/lib${LIBDIRSUFFIX}/cups/backend/cups-pdf src/cups-pdf.c
chmod 0700 $PKG/usr/lib${LIBDIRSUFFIX}/cups/backend/cups-pdf
mkdir -p $PKG/etc/cups mkdir -p $PKG/etc/cups
cat extra/cups-pdf.conf > $PKG/etc/cups/cups-pdf.conf.new
mkdir -p $PKG/usr/share/cups/model mkdir -p $PKG/usr/share/cups/model
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
gcc $SLCKFLAGS -s -o $PKG/usr/lib/cups/backend/cups-pdf src/cups-pdf.c || exit 1
chmod 0700 $PKG/usr/lib/cups/backend/cups-pdf
cp -a extra/cups-pdf.conf $PKG/etc/cups
cp -a extra/CUPS-PDF.ppd $PKG/usr/share/cups/model cp -a extra/CUPS-PDF.ppd $PKG/usr/share/cups/model
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a COPYING ChangeLog README $PKG/usr/doc/$PRGNAM-$VERSION cp -a COPYING ChangeLog README $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
cat $CWD/README.SBo > $PKG/usr/doc/$PRGNAM-$VERSION/README.SBo cat $CWD/README.SBo > $PKG/usr/doc/$PRGNAM-$VERSION/README.SBo
cat $CWD/UPGRADE.TXT > $PKG/usr/doc/$PRGNAM-$VERSION/UPGRADE.TXT
mkdir -p $PKG/install mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz

View file

@ -1,8 +1,8 @@
PRGNAM="cups-pdf" PRGNAM="cups-pdf"
VERSION="2.4.8" VERSION="2.5.0"
HOMEPAGE="http://www.cups-pdf.de/" HOMEPAGE="http://www.cups-pdf.de/"
DOWNLOAD="http://www.cups-pdf.de/src/cups-pdf_2.4.8.tar.gz" DOWNLOAD="http://www.cups-pdf.de/src/cups-pdf_2.5.0.tar.gz"
MD5SUM="0d17dc5e094b366c8ad43cc27c7f82c9" MD5SUM="9194af099a8c0e9aa213505b29ec6818"
MAINTAINER="Sebastien Ballet" MAINTAINER="Sebastien Ballet"
EMAIL="phenixi@aliceadsl.fr" EMAIL="phenixi@aliceadsl.fr"
APPROVED="dsomero" APPROVED="dsomero"

14
office/cups-pdf/doinst.sh Normal file
View file

@ -0,0 +1,14 @@
config() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then # toss the redundant copy
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
config etc/cups/cups-pdf.conf.new