diff options
author | jmz <jmz@FreeBSD.org> | 1997-02-10 02:08:55 +0000 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 1997-02-10 02:08:55 +0000 |
commit | ae34fa154daa2cb5fec3860e03a3fadfbb175ec9 (patch) | |
tree | 8d8c5cd8c2d02acc4c59b40fb8a973429641aa9d /print/dvips/scripts | |
parent | f9849238d867f50f17734094a59f921697d6519a (diff) | |
download | FreeBSD-ports-ae34fa154daa2cb5fec3860e03a3fadfbb175ec9.zip FreeBSD-ports-ae34fa154daa2cb5fec3860e03a3fadfbb175ec9.tar.gz |
Update to take account of the changes in TeX (some paths have changed)
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 8410af4..ca43828 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 |