system/splix: Initial import

This commit is contained in:
Iskar Enev 2010-05-11 15:18:45 +02:00 committed by Michiel van Wessem
parent 3e79f0bf03
commit 80d3bd63f4
4 changed files with 93 additions and 0 deletions

6
system/splix/README Normal file
View File

@ -0,0 +1,6 @@
SpliX is a set of CUPS printer drivers for SPL(Samsung Printer Language) printers.
It covers several Samsung and Xerox printers. See ppd/*.ppd in the tarball
for supported models. Only SPL2 and SPLc printers are currently supported.
However work is in progress to implement support for SPL printers.
Requirements: cupsddk (slackbuild available at slackbuilds.org)

19
system/splix/slack-desc Normal file
View File

@ -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---------------------------------------------------------|
splix: SpliX
splix:
splix: SpliX is a set of CUPS printer drivers for SPL(Samsung Printer Language)
splix: printers. It covers several Samsung and Xerox printers.
splix:
splix: Only SPL2 and SPLc printers are currently supported. However work is in
splix: progress to implement support for SPL printers.
splix:
splix:
splix:
splix:

View File

@ -0,0 +1,60 @@
#!/bin/sh
# Slackware build script for splix
# Written by Iskar Enev iskar.enev@gmail.com
PRGNAM=splix
VERSION=1.0.1-1
PKGVERSION=1.0.1.1
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=`pwd`
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
CUPSCFLAGS=`cups-config --cflags`
CUPSLDFLAGS=`cups-config --ldflags`
CUPSFILTER=`cups-config --serverbin`/filter
CUPSMODEL=`cups-config --datadir`/model
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
fi
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP || exit 1
rm -rf $PRGNAM-$VERSION
tar -xjvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1
cd $PRGNAM-$VERSION || exit 1
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
sed -i "s%CXXFLAGS := -O2 \`cups-config --cflags\`%CXXFLAGS := $SLKCFLAGS $CUPSCFLAGS%" Makefile ||exit 1
sed -i "s%LDFLAGS := \`cups-config --ldflags\`%LDFLAGS := $CUPSLDFLAGS%" Makefile ||exit 1
sed -i "s%CUPSFILTER := \`cups-config --serverbin\`/filter%CUPSFILTER := $PKG$CUPSFILTER%" Makefile || exit 1
sed -i "s%CUPSPPD := \`cups-config --datadir\`/model%CUPSPPD := $PKG$CUPSMODEL%" Makefile || exit 1
mkdir -p $PKG$CUPSFILTER
mkdir -p $PKG$CUPSMODEL
make || exit 1
make install || exit 1
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
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 COPYING INSTALL README THANKS 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-$PKGVERSION-$ARCH-$BUILD$TAG.tgz

8
system/splix/splix.info Normal file
View File

@ -0,0 +1,8 @@
PRGNAM="splix"
VERSION="1.0.1-1"
HOMEPAGE="http://splix.sourceforge.net/"
DOWNLOAD="http://dl.sourceforge.net/splix/splix-1.0.1-1.tar.bz2"
MD5SUM="4773d8a451455b5b3d0cec00434cecf7"
MAINTAINER="Iskar Enev"
EMAIL="iskar.enev@gmail.com"
APPROVED="BP{k}"