From e333c6672884214f73707adb061a356950312583 Mon Sep 17 00:00:00 2001 From: gshep Date: Thu, 13 May 2010 00:58:19 +0200 Subject: graphics/jpeg2ps: Added to 13.0 repository --- graphics/jpeg2ps/README | 13 ++++++ graphics/jpeg2ps/jpeg2ps.SlackBuild | 79 +++++++++++++++++++++++++++++++++++++ graphics/jpeg2ps/jpeg2ps.info | 10 +++++ graphics/jpeg2ps/slack-desc | 19 +++++++++ 4 files changed, 121 insertions(+) create mode 100644 graphics/jpeg2ps/README create mode 100644 graphics/jpeg2ps/jpeg2ps.SlackBuild create mode 100644 graphics/jpeg2ps/jpeg2ps.info create mode 100644 graphics/jpeg2ps/slack-desc (limited to 'graphics') diff --git a/graphics/jpeg2ps/README b/graphics/jpeg2ps/README new file mode 100644 index 0000000000..7ff1112773 --- /dev/null +++ b/graphics/jpeg2ps/README @@ -0,0 +1,13 @@ +Purpose of jpeg2ps +================== +jpeg2ps converts JPEG files to PostScript Level 2 or 3 EPS. In fact, jpeg2ps +is not really a converter but a "wrapper": it reads the image parameters +(width, height, number of color components) in a JPEG file, writes the +corresponding EPS header and then copies the compressed JPEG data to the output +file. Decompression is done by the PostScript interpreter (only PostScript +Level 2 and 3 interpreters support JPEG compression and decompression). +If you have a slow communication channel and a fast printer, sending +compressed image data is a big win. + +Note: if you are interested in conversion of JPEG or other formats to +PDF take a look at PDFlib (http://www.pdflib.com). diff --git a/graphics/jpeg2ps/jpeg2ps.SlackBuild b/graphics/jpeg2ps/jpeg2ps.SlackBuild new file mode 100644 index 0000000000..3668dcd0cb --- /dev/null +++ b/graphics/jpeg2ps/jpeg2ps.SlackBuild @@ -0,0 +1,79 @@ +#!/bin/sh + +# Slackware build script for jpeg2ps + +# Copyright 2009 Georgy Shepelev (gshep) +# This software is free. You are granted the right to use, copy, modify and +# ditribute it without any restrictions. +# +# The author accepts no responsibility for damages resulting from the use of +# this software and makes no warranty, either express or implied, including but +# not limited to, any implied warranty of merchantability or fitness for a +# particular purpose. This software is provided as is, and you assume all risks +# when using it. + +PRGNAM=jpeg2ps +VERSION=${VERSION:-1.9} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +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 + +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 . +chmod -R a-s,u+rw,go+r-w . + +make -f Makefile "CC=gcc" "LD=gcc" "CFLAGS=-c $SLKCFLAGS" +mkdir -p $PKG/usr/bin +cp jpeg2ps $PKG/usr/bin +chmod 755 $PKG/usr/bin/jpeg2ps + +( 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 || true +) + +mkdir -p $PKG/usr/man/man1 +cp jpeg2ps.1 $PKG/usr/man/man1 + +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + jpeg2ps.txt \ + $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 +chown -R root:root . +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/graphics/jpeg2ps/jpeg2ps.info b/graphics/jpeg2ps/jpeg2ps.info new file mode 100644 index 0000000000..a6d8852c12 --- /dev/null +++ b/graphics/jpeg2ps/jpeg2ps.info @@ -0,0 +1,10 @@ +PRGNAM="jpeg2ps" +VERSION="1.9" +HOMEPAGE="www.pdflib.com" +DOWNLOAD="http://www.pdflib.com/fileadmin/pdflib/products/more/jpeg2ps/jpeg2ps-1.9.tar.gz" +MD5SUM="e654f6a584435e6717b6c2659c07db28" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="gshep" +EMAIL="shepelev.georgy@googlemail.com" +APPROVED="dsomero" diff --git a/graphics/jpeg2ps/slack-desc b/graphics/jpeg2ps/slack-desc new file mode 100644 index 0000000000..3c2d7db1de --- /dev/null +++ b/graphics/jpeg2ps/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------------------------------------------------------| +jpeg2ps: jpeg2ps (convert JPEG compressed images to PostScript Level 2 or 3) +jpeg2ps: +jpeg2ps: jpeg2ps converts JPEG files to PostScript Level 2 or 3 EPS. In fact +jpeg2ps: jpeg2ps is not really a converter but a "wrapper". +jpeg2ps: +jpeg2ps: Homepage: http://www.pdflib.com +jpeg2ps: +jpeg2ps: +jpeg2ps: +jpeg2ps: +jpeg2ps: -- cgit v1.2.3