1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
<:
# Copyright (C) 1999, 2000, 01, 02, 03, 04, 05, 06, 07
# by Davide G. M. Salvetti.
:>//
<:$PACKAGE="mailcrypt":>//
<:# documentation :>//
<:$DOCS="ANNOUNCE ChangeLog.1 NEWS ONEWS README README.gpg WARNINGS":>//
<:$DOCSRCS="*.texi texi2html.ext":>//
<:# miscellaneous package variables :>//
<:$MENUSEC="Apps/Editors":>//
<:$DOCSEC="Editors":>//
<:$INFOSEC="Emacs":>//
<:$INFOMENU="Mailcrypt":>//
<:$INFODESC="Cryptographic interface for mail and news.":>//
<:$EPRIORITY="50":>//
<:# Debian packaging specific :>//
<:$debian="/DEBIAN":>//
<:$etc="/etc/$PACKAGE/":>//
<:$doc="/usr/share/doc/$PACKAGE":>//
<:$docsrc="$doc/src":>//
<:$examples="$doc/examples/":>//
<:$html="$doc/HTML":>//
<:$var="/var/lib/$PACKAGE/":>//
<:# <% usr %> and friends :>//
<:$usr="/usr/":>//
<:$share="/usr/share/":>//
<:$bin="/usr/bin/":>//
<:$man="/usr/share/man/":>//
<:$sbin="/usr/sbin/":>//
<:# <% cron %> :>//
<:$cron_d="/etc/cron.d/":>//
<:$cron_daily="/etc/cron.daily/":>//
<:$cron_weekly="/etc/cron.weekly/":>//
<:$cron_monthly="/etc/cron.monthly/":>//
<:# <% debconf %> :>//
<:$CONFMODULE="/usr/share/debconf/confmodule":>//
<:# <% docbase %> :>//
<:$DINSTALL="type install-docs &>/dev/null && install-docs --install":>//
<:$DREMOVE="type install-docs &>/dev/null && install-docs --remove":>//
<:$docbase="/usr/share/doc-base":>//
<:# <% emacs %> :>//
<:$ELCLOG="CompilationLog":>//
<:$EINSTALL="test -x /usr/lib/emacsen-common/emacs-package-install"
. " && /usr/lib/emacsen-common/emacs-package-install":>//
<:$EREMOVE="test -x /usr/lib/emacsen-common/emacs-package-remove"
. " && /usr/lib/emacsen-common/emacs-package-remove":>//
<:$SSEL="/etc/emacs/site-start.el":>//
<:$sstartd="/etc/emacs/site-start.d/":>//
<:$ecode="/usr/lib/emacsen-common/packages":>//
<:$lisp="/usr/share/emacs/site-lisp/$PACKAGE":>//
<:# <% info %> :>//
<:sub IINSTALL {
my (${section}, ${menu}, ${description}) = @_;
${section} = ${INFOSEC} unless ${section};
${menu} = ${INFOMENU} unless ${menu};
${description} = ${INFODESC} unless ${description};
return "install-info --section \"${section}\" \"${section}\""
. " --menuentry=\"${menu}\""
. " --description=\"${description}\""
. " --quiet";
}:>//
<:$IREMOVE="install-info --quiet --remove":>//
<:$info="/usr/share/info":>//
<:# <% texmf %> :>//
<:$texmf="/usr/share/texmf/":>//
<:$MKTEXLSR="kpsewhich --version &>/dev/null"
. " && type mktexlsr &>/dev/null"
. " && mktexlsr >/dev/null":>//
<:# <% dictionaries-common %> :>//
<:$dict="/usr/share/dict/":>//
<:$winfo="/var/lib/dictionaries-common/wordlist/":>//
<:$WREBUILD="/usr/sbin/update-default-wordlist --rebuild":>//
<:$WREMOVE="/usr/sbin/remove-default-wordlist $PACKAGE":>//
<:# <% reportbug %> :>//
<:$bug="/usr/share/bug/$PACKAGE":>//
<:# <% lintian %> :>//
<:$lintian="/usr/share/lintian/overrides":>//
<:# <% misc %> :>//
<:$GPL="/usr/share/common-licenses/GPL":>//
<:open(COPYRIGHT,"${DEBIAN_DIR}/COPYRIGHT");
@COPYRIGHT=<COPYRIGHT>;
close(COPYRIGHT):>//
<:
# arch-tag: b01c14c9-57be-47ff-abb7-de12aebfc520
#
# local variables:
# mode: shell-script
# coding: utf-8
# ispell-local-dictionary: "american"
# ispell-check-comments: exclusive
# end:
:>//
|