- with config file location fix in the teTeX2-2.0.2, both dvipdfmx of this package and dvipdfm of teTeX2 work now. - removed ugly hack to rename config file in installation / deinstallation stage. bump PKGREVISION because of this.
25 lines
390 B
Text
25 lines
390 B
Text
#!/bin/sh
|
|
#
|
|
# $NetBSD: INSTALL,v 1.2 2003/03/15 08:26:36 kei Exp $
|
|
|
|
TEXMF=@PREFIX@/share/texmf
|
|
|
|
case ${STAGE} in
|
|
PRE-INSTALL)
|
|
;;
|
|
|
|
POST-INSTALL)
|
|
cd $TEXMF/dvipdfm/CMap
|
|
# @PREFIX@/share/Adobe/Resource/CMap/*
|
|
for file in ../../../Adobe/Resource/CMap/*; do
|
|
${LN} -s $file `${BASENAME} $file`
|
|
done
|
|
@PREFIX@/bin/mktexlsr
|
|
;;
|
|
|
|
*)
|
|
${ECHO} "Unexpected argument: ${STAGE}"
|
|
exit 1
|
|
;;
|
|
|
|
esac
|