- synce pkg-plist - since 2.0 pfa-fonts are required, remove WITHOUT_PFA_FONTS option - don't install .info twice - make documentation optional PR: 58120 Submitted by: Patrick Atamaniuk <atamaniuk-ports@frobs.net> (maintainer) Approved by: marcus (mentor)
10 lines
210 B
Bash
10 lines
210 B
Bash
#!/bin/sh
|
|
LOCALBASE="%%LOCALBASE%%"
|
|
DATADIRVERSION="%%DATADIRVERSION%%"
|
|
case $2 in
|
|
POST-INSTALL)
|
|
PATH=${LOCALBASE}/bin:${PATH}
|
|
export TEXMF="{${DATADIRVERSION},"`kpsexpand \\$TEXMF`"}"
|
|
texhash
|
|
;;
|
|
esac
|