mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
31 lines
587 B
Plaintext
31 lines
587 B
Plaintext
|
#!/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
|