annotate etc/ns/XEmacs.pre_delete @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 #!/bin/sh
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 PACKAGEDIR="$1"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 INSTALLDIR="$2"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 echo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 echo "Removing links from /usr/local/bin to the XEmacs binaries."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 cd $INSTALLDIR/XEmacs.app/bin
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 for i in *; do /bin/rm -f /usr/local/bin/$i; done
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 echo "Removing links from /usr/local/man subdirectories to the XEmacs man pages."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 cd $INSTALLDIR/XEmacs.app/man/man1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 for i in *; do /bin/rm -f /usr/local/man/man1/$i; done
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 /bin/rm -f /usr/local/man/man1/condom.1 /usr/local/man/man1/celibacy.1 /usr/local/man/man6/sex.6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 echo "Removing link from /usr/local/lib/xemacs-19.13 to the XEmacs library directory."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 /bin/rm -f /usr/local/lib/xemacs-19.13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 echo "Done."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 exit 0