mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
c5c0a200d1
/usr/local/share/mule/site-lisp PR: ports/10276 Submitted by: MIHIRA Yoshiro <sanpei@sanpei.org>
15 lines
631 B
Bash
15 lines
631 B
Bash
#!/bin/sh
|
|
/usr/bin/dialog --title "ja-diclookup-mule deinstallation script" --clear \
|
|
--yesno "\n\
|
|
Removing diclookup-mule initialization code from site-start.el \n\
|
|
Are you sure?" -1 -1
|
|
RETVAL=$?
|
|
|
|
if [ "X${RETVAL}" = "X0" ] ; then # answer is `Yes'. hack diclookup-mule.
|
|
cp PREFIX_DIR/share/mule/19.34/site-lisp/site-start.el PREFIX_DIR/share/mule/19.34/site-lisp/site-start.el.bak
|
|
grep -v diclookup-mule PREFIX_DIR/share/mule/19.34/site-lisp/site-start.el.bak > PREFIX_DIR/share/mule/19.34/site-lisp/site-start.el
|
|
|
|
/usr/bin/dialog --title "Message" --clear \
|
|
--msgbox "Thank you for using diclookup-mule. A bientot." -1 -1
|
|
fi
|