'upstream_version_0_2'.
+++ /dev/null
-if command -v install-docs >/dev/null 2>&1; then
- install-docs -i /usr/share/doc-base/#DOC-ID#
-fi
+++ /dev/null
-/usr/lib/emacsen-common/emacs-package-install #PACKAGE#
+++ /dev/null
-install-info --quiet --section "#SECTION#" "#SECTION#" #FILE#
+++ /dev/null
-install-info --quiet #FILE#
+++ /dev/null
-update-rc.d #SCRIPT# #INITPARMS# >/dev/null
-/etc/init.d/#SCRIPT# start
+++ /dev/null
-update-rc.d #SCRIPT# #INITPARMS# >/dev/null
-if [ "$1" = "configure" ]; then
- if [ -z "$2" -o "$2" = "<unknown>" ]; then
- /etc/init.d/#SCRIPT# start
- fi
-fi
+++ /dev/null
-if test -x /usr/bin/update-menus ; then update-menus ; fi
+++ /dev/null
-inst=/etc/menu-methods/#PACKAGE#
-if [ -x /usr/bin/update-menus -a -f $inst ] ; then
- chmod a+x $inst
- update-menus
-fi
+++ /dev/null
-if [ -x /usr/sbin/update-mime ]; then update-mime; fi
+++ /dev/null
-update-modules
-depmod -a
+++ /dev/null
-if command -v suidregister >/dev/null 2>&1 && [ -e /etc/suid.conf ]; then
- suidregister -s #PACKAGE# /#FILE# #OWNER# #GROUP# #PERMS#
-elif [ -e /#FILE# ]; then
- chown #OWNER#.#GROUP# /#FILE#
- chmod #PERMS# /#FILE#
-fi
+++ /dev/null
-if command -v register-window-manager >/dev/null 2>&1; then
- register-window-manager --add #WM#
-fi
+++ /dev/null
-if test -x /usr/sbin/update-xaw-wrappers; then
- /usr/sbin/update-xaw-wrappers
-fi
-for opts in #OPTS#; do
- update-alternatives --quiet --install $opts 25
-done
+++ /dev/null
-if [ "$1" = "purge" ] ; then
- update-rc.d #SCRIPT# remove >/dev/null
-fi
+++ /dev/null
-inst=/etc/menu-methods/#PACKAGE#
-if [ "$1" = "remove" -a -f "$inst" ]; then chmod a-x $inst ; fi
-if test -x /usr/bin/update-menus ; then update-menus; fi
+++ /dev/null
-if command -v suidunregister >/dev/null 2>&1 && [ -e /etc/suid.conf ]; then
- suidunregister -s #PACKAGE# /#FILE#
-fi
+++ /dev/null
-if [ "$1" = "purge" ] && command -v register-window-manager >/dev/null 2>&1
-then
- register-window-manager --remove #WM#
-fi
+++ /dev/null
-if test -x /usr/sbin/update-xaw-wrappers; then
- /usr/sbin/update-xaw-wrappers
-fi
+++ /dev/null
-if command -v install-docs >/dev/null 2>&1; then
- install-docs -r #DOC-ID#
-fi
+++ /dev/null
-/usr/lib/emacsen-common/emacs-package-remove #PACKAGE#
+++ /dev/null
-install-info --quiet --remove #FILE#
+++ /dev/null
-/etc/init.d/#SCRIPT# stop
+++ /dev/null
-for opts in #OPTS#; do
- update-alternatives --quiet --remove $opts
-done
-
+++ /dev/null
-.TH DH_STRIP 1 "" "Debhelper Commands" "Debhelper Commands"
-.SH NAME
-dh_strip \- strip executables, shared libraries, and some static libraries.
-.SH SYNOPSIS
-.B dh_strip
-.I "[debhelper options] [-Xitem]"
-.SH "DESCRIPTION"
-dh_strip is a debhelper program that is responsible for stripping
-executables, shared libraries, and static libraries that are not used for
-debugging.
-.P
-It assumes that files that have names like lib*_g.a are static libraries
-used in debugging, and will not strip them.
-.SH OPTIONS
-.TP
-.B debhelper options
-See
-.BR debhelper (1)
-for a list of options common to all debhelper commands.
-.TP
-.B \-Xitem, \--exclude=item
-Exclude files that contain "item" anywhere in their filename from being
-stripped. You may use this option multiple times to build up a list of
-things to exclude.
-.SH ENVIRONMENT
-See
-.BR debhelper (1)
-for a list of environment variables that affect all debhelper commands.
-.SH "SEE ALSO"
-.BR debhelper (1)
-.SH "CONFORMS TO"
-Debian policy, version 2.5.0.0
-.SH AUTHOR
-Joey Hess <joeyh@master.debian.org>