~ubuntu-branches/ubuntu/wily/ecasound/wily-proposed

« back to all changes in this revision

Viewing changes to debian/ecasound-el.emacsen-remove

  • Committer: Package Import Robot
  • Author(s): Alessandro Ghedini, Alessandro Ghedini, Alessio Treglia
  • Date: 2012-05-22 21:31:25 UTC
  • Revision ID: package-import@ubuntu.com-20120522213125-f14ecq0rlvp6boes
Tags: 2.8.1-7
[ Alessandro Ghedini ]
* Adjust Ruby bindings package name in the dh_fixperms override
  (fixes executable-not-elf-or-script)
* ecasound-el is Section: lisp
* Update ecasound.rb install path as per new Ruby Policy
* Update emacsen install and remove scripts (Closes: #671568)
* Drop 1001-disable_python_tests.patch (the tests are not run anyway)
* Use debian-pkg-add-load-path-item in emacsen startup script
  (Closes: #671551)
* Set up ecasound-ewf-mode with .ewf files (Closes: #672184)
* Add more DEP3 headers to the patches
* Add 04_fix-ecasound.el-ewf-regexp.patch
* Check if the elisp package dir exists in the startup script
* Build depend on python-all and not python-all-dev since we only ship the
  native Python module
* Remove misleading paragraph from long descriptions

[ Alessio Treglia ]
* Remove myself from the Uploaders field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh -e
2
2
# /usr/lib/emacsen-common/packages/remove/ecasound-el
3
 
#modified for ecasound-el 11 Jan 2003, Junichi Uekawa
4
3
 
5
4
FLAVOR=$1
6
5
PACKAGE=ecasound-el
7
6
 
8
 
case ${FLAVOR} in
9
 
    emacs|emacs20)
10
 
        ;;
11
 
    *)
12
 
        if test -x /usr/sbin/install-info-altdir; then
13
 
            echo remove/${PACKAGE}: removing Info links for ${FLAVOR}
14
 
            install-info-altdir --quiet --remove --dirname=${FLAVOR} /usr/info/#PACKAGE#.info.gz
15
 
        fi
16
 
        
 
7
if [ ${FLAVOR} != emacs ]; then
17
8
        echo remove/${PACKAGE}: purging byte-compiled files for ${FLAVOR}
18
9
        rm -rf /usr/share/${FLAVOR}/site-lisp/${PACKAGE}
19
 
        ;;
20
 
esac
 
10
fi