source: projects/specs/trunk/y/yatex/yatex-remove.sh @ 2750

Revision 2750, 793 bytes checked in by munepi, 13 years ago (diff)

updated emacs, emacs24, wl, yatex, auctex, IIIMECF; added wl-beta; supported new vine-default

  • Property svn:executable set to *
Line 
1#!/bin/sh
2# /usr/lib/emacsen-common/packages/remove/wl
3# [ This particular script hasn't been tested either, so be careful. ]
4
5set -e
6
7FLAVOR=$1
8PACKAGE="yatex"
9
10if [ "X${FLAVOR}" = "X" ]; then
11    echo Need argument to determin FLAVOR of emacs;
12    exit 1
13fi
14
15if [ "X${PACKAGE}" = "X" ]; then
16    echo Internal error: need package name;
17    exit 1;
18fi
19
20ELDIR=/usr/share/emacs/site-lisp/${PACKAGE}
21ELCDIR=/usr/share/${FLAVOR}/site-lisp/${PACKAGE}
22STARTDIR=/etc/${FLAVOR}/site-start.d
23STARTFILE="${PACKAGE}-init.el";
24
25SITELISP=/usr/share/${FLAVOR}/site-lisp
26
27PIXMAPDIR=/usr/share/${FLAVOR}/etc/wl
28
29case "${FLAVOR}" in
30
31    *)
32
33        echo -n "remove/${PACKAGE}: Handling removal of emacsen flavor ${FLAVOR} ..."
34        rm -rf ${ELCDIR}
35        rm -f ${STARTDIR}/50${STARTFILE}*;
36        echo " done."
37
38        ;;
39esac
40
41exit 0;
Note: See TracBrowser for help on using the repository browser.