diff options
Diffstat (limited to 'community/emacs-nox/emacs-nox.install')
-rw-r--r-- | community/emacs-nox/emacs-nox.install | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/community/emacs-nox/emacs-nox.install b/community/emacs-nox/emacs-nox.install new file mode 100644 index 000000000..06dc781ee --- /dev/null +++ b/community/emacs-nox/emacs-nox.install @@ -0,0 +1,25 @@ +INFO_DIR=usr/share/info + +INFO_FILES=(ada-mode auth autotype bovine calc ccmode cl dbus dired-x ebrowse +ede ediff edt efaq eieio eintr elisp emacs emacs-gnutls emacs-mime epa erc ert eshell eudc flymake +forms gnus htmlfontify idlwave mairix-el message mh-e newsticker nxml-mode +org pcl-cvs pgg rcirc reftex remember sasl sc semantic ses sieve smtpmail +speedbar srecode tramp url vip viper widget wisent woman) + +post_install() { + [[ -x usr/bin/install-info ]] || return 0 + for f in ${INFO_FILES[@]}; do + install-info ${INFO_DIR}/$f.info.gz ${INFO_DIR}/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + [[ -x usr/bin/install-info ]] || return 0 + for f in ${INFO_FILES[@]}; do + install-info --delete ${INFO_DIR}/$f.info.gz ${INFO_DIR}/dir 2> /dev/null + done +} |