]> git.ipfire.org Git - thirdparty/cups.git/blame - pstoraster/pstoraster.in
Load cups into easysw/current.
[thirdparty/cups.git] / pstoraster / pstoraster.in
CommitLineData
ef416fc2 1#!/bin/sh
2#
3# "$Id: pstoraster.in 4493 2005-02-18 02:09:53Z mike $"
4#
5# CUPS raster filter script for Ghostscript.
6#
7# Copyright 2001-2005 by Easy Software Products.
8#
9# This program is free software; you can redistribute it and/or modify
10# it under the terms of the GNU General Public License as published by
11# the Free Software Foundation; either version 2, or (at your option)
12# any later version.
13#
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this program; if not, write to the Free Software
21# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22#
23
24# Installation directories...
25prefix=@prefix@
26exec_prefix=@exec_prefix@
27bindir=@bindir@
28
29# Set the library/font path...
30GS_LIB="${CUPS_FONTPATH:=/usr/share/cups/fonts}"
31export GS_LIB
32
33# Options we use with Ghostscript...
34gsopts="-dQUIET -dDEBUG -dPARANOIDSAFER -dNOPAUSE -dBATCH"
35gsopts="$gsopts -dNOMEDIAATTRS -sDEVICE=cups -sstdout=%stderr"
36
37# See if we have a profile=n,n,n,n,n,n,n,n,n,n,n option...
38profile=""
39for option in $5; do
40 case $option in
41 profile=*)
42 profile="<</cupsProfile(`echo $option | awk -F= '{print $2}'`)>>setpagedevice"
43 ;;
44 esac
45done
46
47# See if we have a filename on the command-line...
48if test -z "$6"; then
49 ifile="-"
50else
51 ifile="$6"
52fi
53
54echo INFO: Starting ESP Ghostscript 7.07.1... 1>&2
55echo DEBUG: Running $bindir/@GS@ $gsopts -sOUTPUTFILE="%stdout" -c"$profile" "$ifile" 1>&2
56
57# Now run Ghostscript...
58$bindir/@GS@ $gsopts -sOUTPUTFILE="%stdout" -c"$profile" "$ifile"
59
60#
61# End of "$Id: pstoraster.in 4493 2005-02-18 02:09:53Z mike $".
62#