system/splix: Updated for version 2.0.0

This commit is contained in:
Iskar Enev 2010-05-13 00:41:52 +02:00 committed by Robby Workman
parent 8521452e5e
commit 0e0e951fbf
4 changed files with 12 additions and 8 deletions

View File

@ -4,7 +4,7 @@ the tarball for supported models. Only SPL2 and SPLc printers are
currently supported; however, work is in progress to implement support
for other SPL printers.
This requires cupsddk and jbigkit.
This requires jbigkit.
IMPORTANT NOTICE:
If you are upgrading your current version, you MUST delete your printer
@ -15,7 +15,6 @@ version of splix to the next, cups will still have the cached copy.
IMPORTANT NOTICE ABOUT THE JBIG ALGORITHM:
JBIG-KIT is an optional dependency for SpliX, but it seems that parts of this
algorithm was previously or is still patented. To disable the use of JBIG, add
NO_JBIG=1 when executing the build script:
NO_JBIG=1 ./splix.SlackBuild
NO_JBIG=1 when executing the build script: NO_JBIG=1 ./splix.SlackBuild
Unfortunately, JBIG printers (such as the CLP-600) won't work with SpliX if
the JBIG algorithm is disabled.

View File

@ -10,10 +10,10 @@ splix: SpliX (CUPS printer drivers for SPL)
splix:
splix: SpliX is a set of CUPS printer drivers for SPL (Samsung Printer
splix: Language) printers. It covers several Samsung and Xerox printers.
splix:
splix:
splix: Only SPL2 and SPLc printers are currently supported; However,
splix: work is in progress to implement support for other SPL printers.
splix:
splix:
splix:
splix:
splix:
splix:
splix:

View File

@ -22,10 +22,13 @@ CUPSDATADIR=$(cups-config --datadir)
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"
fi
# Whether or not to use JBIG (see README)
@ -77,4 +80,4 @@ 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
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View File

@ -3,6 +3,8 @@ VERSION="2.0.0"
HOMEPAGE="http://splix.sourceforge.net/"
DOWNLOAD="http://downloads.sourceforge.net/splix/splix-2.0.0.tar.bz2"
MD5SUM="f3aa735c22a926818b3d8b26c9964186"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
MAINTAINER="Iskar Enev"
EMAIL="<iskar.enev[@]gmail.com>"
APPROVED="rworkman"