1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-25 21:07:40 +00:00
freebsd-ports/graphics/jgv/scripts/post-install
Satoshi Taoka 36fb0eadfb A graphic viewer with various image types.
PR:		11423
Submitted by:	KIRIYAMA Kazuhiko <kiri@pis.toba-cmt.ac.jp>
1999-05-06 13:57:56 +00:00

31 lines
587 B
Bash

#!/bin/sh
installdir=${PREFIX}/JDE/JGV; export installdir
case ${LANGUAGE} in
Japanese)
for f in JGV.app; do
${PERL} -pi -e '
s/^(exec[ \t]+)wishstep[^ \t]*([ \t]+.*)$/$1wishstep$ENV{VERSION}jp$2/
' ${installdir}/bin/${f}
done
;;
*)
;;
esac
for f in JGV JGV.app; do
case ${f} in
JGV.app)
target=${installdir}/bin/${f}
;;
JGV)
target=${installdir}/defaults/${f}
;;
esac
${PERL} -pi -e '
s/^([ \t]*set[ \t]+Jlib[ \t]+)"[^"]*"$/$1"$ENV{installdir}"/;
' ${target}
done
${LN} -sf ${installdir}/bin/JGV.app ${PREFIX}/bin