diff options
author | Jean-Marc Zucconi <jmz@FreeBSD.org> | 1997-02-10 02:08:55 +0000 |
---|---|---|
committer | Jean-Marc Zucconi <jmz@FreeBSD.org> | 1997-02-10 02:08:55 +0000 |
commit | 36bf03e6a06fcf59dfe432956ae8352d1e035ecb (patch) | |
tree | 0d3cb3d5f250ceba2f6af91cad485eca257c4179 /print/dvips/scripts | |
parent | Upgrade: version 3.1415 -> version 3.14159 (diff) |
Update to take account of the changes in TeX (some paths have changed)
Notes
Notes:
svn path=/head/; revision=5568
Diffstat (limited to 'print/dvips/scripts')
-rw-r--r-- | print/dvips/scripts/configure | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/print/dvips/scripts/configure b/print/dvips/scripts/configure index 8410af4b69e7..ca438289ede7 100644 --- a/print/dvips/scripts/configure +++ b/print/dvips/scripts/configure @@ -7,7 +7,7 @@ prefix=$PREFIX; if `echo $PREFIX |grep -q X11` ; then prefix=/usr/local fi -CACHE=$prefix/lib/texmf/fonts +CACHE=$prefix/share/texmf/fonts if [ -f $prefix/bin/MakeTeXPK ]; then echo @@ -50,8 +50,9 @@ else echo "mkdir -p $CACHE/pk; chmod 1777 $CACHE/pk" > $SCRIPTDIR/post-install fi -sed -e s:/usr/lib/tex:$PREFIX/lib/texmf: \ +sed -e s:/usr/lib/tex:$PREFIX/share/texmf: \ -e s:/common/rokicki/cmps/dvips:$CACHE: \ + -e s:-v:-verbose: \ $SUBST <${WRKSRC}/MakeTeXPK.orig >${WRKSRC}/MakeTeXPK #configure config.ps @@ -72,7 +73,7 @@ else fi #makefile -echo "TEXDIR=$PREFIX/lib/texmf" >> ${WRKSRC}/Makefile || exit 1; +echo "TEXDIR=$PREFIX/share/texmf" >> ${WRKSRC}/Makefile || exit 1; echo "LOCALDIR=$CACHE" >> ${WRKSRC}/Makefile echo "TEXMACRODIR=\$(TEXDIR)/tex" >> ${WRKSRC}/Makefile echo "FIGPATH = .:..:\$(TEXDIR)/tex" >> ${WRKSRC}/Makefile |