summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/patches/dvipdf
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2009-05-16 00:19:13 +0000
committerKarl Berry <karl@freefriends.org>2009-05-16 00:19:13 +0000
commitbab45528d65eaafe68a705dbb2a57075c7b7cbd8 (patch)
tree10b4ae2b5195c8dede153ab89359ec00f55f325f /Build/source/utils/asymptote/patches/dvipdf
parent8643d90372e9c31e0f461c15c596b60a545bd7d3 (diff)
asymptote 1.72 sources (not integrated into build yet)
git-svn-id: svn://tug.org/texlive/trunk@13110 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/asymptote/patches/dvipdf')
-rwxr-xr-xBuild/source/utils/asymptote/patches/dvipdf54
1 files changed, 54 insertions, 0 deletions
diff --git a/Build/source/utils/asymptote/patches/dvipdf b/Build/source/utils/asymptote/patches/dvipdf
new file mode 100755
index 00000000000..5c98e943206
--- /dev/null
+++ b/Build/source/utils/asymptote/patches/dvipdf
@@ -0,0 +1,54 @@
+#!/bin/sh
+# $Id: dvipdf 3949 2009-02-04 05:53:23Z jcbowman $
+# Convert DVI to PDF.
+#
+# Please contact Andrew Ford <A.Ford@ford-mason.co.uk> with any questions
+# about this file.
+#
+# Based on ps2pdf
+
+# This definition is changed on install to match the
+# executable name set in the makefile
+GS_EXECUTABLE=gs
+
+
+OPTIONS=""
+DVIPSOPTIONS=""
+while true
+do
+ case "$1" in
+ -R*) DVIPSOPTIONS="$DVIPSOPTIONS $1";;
+ -z) DVIPSOPTIONS="$DVIPSOPTIONS -z" ;;
+ -pp) shift; DVIPSOPTIONS="$DVIPSOPTIONS -pp $1" ;;
+ -p) shift; DVIPSOPTIONS="$DVIPSOPTIONS -p $1" ;;
+ -t) shift; DVIPSOPTIONS="$DVIPSOPTIONS -t $1" ;;
+ -T) shift; DVIPSOPTIONS="$DVIPSOPTIONS -T $1" ;;
+ -l) shift; DVIPSOPTIONS="$DVIPSOPTIONS -l $1" ;;
+ -?*) OPTIONS="$OPTIONS $1" ;;
+ *) break ;;
+ esac
+ shift
+done
+
+if [ $# -lt 1 -o $# -gt 2 ]; then
+ echo "Usage: `basename $0` [options...] input.dvi [output.pdf]" 1>&2
+ exit 1
+fi
+
+infile=$1;
+
+if [ $# -eq 1 ]
+then
+ case "${infile}" in
+ *.dvi) base=`basename "${infile}" .dvi` ;;
+ *) base=`basename "${infile}"` ;;
+ esac
+ outfile="${base}".pdf
+else
+ outfile=$2
+fi
+
+# We have to include the options twice because -I only takes effect if it
+# appears before other options.
+exec dvips $DVIPSOPTIONS -q -f "$infile" | $GS_EXECUTABLE $OPTIONS -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sstdout=%stderr -sOutputFile="$outfile" $OPTIONS -c .setpdfwrite -
+