1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-26 21:17:40 +00:00
freebsd-ports/editors/muggy/scripts/post-install
Satoshi Taoka 78d6c8b87a A simple text editor for the X on TkStep.
PR:		11423
Submitted by:	KIRIYAMA Kazuhiko <kiri@pis.toba-cmt.ac.jp>
1999-05-06 13:39:52 +00:00

31 lines
616 B
Bash

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