Makefile.common bump the version 9.00 to 9.01 PLIST update patches adjust for 9.01 patches/patch-af patches/patch-an options.mk (following line no longer used) -PLIST_VARS+= cidfmap (2) ghostscript-cidfonts INSTALL/DESINSTALL link destination inside to ghostscript moved. - dest="${GS_RESOURCEDIR}/CIDFont/$base" + dest="${GS_RESOURCEDIR}/Init/CIDFont/$base" (3) ghostscript-cidfonts-ryumin files/cidfmap-adobe missing the last LF char added options.mk (a) cidfmap is always to be installed .if !empty(PKG_OPTIONS:Madobe-cidfonts) +GS_CIDFMAP= cidfmap-adobe (b) the same thing -PLIST.cidfmap= yes PLIST adjust (a) cidfmap is allways to be installed -${PLIST.cidfmap}share/ghostscript/${PKGVERSION}/Resource/Init/cidfmap +share/ghostscript/${PKGVERSION}/Resource/Init/cidfmap (b) following line should be taken care by (2) ghostscript-cidfonts -${PLIST.adobe} share/ghostscript/${PKGVERSION}/Resource/CIDFont
20 lines
452 B
Text
20 lines
452 B
Text
#!/bin/sh
|
|
#
|
|
# $NetBSD: INSTALL,v 1.2 2011/03/30 12:49:24 makoto Exp $
|
|
|
|
ADOBE_RESOURCEDIR="@ADOBE_RESOURCEDIR@"
|
|
GS_RESOURCEDIR="@GS_RESOURCEDIR@"
|
|
PKG_INFO="@PKG_INFO@"
|
|
|
|
case ${STAGE} in
|
|
POST-INSTALL)
|
|
mkdir -p ${GS_RESOURCEDIR}/Init/CIDFont
|
|
${PKG_INFO} -qL adobe-cidfonts | ${GREP} "/Resource/CIDFont/" |
|
|
while read src; do
|
|
base=`${BASENAME} $src`
|
|
dest="${GS_RESOURCEDIR}/Init/CIDFont/$base"
|
|
${RM} -f $dest
|
|
${LN} -fs $src $dest
|
|
done
|
|
;;
|
|
esac
|