debian/0000775000000000000000000000000012047427344007177 5ustar debian/postrm.in0000664000000000000000000000126012047425202011041 0ustar #include "variables" #! /bin/bash # # <% postrm %> script for <:=${PACKAGE}:> # <:=@COPYRIGHT:>// set -e set -o posix case "${1}" in abort-install|abort-upgrade|disappear|failed-upgrade|purge|remove|upgrade) :;; *) echo >&2 "${0##*/}/<:=${PACKAGE}:>:" \ "Unknown argument: \"${1}\"." exit 1 esac <:# purge package from <% debconf %> database :>// case "${1}" in purge) if test -e <:=${CONFMODULE}:>; then source <:=${CONFMODULE}:>; db_version 2.0; db_purge fi esac exit 0 <: # arch-tag: 6148eca7-0e7f-4362-9ae9-dc2eaa90740a # # local variables: # mode: shell-script # coding: utf-8 # ispell-local-dictionary: "american" # ispell-check-comments: exclusive # end: :>// debian/rules0000775000000000000000000001250412047426014010252 0ustar #! /usr/bin/make -f # # rules for mailcrypt # # Copyright (C) 1997, 98, 99, 2000, 01, 02, 03, 04, 05, 06, 07 # by Davide G. M. Salvetti. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; either version 2 of the License, or (at your # option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to: The Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. # # On Debian GNU/Linux System you can find a copy of the GNU General Public # License in "/usr/share/common-licenses/GPL". checkdir=test -f debian/rules checkroot=test root = "$$(whoami)" fixperms=chmod -R a+rX . tmp := $(shell pwd)/debian/tmp SHELL := /bin/bash INSTDIR := install -m 755 -d INSTPROG := install -m 755 -s INSTDATA := install -m 644 INSTSCRIPT := install -m 755 STRIP := strip -R .note -R .comment DFILES := debian/README debian/copyright \ debian/config debian/postinst debian/prerm debian/postrm \ debian/docbase debian/lintian \ debian/bug.presubj debian/bug.script \ debian/install debian/remove DCSOURCES := $(shell cat debian/po/POTFILES.in \ | perl -pe 's|^\[[^]]+\] +(.*)$$|debian/$${1}|') DFILES += $(patsubst %templates, %templates.dcobj, $(DCSOURCES)) SCRIPTS := configure install-sh SOURCES := *.in *.el load-path.hack MAKEFILEHACKS := tests/Makefile.in tests/remailer/Makefile.in .PHONY: pre-build pre-build: autoconf || true debian/rules: debian/variables %:: %.in eperl -d DEBIAN_DIR="$(shell pwd)/debian/" \ -I "$(shell pwd)/debian/" -P -o $@ $< debian/po/templates.pot: $(DCSOURCES) umask 0022 && debconf-updatepo --verbose --podir=debian/po/ @touch $@ %.dcobj: % debian/po/templates.pot po2debconf --verbose --podir debian/po $< > $@ build: $(DFILES) debian/po/templates.pot $(checkdir) chmod a+x ./configure; ./configure --infodir=/usr/share/info EMACS=echo $(MAKE) MAKEINFO="makeinfo --verbose" \ TEXI2HTML="texi2html --Verbose" \ info html touch build .PHONY: clean clean: debian/po/templates.pot $(checkdir) -rm -rf build core $(tmp) debian/{files*,substvars} -rm -f debian/po/updatepo [ ! -f Makefile ] || $(MAKE) distclean -rm -f $(DFILES) $(fixperms) .PHONY: binary binary: binary-arch binary-indep .PHONY: binary-indep binary-indep: build $(checkdir) $(checkroot) -rm -rf $(tmp) $(INSTDIR) $(tmp)/usr/share/emacs/site-lisp/mailcrypt $(INSTDATA) debian/mailcrypt-init.el $(tmp)/usr/share/emacs/site-lisp/mailcrypt/../ $(INSTSCRIPT) $(SCRIPTS) $(tmp)/usr/share/emacs/site-lisp/mailcrypt/ $(INSTDATA) $(SOURCES) $(tmp)/usr/share/emacs/site-lisp/mailcrypt/ umask 0022; for i in $(MAKEFILEHACKS); do \ $(INSTDIR) $(tmp)/usr/share/emacs/site-lisp/mailcrypt/$${i%/*}/; \ echo -e "clean distclean:\n\trm -f Makefile\n" \ > $(tmp)/usr/share/emacs/site-lisp/mailcrypt/$${i}; \ done $(MAKE) INSTALL_INFO="echo install-info" \ install-info infodir=$(tmp)/usr/share/info gzip -9frv $(tmp)/usr/share/info $(INSTDIR) $(tmp)/usr/share/doc/mailcrypt $(INSTDATA) ANNOUNCE ChangeLog.1 NEWS ONEWS README README.gpg WARNINGS $(tmp)/usr/share/doc/mailcrypt $(INSTDATA) debian/README $(tmp)/usr/share/doc/mailcrypt/README.Debian $(INSTDATA) ChangeLog $(tmp)/usr/share/doc/mailcrypt $(INSTDATA) debian/changelog $(tmp)/usr/share/doc/mailcrypt/changelog.Debian gzip -9frv $(tmp)/usr/share/doc/mailcrypt ln -sf ChangeLog.gz $(tmp)/usr/share/doc/mailcrypt/changelog.gz $(INSTDATA) debian/copyright $(tmp)/usr/share/doc/mailcrypt $(INSTDIR) $(tmp)/usr/share/doc/mailcrypt/HTML $(INSTDATA) htmls/*.html $(tmp)/usr/share/doc/mailcrypt/HTML ln -snf mailcrypt_toc.html $(tmp)/usr/share/doc/mailcrypt/HTML/index.html $(INSTDIR) $(tmp)/usr/lib/emacsen-common/packages/install $(INSTDIR) $(tmp)/usr/lib/emacsen-common/packages/remove $(INSTSCRIPT) debian/install \ $(tmp)/usr/lib/emacsen-common/packages/install/mailcrypt $(INSTSCRIPT) debian/remove \ $(tmp)/usr/lib/emacsen-common/packages/remove/mailcrypt $(INSTDIR) $(tmp)/usr/share/doc-base $(INSTDATA) debian/docbase $(tmp)/usr/share/doc-base/mailcrypt $(INSTDIR) $(tmp)/usr/share/bug/mailcrypt $(INSTDATA) debian/bug.presubj $(tmp)/usr/share/bug/mailcrypt/presubj $(INSTSCRIPT) debian/bug.script $(tmp)/usr/share/bug/mailcrypt/script $(INSTDIR) $(tmp)/usr/share/lintian/overrides $(INSTDATA) debian/lintian $(tmp)/usr/share/lintian/overrides/mailcrypt $(INSTDIR) $(tmp)/DEBIAN $(INSTDATA) debian/templates.dcobj \ $(tmp)/DEBIAN/templates $(INSTSCRIPT) debian/{config,postinst,postrm,prerm} \ $(tmp)/DEBIAN cd $(tmp) && md5sum \ $$(find ./ -path './DEBIAN' -prune \ -o -type f -printf "%P\n") \ | sort -k 2 -o $(tmp)/DEBIAN/md5sums dpkg-gencontrol -isp chown -R root.root $(tmp) chmod -R go=rX $(tmp) dpkg --build $(tmp) .. .PHONY: binary-arch binary-arch: build $(checkdir) $(checkroot) .PHONY: build-package build-package: clean dpkg-buildpackage -rfakeroot -tc -i .PHONY: source diff source diff: @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false # arch-tag: 7f6799c7-dca1-4d84-8038-1ad9c2888751-child debian/po/0000775000000000000000000000000012047426014007606 5ustar debian/po/pl.po0000664000000000000000000000466012047425202010565 0ustar # Translation of mailcrypt debconf templates to Polish. # Copyright (C) 2007 # This file is distributed under the same license as the mailcrypt package. # # Michał Kułach , 2012. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: salve@debian.org\n" "POT-Creation-Date: 2007-07-26 17:33+0200\n" "PO-Revision-Date: 2012-02-07 11:05+0100\n" "Last-Translator: Michał Kułach \n" "Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.2\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should Mailcrypt be auto-loaded by default at your site?" msgstr "" "Czy Mailcrypt powinien być załadowany automatycznie dla wszystkich " "użytkowników?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Mailcrypt will globally (i.e., for all users on this site) overload certain " "Emacs functions and key-bindings if you answer affirmatively to this " "question." msgstr "" "Mailcrypt może być załadowany globalnie (tzn. dla wszystkich użytkowników), " "zastępując określone funkcje i przypisania klawiszy Emacsa, jeśli zostanie " "wybrana odpowiedź \"tak\"." #. Type: boolean #. Description #: ../templates:1001 msgid "" "This is generally a good thing, since Mailcrypt is a very useful package; " "however you may not want it to happen, and instead let single users at your " "site decide by themselves if they should load this package." msgstr "" "Z reguły jest dobre rozwiązanie, ponieważ Mailcrypt jest bardzo użytecznym " "pakietem; można jednak nie skorzystać z tej możliwości, pozwalając " "użytkownikom na samodzielne zdecydowanie, czy chcą załadować ten pakiet." #. Type: boolean #. Description #: ../templates:1001 msgid "" "If you answer negatively, people who desire to use it will have to put the " "string \"(require 'mailcrypt-init)\" in their personal Emacs configuration " "file (e.g., \"~/.emacs\" or \"~/.emacs.el\") to load it." msgstr "" "Jeśli zostanie wybrana odpowiedź \"nie\", użytkownicy, którzy będą chcieli " "skorzystać z programu, powinni dodać do swoich plików konfiguracyjnych " "Emacsa (np. \"~/.emacs\" or \"~/.emacs.el\") tekst \"(require 'mailcrypt-" "init)\"." debian/po/da.po0000664000000000000000000000431312047425202010531 0ustar # Danish translation mailcrypt. # Copyright (C) 2011 mailcrypt & nedenstående oversættere. # This file is distributed under the same license as the mailcrypt package. # Joe Hansen (joedalton2@yahoo.dk), 2011. # msgid "" msgstr "" "Project-Id-Version: mailcrypt\n" "Report-Msgid-Bugs-To: salve@debian.org\n" "POT-Creation-Date: 2007-07-26 17:33+0200\n" "PO-Revision-Date: 2011-07-10 12:42+0000\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should Mailcrypt be auto-loaded by default at your site?" msgstr "Skal Mailcrypt som standard automatisk indlæses på din side?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Mailcrypt will globally (i.e., for all users on this site) overload certain " "Emacs functions and key-bindings if you answer affirmatively to this " "question." msgstr "" "Mailcrypt vil globalt (dvs. for alle brugere på denne side) indlæse bestemte " "Emacs-funktioner og tastaturgenveje, hvis du svarer bekræftende på dette." #. Type: boolean #. Description #: ../templates:1001 msgid "" "This is generally a good thing, since Mailcrypt is a very useful package; " "however you may not want it to happen, and instead let single users at your " "site decide by themselves if they should load this package." msgstr "" "Dette er generelt en god ting, da Mailcrypt er en meget brugbar pakke; men " "du vil måske ikke ønske dette og i stedet for lade hver enkelt bruger på din " "side selv beslutte, om denne pakke skal indlæses." #. Type: boolean #. Description #: ../templates:1001 msgid "" "If you answer negatively, people who desire to use it will have to put the " "string \"(require 'mailcrypt-init)\" in their personal Emacs configuration " "file (e.g., \"~/.emacs\" or \"~/.emacs.el\") to load it." msgstr "" "Hvis du svarer benægtende, vil folk som ønsker at bruge pakken skulle " "indsætte strengen »(require 'mailcrypt-init)« i deres personlige Emacs-" "konfigurationsfil (f.eks. »~/.emacs« eller »~/.emacs.el« for at indlæse den." debian/po/sv.po0000664000000000000000000000453612047425202010604 0ustar # translation of mailcrypt.po to swedish # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Martin Bagge , 2008. msgid "" msgstr "" "Project-Id-Version: mailcrypt\n" "Report-Msgid-Bugs-To: salve@debian.org\n" "POT-Creation-Date: 2007-07-26 17:33+0200\n" "PO-Revision-Date: 2008-10-29 00:12+0100\n" "Last-Translator: Martin Bagge \n" "Language-Team: swedish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should Mailcrypt be auto-loaded by default at your site?" msgstr "Ska Mailcrypt laddas automatiskt?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Mailcrypt will globally (i.e., for all users on this site) overload certain " "Emacs functions and key-bindings if you answer affirmatively to this " "question." msgstr "" "Om du aktiverar detta alternativ kommer Mailcrypt att laddas globalt på " "systemet (detta kommer med andra ord att påverka alla användare på " "systemet). Mailcrypt laddar en del funktioner och använder vissa " "tangentkomandon som därmed blir ändrade för alla." #. Type: boolean #. Description #: ../templates:1001 msgid "" "This is generally a good thing, since Mailcrypt is a very useful package; " "however you may not want it to happen, and instead let single users at your " "site decide by themselves if they should load this package." msgstr "" "Generellt sett ska detta inte vara något problem, dessutom är Mailcrypt ett " "mycket användbart paket. Är du dock inte säker på om du vill tvinga på alla " "användare paketet så ska du istället låta varje enskild användare bestämma " "om Mailcrypt ska laddas eller ej." #. Type: boolean #. Description #: ../templates:1001 msgid "" "If you answer negatively, people who desire to use it will have to put the " "string \"(require 'mailcrypt-init)\" in their personal Emacs configuration " "file (e.g., \"~/.emacs\" or \"~/.emacs.el\") to load it." msgstr "" "Om du väljer vägen där användarna själva bestämmer måste de lägga in " "strängen \"(require 'mailcrypt-init)\" i deras egna Emacs-inställningar (ex. " "\"~/.emacs\" eller \"~/.emacs.el\")." debian/po/templates.pot0000664000000000000000000000276712047426014012344 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: salve@debian.org\n" "POT-Creation-Date: 2007-07-26 17:33+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should Mailcrypt be auto-loaded by default at your site?" msgstr "" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Mailcrypt will globally (i.e., for all users on this site) overload certain " "Emacs functions and key-bindings if you answer affirmatively to this " "question." msgstr "" #. Type: boolean #. Description #: ../templates:1001 msgid "" "This is generally a good thing, since Mailcrypt is a very useful package; " "however you may not want it to happen, and instead let single users at your " "site decide by themselves if they should load this package." msgstr "" #. Type: boolean #. Description #: ../templates:1001 msgid "" "If you answer negatively, people who desire to use it will have to put the " "string \"(require 'mailcrypt-init)\" in their personal Emacs configuration " "file (e.g., \"~/.emacs\" or \"~/.emacs.el\") to load it." msgstr "" debian/po/it.po0000664000000000000000000000644512047425202010571 0ustar # Italian translations of the "debian/templates" file # of the mailcrypt Debian package. # # Copyright (C) 2006 by Davide G. M. Salvetti. # # This file is distributed under the same license as the mailcrypt package. # # arch-tag: 696c7fd8-f13b-4427-a0a1-df452e9e8e85 msgid "" msgstr "" "Project-Id-Version: mailcrypt 3.5.8+CVS.2005.04.29.1-5\n" "Report-Msgid-Bugs-To: salve@debian.org\n" "POT-Creation-Date: 2007-07-26 17:33+0200\n" "PO-Revision-Date: 2006-06-19 15:41+0200\n" "Last-Translator: Davide G. M. Salvetti \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should Mailcrypt be auto-loaded by default at your site?" msgstr "Abilitare automaticamente Mailcrypt su questa macchina?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Mailcrypt will globally (i.e., for all users on this site) overload certain " "Emacs functions and key-bindings if you answer affirmatively to this " "question." msgstr "" "Se si risponde affermativamente, Mailcrypt sostituirà globalmente, cioè\n" "per tutti gli utenti di questa macchina, alcune funzioni e assegnamenti di\n" "tasti originali di Emacs." #. Type: boolean #. Description #: ../templates:1001 msgid "" "This is generally a good thing, since Mailcrypt is a very useful package; " "however you may not want it to happen, and instead let single users at your " "site decide by themselves if they should load this package." msgstr "" "In genere questa è una buona cosa, perché Mailcrypt è un pacchetto molto\n" "utile; può darsi, tuttavia, che si preferisca lasciare a ciascun singolo\n" "utente la decisione di far uso o meno di questo pacchetto." #. Type: boolean #. Description #: ../templates:1001 msgid "" "If you answer negatively, people who desire to use it will have to put the " "string \"(require 'mailcrypt-init)\" in their personal Emacs configuration " "file (e.g., \"~/.emacs\" or \"~/.emacs.el\") to load it." msgstr "" "Se la risposta sarà negativa, gli utenti che ne vorranno far uso dovranno\n" "inserire manualmente la stringa \"(require 'mailcrypt-init)\" nel loro\n" "personale file di configurazione per Emacs (p.e., \"~/.emacs\" oppure\n" "\"~/.emacs.el\") per caricarlo." #~ msgid "Mailcrypt seems to be already auto-loaded at your site. Good." #~ msgstr "" #~ "Mailcrypt sembra già automaticamente abilitato su questa macchina. Bene." #~ msgid "" #~ "By inspection of the file \"/etc/emacs/site-start.el\" Mailcrypt seems to " #~ "be already auto-loaded by default at your site." #~ msgstr "" #~ "Controllando il file \"/etc/emacs/site-start.el\", pare che Mailcrypt " #~ "sia\n" #~ "già automaticamente abilitato su questa macchina." #~ msgid "" #~ "If this is not true, or if it's not what you want, please search that " #~ "file looking for \"(require 'mailcrypt-init)\" resembling forms and fix " #~ "it; then run \"dpkg-reconfigure mailcrypt\" if needed (recommended)." #~ msgstr "" #~ "Se questo non è vero, o se non è quel che si desidera, si vadano a " #~ "cercare\n" #~ "in quel file Lisp form del tipo \"(require 'mailcrypt-init)\" e li si\n" #~ "correggano; poi si faccia girare \"dpkg-reconfigure mailcrypt\" per\n" #~ "configurare di nuovo Mailcrypt." debian/po/POTFILES.in0000664000000000000000000000004411754201324011360 0ustar [type: gettext/rfc822deb] templates debian/po/de.po0000664000000000000000000000667312047425202010550 0ustar # German translations of the "debian/templates" file # of the mailcrypt Debian package. # # Copyright (C) 2006, 07 by Davide G. M. Salvetti. # # This file is distributed under the same license as the mailcrypt package. # # Joerg Rieger , 2006. # Helge Kreutzmann , 2007. # # arch-tag: 1bd8ec48-76c8-4c5b-a8e8-026acc481ae4 msgid "" msgstr "" "Project-Id-Version: mailcrypt 3.5.8+CVS.2005.04.29.1-9\n" "Report-Msgid-Bugs-To: salve@debian.org\n" "POT-Creation-Date: 2007-07-26 17:33+0200\n" "PO-Revision-Date: 2007-01-28 11:45+0100\n" "Last-Translator: Helge Kreutzmann \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should Mailcrypt be auto-loaded by default at your site?" msgstr "Soll Mailcrypt bei Ihnen standardmig automatisch geladen werden?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Mailcrypt will globally (i.e., for all users on this site) overload certain " "Emacs functions and key-bindings if you answer affirmatively to this " "question." msgstr "" "Mailcrypt wird Global (d.h., fr alle Ihre Benutzer) einige Emacs-" "Funktionenund Tastenkrzel berschreiben, wenn Sie dieser Frage zustimmen." #. Type: boolean #. Description #: ../templates:1001 msgid "" "This is generally a good thing, since Mailcrypt is a very useful package; " "however you may not want it to happen, and instead let single users at your " "site decide by themselves if they should load this package." msgstr "" "Generell ist das in Ordnung, denn Mailcrypt ist ein sehr ntzliches Paket; " "jedoch mchten Sie vielleicht nicht, das das passiert, statt dessen " "mchtenSie vielleicht, dass jeder einzelne Benutzer selbst entscheiden kann, " "ob das Paket geladen werden soll oder nicht." #. Type: boolean #. Description #: ../templates:1001 msgid "" "If you answer negatively, people who desire to use it will have to put the " "string \"(require 'mailcrypt-init)\" in their personal Emacs configuration " "file (e.g., \"~/.emacs\" or \"~/.emacs.el\") to load it." msgstr "" "Wenn Sie ablehnend antworten, mssen die Leute, die das Paket benutzen " "mchten, in ihre persnliche Emacs-Konfigurationsdatei (z.B. ~/.emacs oder " "~/.emacs.el) die folgende Zeichenkette eintragen, um es zu laden: " "(require 'mailcrypt-init)." #~ msgid "Mailcrypt seems to be already auto-loaded at your site. Good." #~ msgstr "Mailcrypt scheint schon automatisch geladen zu werden. Gut." #~ msgid "" #~ "By inspection of the file \"/etc/emacs/site-start.el\" Mailcrypt seems to " #~ "be already auto-loaded by default at your site." #~ msgstr "" #~ "Nach Untersuchung der Datei /etc/emacs/site-start.el scheint es so, " #~ "dass bei Ihnen Mailcrypt standardmig schon automatisch geladen wird." #~ msgid "" #~ "If this is not true, or if it's not what you want, please search that " #~ "file looking for \"(require 'mailcrypt-init)\" resembling forms and fix " #~ "it; then run \"dpkg-reconfigure mailcrypt\" if needed (recommended)." #~ msgstr "" #~ "Wenn dies nicht stimmt, oder Sie dies nicht mchten, suchen Sie bitte in " #~ "derDatei nach der Zeile (require 'mailcrypt-init) oder hnlichem und " #~ "berichtigen Sie diese; danach fhren Sie dpkg-reconfigure mailcrypt " #~ "aus, falls ntig (empfohlen)." debian/po/ja.po0000664000000000000000000000564512047425202010550 0ustar # Copyright (C) Nobuhiro Iwamatsu , 2010. # This file is distributed under the same license as the mailcrypt package. # Nobuhiro Iwamatsu , 2010 # msgid "" msgstr "" "Project-Id-Version: mailcrypt_3.5.9-3\n" "Report-Msgid-Bugs-To: salve@debian.org\n" "POT-Creation-Date: 2007-07-26 17:33+0200\n" "PO-Revision-Date: 2010-11-29 09:34+0900\n" "Last-Translator: Nobuhiro Iwamatsu \n" "Language-Team: Japanese \n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should Mailcrypt be auto-loaded by default at your site?" msgstr "" "デフォルトで Mailcrypt を、あなたのサイトで自動的に実行するようにしますか?" # globally: システム全体 #. Type: boolean #. Description #: ../templates:1001 msgid "" "Mailcrypt will globally (i.e., for all users on this site) overload certain " "Emacs functions and key-bindings if you answer affirmatively to this " "question." msgstr "" "あなたがこの質問に「はい」と答えた場合、Mailcrypt はいくつかの Emacs 機能と" "キーバインドをシステム全体 (すなわち、このサイトの全ユーザ用に) にオーバー" "ロードします。" #. Type: boolean #. Description #: ../templates:1001 msgid "" "This is generally a good thing, since Mailcrypt is a very useful package; " "however you may not want it to happen, and instead let single users at your " "site decide by themselves if they should load this package." msgstr "" "Mailcrypt は非常に役に立つパッケージなので、ほとんどの場合これが推奨されま" "す。そうでない場合は、あなたのサイトのユーザ一人ひとりにこのパッケージをロー" "ドするか決めさせることもできます。" #. Type: boolean #. Description #: ../templates:1001 msgid "" "If you answer negatively, people who desire to use it will have to put the " "string \"(require 'mailcrypt-init)\" in their personal Emacs configuration " "file (e.g., \"~/.emacs\" or \"~/.emacs.el\") to load it." msgstr "" "あなたが「いいえ」と答えた場合、それを使いたいユーザはロードするために文字列 " "\"(require 'mailcrypt-init')\" を個人用の Emacs 設定ファイル (例: \"~/.emacs" "\" または \"~/.emacs.el\") に入れる必要があります。" #~ msgid "" #~ "If you don't choose this option, users will need to activate it from " #~ "their personal settings for Emacs or XEmacs, or start it explicitly with " #~ "the 'proofgeneral' command." #~ msgstr "" #~ "このオプションを選ばない場合、ユーザは Emacs あるいは XEmacs の個人設定の" #~ "中で有効にする、あるいは、あるいは 'proofgeneral' コマンドを使って明示的に" #~ "起動する必要があります。" debian/po/cs.po0000664000000000000000000000650612047425202010560 0ustar # Czech translations of the "debian/templates" file # of the mailcrypt Debian package. # # Copyright (C) 2007 Davide G. M. Salvetti # # This file is distributed under the same license as the mailcrypt Debian # package. # # Martin Sin , 2006. # # arch-tag: 8302e3cf-196c-4743-bfdd-7cec55c30e7f msgid "" msgstr "" "Project-Id-Version: mailcrypt 3.5.8+CVS.2005.04.29.1-9\n" "Report-Msgid-Bugs-To: salve@debian.org\n" "POT-Creation-Date: 2007-07-26 17:33+0200\n" "PO-Revision-Date: 2007-01-28 11:42+0100\n" "Last-Translator: Martin Sin \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should Mailcrypt be auto-loaded by default at your site?" msgstr "Má se na tomto počítači načítat Mailcrypt automaticky?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Mailcrypt will globally (i.e., for all users on this site) overload certain " "Emacs functions and key-bindings if you answer affirmatively to this " "question." msgstr "" "V případě, že odpovíte kladně, bude Mailcrypt nastaven globálně (pro všechny " "uživatele tohoto počítače) a budou tím změněny některé funkce a klávesová " "nastavení Emacsu." #. Type: boolean #. Description #: ../templates:1001 msgid "" "This is generally a good thing, since Mailcrypt is a very useful package; " "however you may not want it to happen, and instead let single users at your " "site decide by themselves if they should load this package." msgstr "" "To je obecně považováno za správnou věc, neboť je balíček Mailcrypt velmi " "užitečný; možná si to ale nepřejete a chcete místo toho nechat rozhodnutí o " "použití tohoto balíčku na jednotlivých uživatelích." #. Type: boolean #. Description #: ../templates:1001 msgid "" "If you answer negatively, people who desire to use it will have to put the " "string \"(require 'mailcrypt-init)\" in their personal Emacs configuration " "file (e.g., \"~/.emacs\" or \"~/.emacs.el\") to load it." msgstr "" "Odpovíte-li záporně, pak budou muset lidé, kteří budou chtít Mailcrypt " "používat, přidat do svého konfiguračního souboru (např.: \"~/.emacs\" nebo " "\"~/.emacs.el\") řetězec \"(require 'mailcrypt-init)\"." #~ msgid "Mailcrypt seems to be already auto-loaded at your site. Good." #~ msgstr "" #~ "Zdá se, že již je Mailcrypt na tomto stroji načítán automaticky. Skvělé." #~ msgid "" #~ "By inspection of the file \"/etc/emacs/site-start.el\" Mailcrypt seems to " #~ "be already auto-loaded by default at your site." #~ msgstr "" #~ "Kontrolou souboru \"/etc/emacs/site-start.el\" jsem zjistil, že je na " #~ "tomto počítači Mailcrypt načítán automaticky." #~ msgid "" #~ "If this is not true, or if it's not what you want, please search that " #~ "file looking for \"(require 'mailcrypt-init)\" resembling forms and fix " #~ "it; then run \"dpkg-reconfigure mailcrypt\" if needed (recommended)." #~ msgstr "" #~ "Pokud to tak není, nebo si to nepřejete, podívejte se prosím do zmíněného " #~ "souboru, najděte něco jako \"(require 'mailcrypt-init)\" a opravte to; " #~ "pak spusťte podle potřeby \"dpkg-reconfigure mailcrypt\" (doporučený " #~ "postup)." debian/po/pt.po0000664000000000000000000000644012047425202010573 0ustar # Portuguese translations of the "debian/templates" file # of the mailcrypt Debian package. # # Copyright (C) 2007 by Davide G. M. Salvetti. # # This file is distributed under the same license as the mailcrypt package. # # Pedro Ribeiro , 2007. # # arch-tag: 729b28f9-784c-4dcc-84f7-c09dde384e78 msgid "" msgstr "" "Project-Id-Version: mailcrypt-3.5.8+CVS.2005.04.29.1-10\n" "Report-Msgid-Bugs-To: salve@debian.org\n" "POT-Creation-Date: 2007-07-26 17:33+0200\n" "PO-Revision-Date: 2007-08-07 22:52+0200\n" "Last-Translator: Pedro Ribeiro \n" "Language-Team: Portuguese \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should Mailcrypt be auto-loaded by default at your site?" msgstr "Deve auto-carregar o Mailcrypt por omisão no seu site ?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Mailcrypt will globally (i.e., for all users on this site) overload certain " "Emacs functions and key-bindings if you answer affirmatively to this " "question." msgstr "" "O Mailcrypt vai globalmente (i.e., para todos os utilizadores deste site)\n" "substituir certas funções e comandos de teclado do Emacs se responder\n" "afirmativamente a esta questão." #. Type: boolean #. Description #: ../templates:1001 msgid "" "This is generally a good thing, since Mailcrypt is a very useful package; " "however you may not want it to happen, and instead let single users at your " "site decide by themselves if they should load this package." msgstr "" "Normalmente isto é bom, uma vez que o Mailcrypt é um pacote muito útil; no\n" "entanto pode não querer isto, e deixar que os utilizadores decidam se\n" "querem ou não este pacote." #. Type: boolean #. Description #: ../templates:1001 msgid "" "If you answer negatively, people who desire to use it will have to put the " "string \"(require 'mailcrypt-init)\" in their personal Emacs configuration " "file (e.g., \"~/.emacs\" or \"~/.emacs.el\") to load it." msgstr "" "Se responder negativamente, quem desejar utilizá-lo terá que colocar o\n" "texto \"(require 'mailcrypt-init)\" no seu ficheiro pessoal de configuração\n" "do Emacs (e.g., \"~/.emacs\" ou \"~/.emacs.el\") para carregá-lo." #~ msgid "Mailcrypt seems to be already auto-loaded at your site. Good." #~ msgstr "" #~ "Parece que o Mailcrypt já está em auto-carregamento no seu site. Bem." #~ msgid "" #~ "By inspection of the file \"/etc/emacs/site-start.el\" Mailcrypt seems to " #~ "be already auto-loaded by default at your site." #~ msgstr "" #~ "Ao inspeccionar o ficheiro \"/etc/emacs/site-start.el\" parece que o\n" #~ "Mailcrypt já está em auto-carregamento por omissão no seu site." #~ msgid "" #~ "If this is not true, or if it's not what you want, please search that " #~ "file looking for \"(require 'mailcrypt-init)\" resembling forms and fix " #~ "it; then run \"dpkg-reconfigure mailcrypt\" if needed (recommended)." #~ msgstr "" #~ "Se isto não for verdade, ou não é o que pretende, procure por favor " #~ "nesse\n" #~ "ficheiro texto parecido com \"(require 'mailcrypt-init)\" e corrija-o;\n" #~ "depois execute novamente \"dpkg-reconfigure mailcrypt\" se necessário\n" #~ "(recomendado)." debian/po/nl.po0000664000000000000000000000645612047425202010570 0ustar # Dutch translations of the "debian/templates" file # of the mailcrypt Debian package. # # Copyright (C) 2007 by Davide G. M. Salvetti. # # This file is distributed under the same license as the mailcrypt package. # # Bart Cornelis , 2007. # # arch-tag: 94293fd4-1621-44c7-bade-f38f4bd6f7d8 msgid "" msgstr "" "Project-Id-Version: mailcrypt\n" "Report-Msgid-Bugs-To: salve@debian.org\n" "POT-Creation-Date: 2007-07-26 17:33+0200\n" "PO-Revision-Date: 2007-03-20 11:52+0100\n" "Last-Translator: Bart Cornelis \n" "Language-Team: debian-l10n-dutch \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Dutch\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should Mailcrypt be auto-loaded by default at your site?" msgstr "" "Wilt u dat Mailcrypt standaard automatisch geladen wordt op uw locatie?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Mailcrypt will globally (i.e., for all users on this site) overload certain " "Emacs functions and key-bindings if you answer affirmatively to this " "question." msgstr "" "Als u hier positief antwoordt zal Mailcrypt bepaalde Emacs-functies en\n" "sneltoetsen globaal (dus voor alle gebruikers op uw locatie) instellen." #. Type: boolean #. Description #: ../templates:1001 msgid "" "This is generally a good thing, since Mailcrypt is a very useful package; " "however you may not want it to happen, and instead let single users at your " "site decide by themselves if they should load this package." msgstr "" "In het algemeen is dit aan te bevelen daar Mailcrypt een erg nuttig pakket\n" "is. Het kan natuurlijk zijn dat u het liever aan individuele gebruikers\n" "overlaat of ze dit pakket al dan niet willen laden." #. Type: boolean #. Description #: ../templates:1001 msgid "" "If you answer negatively, people who desire to use it will have to put the " "string \"(require 'mailcrypt-init)\" in their personal Emacs configuration " "file (e.g., \"~/.emacs\" or \"~/.emacs.el\") to load it." msgstr "" "Als u hier negatief antwoort kunnen gebruikers die dit wensen dit pakket\n" "laden door de string \"(require 'mailcrypt-init)\" toe te voegen in hun\n" "persoonlijk emacs-configuratiebestand ('~/.emacs' of '~/.emacs.el')." #~ msgid "Mailcrypt seems to be already auto-loaded at your site. Good." #~ msgstr "" #~ "Mailcrypt wordt reeds automatisch geladen op deze locatie, dat is goed." #~ msgid "" #~ "By inspection of the file \"/etc/emacs/site-start.el\" Mailcrypt seems to " #~ "be already auto-loaded by default at your site." #~ msgstr "" #~ "Inspectie van het bestand '/etc/emacs/site-start.el' wijst aan dat\n" #~ "mailcrypt reeds automatisch geladen wordt op deze locatie." #~ msgid "" #~ "If this is not true, or if it's not what you want, please search that " #~ "file looking for \"(require 'mailcrypt-init)\" resembling forms and fix " #~ "it; then run \"dpkg-reconfigure mailcrypt\" if needed (recommended)." #~ msgstr "" #~ "Als dit niet zo is, of u als u dit niet wilt dient u dit bestand na te\n" #~ "kijken voor op \"(require 'mailcrypt-init)\" lijkende dingen en deze te\n" #~ "verbeteren; daarna dient u indien noodzakelijk (altijd aan te raden)\n" #~ "'dpkg-reconfigure mailcrypt' uit te voeren." debian/po/vi.po0000664000000000000000000000455412047425202010572 0ustar # Vietnamese translation for MailCrypt. # Copyright © 2009 Free Software Foundation, Inc. # Clytie Siddall , 2009. # msgid "" msgstr "" "Project-Id-Version: mailcrypt\n" "Report-Msgid-Bugs-To: salve@debian.org\n" "POT-Creation-Date: 2007-07-26 17:33+0200\n" "PO-Revision-Date: 2009-09-30 15:09+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" "Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: LocFactoryEditor 1.8\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should Mailcrypt be auto-loaded by default at your site?" msgstr "Có nên tự động nạp Mailcrypt theo mặc định ở chỗ bạn không?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Mailcrypt will globally (i.e., for all users on this site) overload certain " "Emacs functions and key-bindings if you answer affirmatively to this " "question." msgstr "" "Phần mềm Mailcrypt sẽ ghi đè lên một số chức năng và tổ hợp phím Emacs một " "cách toàn cục (tức là cho mọi người dùng ở chỗ này) nếu bạn bật tuỳ chọn này." #. Type: boolean #. Description #: ../templates:1001 msgid "" "This is generally a good thing, since Mailcrypt is a very useful package; " "however you may not want it to happen, and instead let single users at your " "site decide by themselves if they should load this package." msgstr "" "Trường hợp này chỉ là tốt vì Mailcrypt là một gói rất hữu ích, tuy nhiên " "trong một số trường hợp bạn có thể không muốn nó xảy ra, thay vào đó cho " "phép mỗi người dùng cục bộ tự chọn nạp gói này hay không." #. Type: boolean #. Description #: ../templates:1001 msgid "" "If you answer negatively, people who desire to use it will have to put the " "string \"(require 'mailcrypt-init)\" in their personal Emacs configuration " "file (e.g., \"~/.emacs\" or \"~/.emacs.el\") to load it." msgstr "" "Không bật tuỳ chọn này thì mỗi người muốn sử dụng mailcrypt thì cần phải " "chèn chuỗi \"(require 'mailcrypt-init)\" vào tập tin cấu hình Emacs riêng " "(v.d. tập tin \"~/.emacs\" hay \"~/.emacs.el\") để nạp nó." debian/po/fr.po0000664000000000000000000000647212047425202010564 0ustar # French translations of the "debian/templates" file # of the mailcrypt Debian package. # # Copyright (C) 2006, 07 by Davide G. M. Salvetti. # # This file is distributed under the same license as the mailcrypt package. # # Steve Petruzzello , 2006. # # arch-tag: 12700049-164a-43a0-9fde-1ad75398c526 msgid "" msgstr "" "Project-Id-Version: mailcrypt_3.5.8+CVS.2005.04.29.1-7\n" "Report-Msgid-Bugs-To: salve@debian.org\n" "POT-Creation-Date: 2007-07-26 17:33+0200\n" "PO-Revision-Date: 2007-07-26 17:50+0200\n" "Last-Translator: Steve Petruzzello \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-15\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: French\n" "X-Poedit-Country: SWITZERLAND\n" "X-Poedit-SourceCharset: iso-8859-15\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should Mailcrypt be auto-loaded by default at your site?" msgstr "Faut-il charger Mailcrypt par dfaut pour votre site?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Mailcrypt will globally (i.e., for all users on this site) overload certain " "Emacs functions and key-bindings if you answer affirmatively to this " "question." msgstr "" "Avec cette option, Mailcrypt va globalement (c'est--dire pour tous les " "utilisateurs de ce site) remplacer certaines fonctions et raccourcis-clavier " "d'Emacs." #. Type: boolean #. Description #: ../templates:1001 msgid "" "This is generally a good thing, since Mailcrypt is a very useful package; " "however you may not want it to happen, and instead let single users at your " "site decide by themselves if they should load this package." msgstr "" "C'est en gnral une bonne initiative puisque Mailcrypt est un paquet trs " "utile. Nanmoins, vous pouvez refuser et laisser le choix aux utilisateurs " "de votre site de charger ce paquet." #. Type: boolean #. Description #: ../templates:1001 msgid "" "If you answer negatively, people who desire to use it will have to put the " "string \"(require 'mailcrypt-init)\" in their personal Emacs configuration " "file (e.g., \"~/.emacs\" or \"~/.emacs.el\") to load it." msgstr "" "En refusant cette option, les utilisateurs dsireux d'utiliser ce paquet " "devront entrer la chane (require 'mailcrypt-init) dans leur fichier de " "configuration d'Emacs (e.g. ~/.emacs ou ~/.emacs.el) pour le charger." #~ msgid "Mailcrypt seems to be already auto-loaded at your site. Good." #~ msgstr "Mailcrypt dj charg automatiquement" #~ msgid "" #~ "By inspection of the file \"/etc/emacs/site-start.el\" Mailcrypt seems to " #~ "be already auto-loaded by default at your site." #~ msgstr "" #~ "L'inspection du fichier /etc/emacs/site-start.el indique que Mailcrypt " #~ "semble charg par dfaut sur votre site." #~ msgid "" #~ "If this is not true, or if it's not what you want, please search that " #~ "file looking for \"(require 'mailcrypt-init)\" resembling forms and fix " #~ "it; then run \"dpkg-reconfigure mailcrypt\" if needed (recommended)." #~ msgstr "" #~ "Si cela n'est pas le cas, ou si ce n'est pas ce que vous dsirez, " #~ "veuillez rechercher la chane (require mailcrypt-init) dans ce " #~ "fichier et la corriger. Ensuite, il est recommand de lancer la commande " #~ "dpkg-reconfigure mailcrypt." debian/po/es.po0000664000000000000000000001005012047425202010547 0ustar # mailcrypt po-debconf translation to Spanish # Copyright (C) 2006, 2007 by Davide G. M. Salvetti # This file is distributed under the same license as the mailcrypt package. # # Changes: # - Initial translation # Gorka Olaizola , 2006 # # - Updates # Francisco Javier Cuadrado , 2009 # # Traductores, si no conocen el formato PO, merece la pena leer la # documentación de gettext, especialmente las secciones dedicadas a este # formato, por ejemplo ejecutando: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Equipo de traducción al español, por favor lean antes de traducir # los siguientes documentos: # # - El proyecto de traducción de Debian al español # http://www.debian.org/intl/spanish/ # especialmente las notas y normas de traducción en # http://www.debian.org/intl/spanish/notas # # - La guía de traducción de po's de debconf: # /usr/share/doc/po-debconf/README-trans # o http://www.debian.org/intl/l10n/po-debconf/README-trans # msgid "" msgstr "" "Project-Id-Version: mailcrypt 3.5.8+CVS.2005.04.29.1-12\n" "Report-Msgid-Bugs-To: salve@debian.org\n" "POT-Creation-Date: 2007-07-26 17:33+0200\n" "PO-Revision-Date: 2009-06-08 11:56+0100\n" "Last-Translator: Francisco Javier Cuadrado \n" "Language-Team: Debian l10n Spanish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should Mailcrypt be auto-loaded by default at your site?" msgstr "" "¿Se debería cargar automáticamente Mailcrypt de forma predeterminada en su " "sistema?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Mailcrypt will globally (i.e., for all users on this site) overload certain " "Emacs functions and key-bindings if you answer affirmatively to this " "question." msgstr "" "Mailcrypt reemplazará globalmente (para todos los usuarios del sitio) " "ciertas funciones de Emacs y enlaces de teclas, si responde sí a esta " "pregunta." #. Type: boolean #. Description #: ../templates:1001 msgid "" "This is generally a good thing, since Mailcrypt is a very useful package; " "however you may not want it to happen, and instead let single users at your " "site decide by themselves if they should load this package." msgstr "" "Esto es generalmente bueno, ya que Mailcrypt es un paquete muy útil, sin " "embargo quizás no quiera que esto suceda y, en su lugar, prefiere que cada " "usuario del sitio decida por sí mismo si quiere cargar este paquete." #. Type: boolean #. Description #: ../templates:1001 msgid "" "If you answer negatively, people who desire to use it will have to put the " "string \"(require 'mailcrypt-init)\" in their personal Emacs configuration " "file (e.g., \"~/.emacs\" or \"~/.emacs.el\") to load it." msgstr "" "Si responde no, los usuarios que quieran usarlo deberán poner la cadena " "«(require 'mailcrypt-init)» en su archivo de configuración personal de Emacs " "(por ejemplo: «~/.emacs» o «~/.emacs.el») para cargarlo." #~ msgid "Mailcrypt seems to be already auto-loaded at your site. Good." #~ msgstr "Parece que Mailcrypt ya está cargado en su sistema. Bien." #~ msgid "" #~ "By inspection of the file \"/etc/emacs/site-start.el\" Mailcrypt seems to " #~ "be already auto-loaded by default at your site." #~ msgstr "" #~ "Tras inspeccionar el fichero \"/etc/emacs/site-start.el\" parece que\n" #~ "Mailcrypt ya se carga automáticamente por defecto en su sistema." #~ msgid "" #~ "If this is not true, or if it's not what you want, please search that " #~ "file looking for \"(require 'mailcrypt-init)\" resembling forms and fix " #~ "it; then run \"dpkg-reconfigure mailcrypt\" if needed (recommended)." #~ msgstr "" #~ "Si esto no es verdad, o no es lo que quiere, busque en ese fichero " #~ "cadenas\n" #~ "parecidas a \"(require 'mailcrypt-init)\" y arréglelo. Después ejecute\n" #~ "\"dpkg-reconfigure mailcrypt\" si lo cree necesario (se recomienda)." debian/po/ru.po0000664000000000000000000000544312047425202010600 0ustar # translation of ru.po to Russian # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Yuri Kozlov , 2009. msgid "" msgstr "" "Project-Id-Version: mailcrypt 3.5.8+CVS.2005.04.29.1-12\n" "Report-Msgid-Bugs-To: salve@debian.org\n" "POT-Creation-Date: 2007-07-26 17:33+0200\n" "PO-Revision-Date: 2009-08-12 21:00+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should Mailcrypt be auto-loaded by default at your site?" msgstr "Загружать Mailcrypt автоматически всем пользователям компьютера?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Mailcrypt will globally (i.e., for all users on this site) overload certain " "Emacs functions and key-bindings if you answer affirmatively to this " "question." msgstr "" "Если ответить утвердительно, то Mailcrypt глобально (т.е., у всех " "пользователей компьютера) переопределит определённые функции Emacs и " "привязки клавиш." #. Type: boolean #. Description #: ../templates:1001 msgid "" "This is generally a good thing, since Mailcrypt is a very useful package; " "however you may not want it to happen, and instead let single users at your " "site decide by themselves if they should load this package." msgstr "" "Обычно, это допустимо, так как Mailcrypt очень полезный пакет; однако для " "вас это может быть неприемлемо, и вы бы хотели позволить отдельным " "пользователям самим решать, нужно ли загружать данный пакет." #. Type: boolean #. Description #: ../templates:1001 msgid "" "If you answer negatively, people who desire to use it will have to put the " "string \"(require 'mailcrypt-init)\" in their personal Emacs configuration " "file (e.g., \"~/.emacs\" or \"~/.emacs.el\") to load it." msgstr "" "Если ответить отрицательно, то пользователи, которым нужен этот пакет, " "должны поместить строку \"(require 'mailcrypt-init)\" в свой персональный " "файл настройки Emacs (например, в \"~/.emacs\" или \"~/.emacs.el\")." debian/po/fi.po0000664000000000000000000000414112047425202010542 0ustar # Copyright (C) 2009 # This file is distributed under the same license as the mailcrypt package. # # Esko Arajärvi , 2009. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: salve@debian.org\n" "POT-Creation-Date: 2007-07-26 17:33+0200\n" "PO-Revision-Date: 2009-10-05 21:35+0300\n" "Last-Translator: Esko Arajärvi \n" "Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: boolean #. Description #: ../templates:1001 msgid "Should Mailcrypt be auto-loaded by default at your site?" msgstr "Tulisiko Mailcrypt ladata automaattisesti?" #. Type: boolean #. Description #: ../templates:1001 msgid "" "Mailcrypt will globally (i.e., for all users on this site) overload certain " "Emacs functions and key-bindings if you answer affirmatively to this " "question." msgstr "" "Mailcrypt peittää tiettyjä Emacs-toimintoja ja -näppäinkomentoja " "järjestelmänlaajuisesti, jos valitset tämän vaihtoehdon." #. Type: boolean #. Description #: ../templates:1001 msgid "" "This is generally a good thing, since Mailcrypt is a very useful package; " "however you may not want it to happen, and instead let single users at your " "site decide by themselves if they should load this package." msgstr "" "Tämä on yleensä hyvä asia, koska Mailcrypt on hyödyllinen paketti. " "Vaihtoehtoisesti voit antaa yksittäisten käyttäjien itse valita ottavatko he " "tämän paketin käyttöön." #. Type: boolean #. Description #: ../templates:1001 msgid "" "If you answer negatively, people who desire to use it will have to put the " "string \"(require 'mailcrypt-init)\" in their personal Emacs configuration " "file (e.g., \"~/.emacs\" or \"~/.emacs.el\") to load it." msgstr "" "Jos et valitse tätä vaihtoehtoa, paketin käyttö vaatii, että " "henkilökohtaiseen Emacs-asetustiedostoon (esim. ”~/.emacs” tai ”~/.emacs." "el”) lisätään rivi ”(require 'mailcrypt-init)”." debian/mailcrypt-init.el0000664000000000000000000000523611754201324012464 0ustar ;; mailcrypt-init.el, perform mailcrypt initialization ;; Copyright (C) 1998, 99, 2002, 05, 06 ;; by Davide G. M. Salvetti ;; Copyright (C) 1996 Joe Reinhardt ;;{{{ Licensing ;; This file is intended to be used with GNU Emacs. ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation; either version 2, or (at your option) ;; any later version. ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License along ;; with this program; if not, write to the Free Software Foundation, Inc., ;; 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. ;;}}} ;;; Configuration ;; Autoloads as per README (autoload 'mc-install-write-mode "mailcrypt" "Part of MailCrypt" t) (autoload 'mc-install-read-mode "mailcrypt" "Part of MailCrypt" t) (autoload 'mc-setversion "mailcrypt" "Part of MailCrypt" t) ;; mail-mode hook (add-hook 'mail-mode-hook 'mc-install-write-mode) ;; Rmail hooks (if (and (boundp 'emacs-version) ; check for >= 20.3 (or (> emacs-major-version 20) (and (>= emacs-major-version 20) (>= emacs-minor-version 3)))) (add-hook 'rmail-show-message-hook 'mc-install-read-mode) (add-hook 'rmail-mode-hook 'mc-install-read-mode)) (add-hook 'rmail-summary-mode-hook 'mc-install-read-mode) ;; VM hooks (add-hook 'vm-mode-hook 'mc-install-read-mode) (add-hook 'vm-summary-mode-hook 'mc-install-read-mode) (add-hook 'vm-virtual-mode-hook 'mc-install-read-mode) (add-hook 'vm-mail-mode-hook 'mc-install-write-mode) ;; MH-E hooks (add-hook 'mh-folder-mode-hook 'mc-install-read-mode) (add-hook 'mh-letter-mode-hook 'mc-install-write-mode) ;; Gnus hooks (add-hook 'gnus-summary-mode-hook 'mc-install-read-mode) (add-hook 'message-setup-hook 'mc-install-write-mode) (add-hook 'news-reply-mode-hook 'mc-install-write-mode) ;; Mew hooks (add-hook 'mew-message-mode-hook 'mc-install-read-mode) (add-hook 'mew-summary-mode-hook 'mc-install-read-mode) (add-hook 'mew-draft-mode-hook 'mc-install-write-mode) ;; GNU Privacy Guard is our default. (setq mc-default-scheme 'mc-scheme-gpg) (provide 'mailcrypt-init) ;;; End ;; arch-tag: 6b98de11-0cd8-4289-90cd-5b1224e13581 ;; ;; local variables: ;; mode: emacs-lisp ;; coding: utf-8 ;; ispell-local-dictionary: "american" ;; ispell-check-comments: exclusive ;; end: ;; ;; LocalWords: mailcrypt init Autoloads README Rmail VM MH el debian/remove.in0000664000000000000000000000451412047426430011023 0ustar #include "variables" #! /bin/bash # # <% elisp %> Emacs remove script for <:=${PACKAGE}:> # <:=@COPYRIGHT:>// set -e set -o posix; shopt -s nullglob ### Historic cleanup code <: # Version 3.5.4-5, 3.5.5-1, 3.5.5-2, 3.5.5-3, 3.5.5-4, and 3.5.5-5 of # mailcrypt had a typo bug and failed to remove $ELCLOG.gz. # The affected time window is from 1999-10-12 to 1999-12-12, when the # emacs19 Debian version was 19.34-21 while the emacs20 ones were # 20.3-11--20.4-3. # However, other emacsen may have been used as well, so our strategy is # to remove $ELCLOG.gz and its parents, if empty, from every no more # installed emacsen directory. # Of course package, files, and directories names are hardcoded here, as # this is code that deals with old cruft, and should not change in the # future with "variables". :>// clean_old_cruft () { rm -f /usr/share/emacs/${1}/site-lisp/mailcrypt/CompilationLog.gz test -d /usr/share/emacs/${1}/site-lisp/mailcrypt/ \ && rmdir --ignore-fail-on-non-empty --parents \ /usr/share/emacs/${1}/site-lisp/mailcrypt/ } <: # Note that /usr/share/emacs/site-lisp/mailcrypt is _not_ enclosed in # the following pattern, neither it should be. Also note that the # nullglob shell option should be enabled! :>// for i in /usr/share/emacs/*/site-lisp/mailcrypt/; do i=${i#/usr/share/emacs/} i=${i%/site-lisp/mailcrypt/} test -e /usr/bin/emacs-${i} || clean_old_cruft ${i} done FLAVOR=${1} undo_install () { echo >&2 -n "remove/<:=${PACKAGE}:>: Removing for ${FLAVOR}... " rm -f <:=if($_="${sstartd}/${EPRIORITY}${PACKAGE}.el") =~s|emacs|\${FLAVOR}|:> rm -f <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/<:=${ELCLOG}:>{,.gz} rm -f <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/*.elc test -d <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:> && \ rmdir --ignore-fail-on-non-empty \ <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:> echo >&2 "done." return 0 } case "${FLAVOR}" in emacs) :;; emacs2[1234]|emacs-snapshot) undo_install;; *) echo >&2 "remove/<:=${PACKAGE}:>:" \ "Ignoring emacsen flavor: \"${FLAVOR}\"." esac exit 0 <: # arch-tag: 02840558-59db-42e5-bc45-fe3cce8d379e # # local variables: # mode: shell-script # coding: utf-8 # ispell-local-dictionary: "american" # ispell-check-comments: exclusive # end: # # LocalWords: mailcrypt ELCLOG gz emacs emacsen nullglob :>// debian/README.Debian0000664000000000000000000000125311754201324011231 0ustar Upstream cvs repo available at: :ext:@mailcrypt.cvs.sourceforge.net:/cvsroot/mailcrypt http://mailcrypt.cvs.sourceforge.net/viewvc/mailcrypt/mailcrypt/ Pulled upstream tarballs & debian patch files into git, mirrored: git://git.debian.org/git/collab-maint/mailcrypt.git git://github.com/barak/mailcrypt.git Tracking upstream cvs in git branch by fetching from git://github.com/emacsmirror/mailcrypt.git Can also directly import/track upstream cvs repo into git using: git cvsimport -v -k -u -a mailcrypt \ -d :pserver:anonymous@mailcrypt.cvs.sourceforge.net:/cvsroot/mailcrypt -- Barak A. Pearlmutter , Sun, 21 Mar 2010 13:43:29 +0000 debian/patches/0000755000000000000000000000000012047427344010624 5ustar debian/patches/debian-changes0000644000000000000000000030074012047427344013403 0ustar Description: TODO: Put a short summary on the line above and replace this paragraph with a longer explanation of this change. Complete the meta-information with other relevant fields (see below for details). To make it easier, the information below has been extracted from the changelog. Adjust it or drop it. . mailcrypt (3.5.9-6) unstable; urgency=low . * Allow emacs24 (closes: #679944, #685179) Author: Barak A. Pearlmutter Bug-Debian: http://bugs.debian.org/679944 Bug-Debian: http://bugs.debian.org/685179 --- The information above should follow the Patch Tagging Guidelines, please checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here are templates for supplementary fields that you might want to add: Origin: , Bug: Bug-Debian: http://bugs.debian.org/ Bug-Ubuntu: https://launchpad.net/bugs/ Forwarded: Reviewed-By: Last-Update: --- mailcrypt-3.5.9.orig/Makefile.in +++ mailcrypt-3.5.9/Makefile.in @@ -23,6 +23,7 @@ INFOFILES = mailcrypt.info INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_INFO = @INSTALL_INFO@ +MKINSTALLDIRS = $(srcdir)/mkinstalldirs # Various auxiliary programs MAKEINFO=makeinfo @@ -75,7 +76,10 @@ all: $(OBJECTS) check: $(OBJECTS) $(MAKE) -C tests check -install: all installdirs install-info +install: install-lisp install-info + +install-lisp: all + -$(MKINSTALLDIRS) $(lispdir) for f in $(SOURCES); do \ $(INSTALL_DATA) $(srcdir)/$$f $(lispdir); \ done; @@ -94,6 +98,7 @@ installdirs: mkinstalldirs # to the arguments. install-info: info + -$(MKINSTALLDIRS) $(infodir) cd $(srcdir) && for file in $(INFOFILES); do\ $(INSTALL_DATA) $$file $(infodir)/$$file; \ done @@ -125,7 +130,7 @@ mailcrypt.ps: mailcrypt.dvi html: mailcrypt_toc.html mailcrypt_toc.html: mailcrypt.texi - $(TEXI2HTML) -split_chapter $(srcdir)/mailcrypt.texi + $(TEXI2HTML) --output=htmls --split_chapter $(srcdir)/mailcrypt.texi TAGS: $(SOURCES) cd $(srcdir) && etags $(SOURCES) @@ -134,11 +139,14 @@ clean: rm -f $(OBJECTS) -rm -f *.aux *.cp *.cps *.fn *.ky *.log *.pg *.toc *.tp *.vr -rm -f *.html + -rm -rf htmls/ rm -f TAGS distclean: clean -rm -f *~ *.tar.gz -rm -f Makefile config.status config.cache config.log timer.el + -rm -f tests/Makefile tests/remailer/Makefile + -rm -rf autom4te.cache -rm -f *.info* *.dvi ${srcdir}/configure: configure.in --- /dev/null +++ mailcrypt-3.5.9/configure @@ -0,0 +1,3103 @@ +#! /bin/sh +# Guess values for system-dependent variables and create Makefiles. +# Generated by GNU Autoconf 2.65 for mailcrypt 3.5.9. +# +# Report bugs to . +# +# +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# +# +# This configure script is free software; the Free Software Foundation +# gives unlimited permission to copy, distribute and modify it. +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +if test "x$CONFIG_SHELL" = x; then + as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi +" + as_required="as_fn_return () { (exit \$1); } +as_fn_success () { as_fn_return 0; } +as_fn_failure () { as_fn_return 1; } +as_fn_ret_success () { return 0; } +as_fn_ret_failure () { return 1; } + +exitcode=0 +as_fn_success || { exitcode=1; echo as_fn_success failed.; } +as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } +as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } +as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } +if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : + +else + exitcode=1; echo positional parameters were not saved. +fi +test x\$exitcode = x0 || exit 1" + as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO + as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO + eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && + test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1" + if (eval "$as_required") 2>/dev/null; then : + as_have_required=yes +else + as_have_required=no +fi + if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : + +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +as_found=false +for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + as_found=: + case $as_dir in #( + /*) + for as_base in sh bash ksh sh5; do + # Try only shells that exist, to save several forks. + as_shell=$as_dir/$as_base + if { test -f "$as_shell" || test -f "$as_shell.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : + CONFIG_SHELL=$as_shell as_have_required=yes + if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : + break 2 +fi +fi + done;; + esac + as_found=false +done +$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : + CONFIG_SHELL=$SHELL as_have_required=yes +fi; } +IFS=$as_save_IFS + + + if test "x$CONFIG_SHELL" != x; then : + # We cannot yet assume a decent shell, so we have to provide a + # neutralization value for shells without unset; and this also + # works around shells that cannot unset nonexistent variables. + BASH_ENV=/dev/null + ENV=/dev/null + (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV + export CONFIG_SHELL + exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} +fi + + if test x$as_have_required = xno; then : + $as_echo "$0: This script requires a shell more modern than all" + $as_echo "$0: the shells that I found on your system." + if test x${ZSH_VERSION+set} = xset ; then + $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" + $as_echo "$0: be upgraded to zsh 4.3.4 or later." + else + $as_echo "$0: Please tell bug-autoconf@gnu.org and +$0: http://mailcrypt.sourceforge.net/bugs.html about your +$0: system, including any error possibly output before this +$0: message. Then install a modern shell, or manually run +$0: the script under such a shell if you do have one." + fi + exit 1 +fi +fi +fi +SHELL=${CONFIG_SHELL-/bin/sh} +export SHELL +# Unset more variables known to interfere with behavior of common tools. +CLICOLOR_FORCE= GREP_OPTIONS= +unset CLICOLOR_FORCE GREP_OPTIONS + +## --------------------- ## +## M4sh Shell Functions. ## +## --------------------- ## +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" + + +} # as_fn_mkdir_p +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +# as_fn_error ERROR [LINENO LOG_FD] +# --------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with status $?, using 1 if that was 0. +as_fn_error () +{ + as_status=$?; test $as_status -eq 0 && as_status=1 + if test "$3"; then + as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 + fi + $as_echo "$as_me: error: $1" >&2 + as_fn_exit $as_status +} # as_fn_error + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + + + as_lineno_1=$LINENO as_lineno_1a=$LINENO + as_lineno_2=$LINENO as_lineno_2a=$LINENO + eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && + test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { + # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= + ' <$as_myself | + sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno + N + :loop + s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ + t loop + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || + { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } + + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensitive to this). + . "./$as_me.lineno" + # Exit status is that of the last command. + exit +} + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -p'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -p' + fi +else + as_ln_s='cp -p' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +if test -x / >/dev/null 2>&1; then + as_test_x='test -x' +else + if ls -dL / >/dev/null 2>&1; then + as_ls_L_option=L + else + as_ls_L_option= + fi + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then + test -d "$1/."; + else + case $1 in #( + -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +fi +as_executable_p=$as_test_x + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +test -n "$DJDIR" || exec 7<&0 &1 + +# Name of the host. +# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, +# so uname gets run too. +ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` + +# +# Initializations. +# +ac_default_prefix=/usr/local +ac_clean_files= +ac_config_libobj_dir=. +LIBOBJS= +cross_compiling=no +subdirs= +MFLAGS= +MAKEFLAGS= + +# Identity of this package. +PACKAGE_NAME='mailcrypt' +PACKAGE_TARNAME='mailcrypt' +PACKAGE_VERSION='3.5.9' +PACKAGE_STRING='mailcrypt 3.5.9' +PACKAGE_BUGREPORT='http://mailcrypt.sourceforge.net/bugs.html' +PACKAGE_URL='' + +ac_unique_file="mailcrypt.el" +ac_subst_vars='LTLIBOBJS +LIBOBJS +EXTRA_OBJS +EXTRA_SRCS +EMACSFLAGS +EMACS +BASENAME +INSTALL_INFO +INSTALL_DATA +INSTALL_SCRIPT +INSTALL_PROGRAM +LN_S +target_alias +host_alias +build_alias +LIBS +ECHO_T +ECHO_N +ECHO_C +DEFS +mandir +localedir +libdir +psdir +pdfdir +dvidir +htmldir +infodir +docdir +oldincludedir +includedir +localstatedir +sharedstatedir +sysconfdir +datadir +datarootdir +libexecdir +sbindir +bindir +program_transform_name +prefix +exec_prefix +PACKAGE_URL +PACKAGE_BUGREPORT +PACKAGE_STRING +PACKAGE_VERSION +PACKAGE_TARNAME +PACKAGE_NAME +PATH_SEPARATOR +SHELL' +ac_subst_files='' +ac_user_opts=' +enable_option_checking +' + ac_precious_vars='build_alias +host_alias +target_alias' + + +# Initialize some variables set by options. +ac_init_help= +ac_init_version=false +ac_unrecognized_opts= +ac_unrecognized_sep= +# The variables have the same names as the options, with +# dashes changed to underlines. +cache_file=/dev/null +exec_prefix=NONE +no_create= +no_recursion= +prefix=NONE +program_prefix=NONE +program_suffix=NONE +program_transform_name=s,x,x, +silent= +site= +srcdir= +verbose= +x_includes=NONE +x_libraries=NONE + +# Installation directory options. +# These are left unexpanded so users can "make install exec_prefix=/foo" +# and all the variables that are supposed to be based on exec_prefix +# by default will actually change. +# Use braces instead of parens because sh, perl, etc. also accept them. +# (The list follows the same order as the GNU Coding Standards.) +bindir='${exec_prefix}/bin' +sbindir='${exec_prefix}/sbin' +libexecdir='${exec_prefix}/libexec' +datarootdir='${prefix}/share' +datadir='${datarootdir}' +sysconfdir='${prefix}/etc' +sharedstatedir='${prefix}/com' +localstatedir='${prefix}/var' +includedir='${prefix}/include' +oldincludedir='/usr/include' +docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' +infodir='${datarootdir}/info' +htmldir='${docdir}' +dvidir='${docdir}' +pdfdir='${docdir}' +psdir='${docdir}' +libdir='${exec_prefix}/lib' +localedir='${datarootdir}/locale' +mandir='${datarootdir}/man' + +ac_prev= +ac_dashdash= +for ac_option +do + # If the previous option needs an argument, assign it. + if test -n "$ac_prev"; then + eval $ac_prev=\$ac_option + ac_prev= + continue + fi + + case $ac_option in + *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; + *) ac_optarg=yes ;; + esac + + # Accept the important Cygnus configure options, so we can diagnose typos. + + case $ac_dashdash$ac_option in + --) + ac_dashdash=yes ;; + + -bindir | --bindir | --bindi | --bind | --bin | --bi) + ac_prev=bindir ;; + -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) + bindir=$ac_optarg ;; + + -build | --build | --buil | --bui | --bu) + ac_prev=build_alias ;; + -build=* | --build=* | --buil=* | --bui=* | --bu=*) + build_alias=$ac_optarg ;; + + -cache-file | --cache-file | --cache-fil | --cache-fi \ + | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) + ac_prev=cache_file ;; + -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ + | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) + cache_file=$ac_optarg ;; + + --config-cache | -C) + cache_file=config.cache ;; + + -datadir | --datadir | --datadi | --datad) + ac_prev=datadir ;; + -datadir=* | --datadir=* | --datadi=* | --datad=*) + datadir=$ac_optarg ;; + + -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ + | --dataroo | --dataro | --datar) + ac_prev=datarootdir ;; + -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ + | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) + datarootdir=$ac_optarg ;; + + -disable-* | --disable-*) + ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=no ;; + + -docdir | --docdir | --docdi | --doc | --do) + ac_prev=docdir ;; + -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) + docdir=$ac_optarg ;; + + -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) + ac_prev=dvidir ;; + -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) + dvidir=$ac_optarg ;; + + -enable-* | --enable-*) + ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=\$ac_optarg ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ + | --exec | --exe | --ex) + ac_prev=exec_prefix ;; + -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ + | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ + | --exec=* | --exe=* | --ex=*) + exec_prefix=$ac_optarg ;; + + -gas | --gas | --ga | --g) + # Obsolete; use --with-gas. + with_gas=yes ;; + + -help | --help | --hel | --he | -h) + ac_init_help=long ;; + -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) + ac_init_help=recursive ;; + -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) + ac_init_help=short ;; + + -host | --host | --hos | --ho) + ac_prev=host_alias ;; + -host=* | --host=* | --hos=* | --ho=*) + host_alias=$ac_optarg ;; + + -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) + ac_prev=htmldir ;; + -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ + | --ht=*) + htmldir=$ac_optarg ;; + + -includedir | --includedir | --includedi | --included | --include \ + | --includ | --inclu | --incl | --inc) + ac_prev=includedir ;; + -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ + | --includ=* | --inclu=* | --incl=* | --inc=*) + includedir=$ac_optarg ;; + + -infodir | --infodir | --infodi | --infod | --info | --inf) + ac_prev=infodir ;; + -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) + infodir=$ac_optarg ;; + + -libdir | --libdir | --libdi | --libd) + ac_prev=libdir ;; + -libdir=* | --libdir=* | --libdi=* | --libd=*) + libdir=$ac_optarg ;; + + -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ + | --libexe | --libex | --libe) + ac_prev=libexecdir ;; + -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ + | --libexe=* | --libex=* | --libe=*) + libexecdir=$ac_optarg ;; + + -localedir | --localedir | --localedi | --localed | --locale) + ac_prev=localedir ;; + -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) + localedir=$ac_optarg ;; + + -localstatedir | --localstatedir | --localstatedi | --localstated \ + | --localstate | --localstat | --localsta | --localst | --locals) + ac_prev=localstatedir ;; + -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ + | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) + localstatedir=$ac_optarg ;; + + -mandir | --mandir | --mandi | --mand | --man | --ma | --m) + ac_prev=mandir ;; + -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) + mandir=$ac_optarg ;; + + -nfp | --nfp | --nf) + # Obsolete; use --without-fp. + with_fp=no ;; + + -no-create | --no-create | --no-creat | --no-crea | --no-cre \ + | --no-cr | --no-c | -n) + no_create=yes ;; + + -no-recursion | --no-recursion | --no-recursio | --no-recursi \ + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) + no_recursion=yes ;; + + -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ + | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ + | --oldin | --oldi | --old | --ol | --o) + ac_prev=oldincludedir ;; + -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ + | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ + | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) + oldincludedir=$ac_optarg ;; + + -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) + ac_prev=prefix ;; + -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) + prefix=$ac_optarg ;; + + -program-prefix | --program-prefix | --program-prefi | --program-pref \ + | --program-pre | --program-pr | --program-p) + ac_prev=program_prefix ;; + -program-prefix=* | --program-prefix=* | --program-prefi=* \ + | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) + program_prefix=$ac_optarg ;; + + -program-suffix | --program-suffix | --program-suffi | --program-suff \ + | --program-suf | --program-su | --program-s) + ac_prev=program_suffix ;; + -program-suffix=* | --program-suffix=* | --program-suffi=* \ + | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) + program_suffix=$ac_optarg ;; + + -program-transform-name | --program-transform-name \ + | --program-transform-nam | --program-transform-na \ + | --program-transform-n | --program-transform- \ + | --program-transform | --program-transfor \ + | --program-transfo | --program-transf \ + | --program-trans | --program-tran \ + | --progr-tra | --program-tr | --program-t) + ac_prev=program_transform_name ;; + -program-transform-name=* | --program-transform-name=* \ + | --program-transform-nam=* | --program-transform-na=* \ + | --program-transform-n=* | --program-transform-=* \ + | --program-transform=* | --program-transfor=* \ + | --program-transfo=* | --program-transf=* \ + | --program-trans=* | --program-tran=* \ + | --progr-tra=* | --program-tr=* | --program-t=*) + program_transform_name=$ac_optarg ;; + + -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) + ac_prev=pdfdir ;; + -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) + pdfdir=$ac_optarg ;; + + -psdir | --psdir | --psdi | --psd | --ps) + ac_prev=psdir ;; + -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) + psdir=$ac_optarg ;; + + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + silent=yes ;; + + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) + ac_prev=sbindir ;; + -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ + | --sbi=* | --sb=*) + sbindir=$ac_optarg ;; + + -sharedstatedir | --sharedstatedir | --sharedstatedi \ + | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ + | --sharedst | --shareds | --shared | --share | --shar \ + | --sha | --sh) + ac_prev=sharedstatedir ;; + -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ + | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ + | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ + | --sha=* | --sh=*) + sharedstatedir=$ac_optarg ;; + + -site | --site | --sit) + ac_prev=site ;; + -site=* | --site=* | --sit=*) + site=$ac_optarg ;; + + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) + ac_prev=srcdir ;; + -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) + srcdir=$ac_optarg ;; + + -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ + | --syscon | --sysco | --sysc | --sys | --sy) + ac_prev=sysconfdir ;; + -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ + | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) + sysconfdir=$ac_optarg ;; + + -target | --target | --targe | --targ | --tar | --ta | --t) + ac_prev=target_alias ;; + -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) + target_alias=$ac_optarg ;; + + -v | -verbose | --verbose | --verbos | --verbo | --verb) + verbose=yes ;; + + -version | --version | --versio | --versi | --vers | -V) + ac_init_version=: ;; + + -with-* | --with-*) + ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=\$ac_optarg ;; + + -without-* | --without-*) + ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=no ;; + + --x) + # Obsolete; use --with-x. + with_x=yes ;; + + -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ + | --x-incl | --x-inc | --x-in | --x-i) + ac_prev=x_includes ;; + -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ + | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) + x_includes=$ac_optarg ;; + + -x-libraries | --x-libraries | --x-librarie | --x-librari \ + | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) + ac_prev=x_libraries ;; + -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + + -*) as_fn_error "unrecognized option: \`$ac_option' +Try \`$0 --help' for more information." + ;; + + *=*) + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. + case $ac_envvar in #( + '' | [0-9]* | *[!_$as_cr_alnum]* ) + as_fn_error "invalid variable name: \`$ac_envvar'" ;; + esac + eval $ac_envvar=\$ac_optarg + export $ac_envvar ;; + + *) + # FIXME: should be removed in autoconf 3.0. + $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && + $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 + : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} + ;; + + esac +done + +if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` + as_fn_error "missing argument to $ac_option" +fi + +if test -n "$ac_unrecognized_opts"; then + case $enable_option_checking in + no) ;; + fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;; + *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; + esac +fi + +# Check all directory arguments for consistency. +for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ + datadir sysconfdir sharedstatedir localstatedir includedir \ + oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ + libdir localedir mandir +do + eval ac_val=\$$ac_var + # Remove trailing slashes. + case $ac_val in + */ ) + ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` + eval $ac_var=\$ac_val;; + esac + # Be sure to have absolute directory names. + case $ac_val in + [\\/$]* | ?:[\\/]* ) continue;; + NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + esac + as_fn_error "expected an absolute directory name for --$ac_var: $ac_val" +done + +# There might be people who depend on the old broken behavior: `$host' +# used to hold the argument of --host etc. +# FIXME: To remove some day. +build=$build_alias +host=$host_alias +target=$target_alias + +# FIXME: To remove some day. +if test "x$host_alias" != x; then + if test "x$build_alias" = x; then + cross_compiling=maybe + $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. + If a cross compiler is detected then cross compile mode will be used." >&2 + elif test "x$build_alias" != "x$host_alias"; then + cross_compiling=yes + fi +fi + +ac_tool_prefix= +test -n "$host_alias" && ac_tool_prefix=$host_alias- + +test "$silent" = yes && exec 6>/dev/null + + +ac_pwd=`pwd` && test -n "$ac_pwd" && +ac_ls_di=`ls -di .` && +ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || + as_fn_error "working directory cannot be determined" +test "X$ac_ls_di" = "X$ac_pwd_ls_di" || + as_fn_error "pwd does not report name of working directory" + + +# Find the source files, if location was not specified. +if test -z "$srcdir"; then + ac_srcdir_defaulted=yes + # Try the directory containing this script, then the parent directory. + ac_confdir=`$as_dirname -- "$as_myself" || +$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_myself" : 'X\(//\)[^/]' \| \ + X"$as_myself" : 'X\(//\)$' \| \ + X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_myself" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + srcdir=$ac_confdir + if test ! -r "$srcdir/$ac_unique_file"; then + srcdir=.. + fi +else + ac_srcdir_defaulted=no +fi +if test ! -r "$srcdir/$ac_unique_file"; then + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." + as_fn_error "cannot find sources ($ac_unique_file) in $srcdir" +fi +ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" +ac_abs_confdir=`( + cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg" + pwd)` +# When building in place, set srcdir=. +if test "$ac_abs_confdir" = "$ac_pwd"; then + srcdir=. +fi +# Remove unnecessary trailing slashes from srcdir. +# Double slashes in file names in object file debugging info +# mess up M-x gdb in Emacs. +case $srcdir in +*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; +esac +for ac_var in $ac_precious_vars; do + eval ac_env_${ac_var}_set=\${${ac_var}+set} + eval ac_env_${ac_var}_value=\$${ac_var} + eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} + eval ac_cv_env_${ac_var}_value=\$${ac_var} +done + +# +# Report the --help message. +# +if test "$ac_init_help" = "long"; then + # Omit some internal or obsolete options to make the list less imposing. + # This message is too long to be a string in the A/UX 3.1 sh. + cat <<_ACEOF +\`configure' configures mailcrypt 3.5.9 to adapt to many kinds of systems. + +Usage: $0 [OPTION]... [VAR=VALUE]... + +To assign environment variables (e.g., CC, CFLAGS...), specify them as +VAR=VALUE. See below for descriptions of some of the useful variables. + +Defaults for the options are specified in brackets. + +Configuration: + -h, --help display this help and exit + --help=short display options specific to this package + --help=recursive display the short help of all the included packages + -V, --version display version information and exit + -q, --quiet, --silent do not print \`checking...' messages + --cache-file=FILE cache test results in FILE [disabled] + -C, --config-cache alias for \`--cache-file=config.cache' + -n, --no-create do not create output files + --srcdir=DIR find the sources in DIR [configure dir or \`..'] + +Installation directories: + --prefix=PREFIX install architecture-independent files in PREFIX + [$ac_default_prefix] + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX + [PREFIX] + +By default, \`make install' will install all the files in +\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify +an installation prefix other than \`$ac_default_prefix' using \`--prefix', +for instance \`--prefix=\$HOME'. + +For better control, use the options below. + +Fine tuning of the installation directories: + --bindir=DIR user executables [EPREFIX/bin] + --sbindir=DIR system admin executables [EPREFIX/sbin] + --libexecdir=DIR program executables [EPREFIX/libexec] + --sysconfdir=DIR read-only single-machine data [PREFIX/etc] + --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] + --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --libdir=DIR object code libraries [EPREFIX/lib] + --includedir=DIR C header files [PREFIX/include] + --oldincludedir=DIR C header files for non-gcc [/usr/include] + --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] + --datadir=DIR read-only architecture-independent data [DATAROOTDIR] + --infodir=DIR info documentation [DATAROOTDIR/info] + --localedir=DIR locale-dependent data [DATAROOTDIR/locale] + --mandir=DIR man documentation [DATAROOTDIR/man] + --docdir=DIR documentation root [DATAROOTDIR/doc/mailcrypt] + --htmldir=DIR html documentation [DOCDIR] + --dvidir=DIR dvi documentation [DOCDIR] + --pdfdir=DIR pdf documentation [DOCDIR] + --psdir=DIR ps documentation [DOCDIR] +_ACEOF + + cat <<\_ACEOF +_ACEOF +fi + +if test -n "$ac_init_help"; then + case $ac_init_help in + short | recursive ) echo "Configuration of mailcrypt 3.5.9:";; + esac + cat <<\_ACEOF + +Report bugs to . +_ACEOF +ac_status=$? +fi + +if test "$ac_init_help" = "recursive"; then + # If there are subdirs, report their specific --help. + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue + test -d "$ac_dir" || + { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || + continue + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + cd "$ac_dir" || { ac_status=$?; continue; } + # Check for guested configure. + if test -f "$ac_srcdir/configure.gnu"; then + echo && + $SHELL "$ac_srcdir/configure.gnu" --help=recursive + elif test -f "$ac_srcdir/configure"; then + echo && + $SHELL "$ac_srcdir/configure" --help=recursive + else + $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + fi || ac_status=$? + cd "$ac_pwd" || { ac_status=$?; break; } + done +fi + +test -n "$ac_init_help" && exit $ac_status +if $ac_init_version; then + cat <<\_ACEOF +mailcrypt configure 3.5.9 +generated by GNU Autoconf 2.65 + +Copyright (C) 2009 Free Software Foundation, Inc. +This configure script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it. +_ACEOF + exit +fi + +## ------------------------ ## +## Autoconf initialization. ## +## ------------------------ ## +cat >config.log <<_ACEOF +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. + +It was created by mailcrypt $as_me 3.5.9, which was +generated by GNU Autoconf 2.65. Invocation command line was + + $ $0 $@ + +_ACEOF +exec 5>>config.log +{ +cat <<_ASUNAME +## --------- ## +## Platform. ## +## --------- ## + +hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` + +/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` +/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` +/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` +/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` + +_ASUNAME + +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + $as_echo "PATH: $as_dir" + done +IFS=$as_save_IFS + +} >&5 + +cat >&5 <<_ACEOF + + +## ----------- ## +## Core tests. ## +## ----------- ## + +_ACEOF + + +# Keep a trace of the command line. +# Strip out --no-create and --no-recursion so they do not pile up. +# Strip out --silent because we don't want to record it for future runs. +# Also quote any args containing shell meta-characters. +# Make two passes to allow for proper duplicate-argument suppression. +ac_configure_args= +ac_configure_args0= +ac_configure_args1= +ac_must_keep_next=false +for ac_pass in 1 2 +do + for ac_arg + do + case $ac_arg in + -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + continue ;; + *\'*) + ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + case $ac_pass in + 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; + 2) + as_fn_append ac_configure_args1 " '$ac_arg'" + if test $ac_must_keep_next = true; then + ac_must_keep_next=false # Got value, back to normal. + else + case $ac_arg in + *=* | --config-cache | -C | -disable-* | --disable-* \ + | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ + | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ + | -with-* | --with-* | -without-* | --without-* | --x) + case "$ac_configure_args0 " in + "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; + esac + ;; + -* ) ac_must_keep_next=true ;; + esac + fi + as_fn_append ac_configure_args " '$ac_arg'" + ;; + esac + done +done +{ ac_configure_args0=; unset ac_configure_args0;} +{ ac_configure_args1=; unset ac_configure_args1;} + +# When interrupted or exit'd, cleanup temporary files, and complete +# config.log. We remove comments because anyway the quotes in there +# would cause problems or look ugly. +# WARNING: Use '\'' to represent an apostrophe within the trap. +# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. +trap 'exit_status=$? + # Save into config.log some information that might help in debugging. + { + echo + + cat <<\_ASBOX +## ---------------- ## +## Cache variables. ## +## ---------------- ## +_ASBOX + echo + # The following way of writing the cache mishandles newlines in values, +( + for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + (set) 2>&1 | + case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + sed -n \ + "s/'\''/'\''\\\\'\'''\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" + ;; #( + *) + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) + echo + + cat <<\_ASBOX +## ----------------- ## +## Output variables. ## +## ----------------- ## +_ASBOX + echo + for ac_var in $ac_subst_vars + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + + if test -n "$ac_subst_files"; then + cat <<\_ASBOX +## ------------------- ## +## File substitutions. ## +## ------------------- ## +_ASBOX + echo + for ac_var in $ac_subst_files + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + fi + + if test -s confdefs.h; then + cat <<\_ASBOX +## ----------- ## +## confdefs.h. ## +## ----------- ## +_ASBOX + echo + cat confdefs.h + echo + fi + test "$ac_signal" != 0 && + $as_echo "$as_me: caught signal $ac_signal" + $as_echo "$as_me: exit $exit_status" + } >&5 + rm -f core *.core core.conftest.* && + rm -f -r conftest* confdefs* conf$$* $ac_clean_files && + exit $exit_status +' 0 +for ac_signal in 1 2 13 15; do + trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal +done +ac_signal=0 + +# confdefs.h avoids OS command line length limits that DEFS can exceed. +rm -f -r conftest* confdefs.h + +$as_echo "/* confdefs.h */" > confdefs.h + +# Predefined preprocessor variables. + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_NAME "$PACKAGE_NAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_TARNAME "$PACKAGE_TARNAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_VERSION "$PACKAGE_VERSION" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_STRING "$PACKAGE_STRING" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_URL "$PACKAGE_URL" +_ACEOF + + +# Let the site file select an alternate cache file if it wants to. +# Prefer an explicitly selected file to automatically selected ones. +ac_site_file1=NONE +ac_site_file2=NONE +if test -n "$CONFIG_SITE"; then + ac_site_file1=$CONFIG_SITE +elif test "x$prefix" != xNONE; then + ac_site_file1=$prefix/share/config.site + ac_site_file2=$prefix/etc/config.site +else + ac_site_file1=$ac_default_prefix/share/config.site + ac_site_file2=$ac_default_prefix/etc/config.site +fi +for ac_site_file in "$ac_site_file1" "$ac_site_file2" +do + test "x$ac_site_file" = xNONE && continue + if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 +$as_echo "$as_me: loading site script $ac_site_file" >&6;} + sed 's/^/| /' "$ac_site_file" >&5 + . "$ac_site_file" + fi +done + +if test -r "$cache_file"; then + # Some versions of bash will fail to source /dev/null (special files + # actually), so we avoid doing that. DJGPP emulates it as a regular file. + if test /dev/null != "$cache_file" && test -f "$cache_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 +$as_echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in + [\\/]* | ?:[\\/]* ) . "$cache_file";; + *) . "./$cache_file";; + esac + fi +else + { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 +$as_echo "$as_me: creating cache $cache_file" >&6;} + >$cache_file +fi + +# Check that the precious variables saved in the cache have kept the same +# value. +ac_cache_corrupted=false +for ac_var in $ac_precious_vars; do + eval ac_old_set=\$ac_cv_env_${ac_var}_set + eval ac_new_set=\$ac_env_${ac_var}_set + eval ac_old_val=\$ac_cv_env_${ac_var}_value + eval ac_new_val=\$ac_env_${ac_var}_value + case $ac_old_set,$ac_new_set in + set,) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; + *) + if test "x$ac_old_val" != "x$ac_new_val"; then + # differences in whitespace do not lead to failure. + ac_old_val_w=`echo x $ac_old_val` + ac_new_val_w=`echo x $ac_new_val` + if test "$ac_old_val_w" != "$ac_new_val_w"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 +$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} + ac_cache_corrupted=: + else + { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 +$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} + eval $ac_var=\$ac_old_val + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 +$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 +$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} + fi;; + esac + # Pass precious variables to config.status. + if test "$ac_new_set" = set; then + case $ac_new_val in + *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *) ac_arg=$ac_var=$ac_new_val ;; + esac + case " $ac_configure_args " in + *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. + *) as_fn_append ac_configure_args " '$ac_arg'" ;; + esac + fi +done +if $ac_cache_corrupted; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 +$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} + as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 +fi +## -------------------- ## +## Main body of script. ## +## -------------------- ## + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + + +# Checks for programs. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 +$as_echo_n "checking whether ln -s works... " >&6; } +LN_S=$as_ln_s +if test "$LN_S" = "ln -s"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 +$as_echo "no, using $LN_S" >&6; } +fi + +ac_aux_dir= +for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do + for ac_t in install-sh install.sh shtool; do + if test -f "$ac_dir/$ac_t"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/$ac_t -c" + break 2 + fi + done +done +if test -z "$ac_aux_dir"; then + as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 +fi + +# These three variables are undocumented and unsupported, +# and are intended to be withdrawn in a future Autoconf release. +# They can cause serious problems if a builder's source tree is in a directory +# whose full name contains unusual characters. +ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. +ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. +ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. + + +# Find a good install program. We prefer a C program (faster), +# so one script is as good as another. But avoid the broken or +# incompatible versions: +# SysV /etc/install, /usr/sbin/install +# SunOS /usr/etc/install +# IRIX /sbin/install +# AIX /bin/install +# AmigaOS /C/install, which installs bootblocks on floppy discs +# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag +# AFS /usr/afsws/bin/install, which mishandles nonexistent args +# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" +# OS/2's system install, which has a completely different semantic +# ./install, which can be erroneously created by make from ./install.sh. +# Reject install programs that cannot install multiple files. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 +$as_echo_n "checking for a BSD-compatible install... " >&6; } +if test -z "$INSTALL"; then +if test "${ac_cv_path_install+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + # Account for people who put trailing slashes in PATH elements. +case $as_dir/ in #(( + ./ | .// | /[cC]/* | \ + /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ + ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ + /usr/ucb/* ) ;; + *) + # OSF1 and SCO ODT 3.0 have their own names for install. + # Don't use installbsd from OSF since it installs stuff as root + # by default. + for ac_prog in ginstall scoinst install; do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then + if test $ac_prog = install && + grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # AIX install. It has an incompatible calling convention. + : + elif test $ac_prog = install && + grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # program-specific install script used by HP pwplus--don't use. + : + else + rm -rf conftest.one conftest.two conftest.dir + echo one > conftest.one + echo two > conftest.two + mkdir conftest.dir + if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && + test -s conftest.one && test -s conftest.two && + test -s conftest.dir/conftest.one && + test -s conftest.dir/conftest.two + then + ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" + break 3 + fi + fi + fi + done + done + ;; +esac + + done +IFS=$as_save_IFS + +rm -rf conftest.one conftest.two conftest.dir + +fi + if test "${ac_cv_path_install+set}" = set; then + INSTALL=$ac_cv_path_install + else + # As a last resort, use the slow shell script. Don't cache a + # value for INSTALL within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + INSTALL=$ac_install_sh + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 +$as_echo "$INSTALL" >&6; } + +# Use test -z because SunOS4 sh mishandles braces in ${var-val}. +# It thinks the first close brace ends the variable substitution. +test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' + +test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' + +test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + + +# Extract the first word of "install-info", so it can be a program name with args. +set dummy install-info; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_path_INSTALL_INFO+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + case $INSTALL_INFO in + [\\/]* | ?:[\\/]*) + ac_cv_path_INSTALL_INFO="$INSTALL_INFO" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_INSTALL_INFO="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +INSTALL_INFO=$ac_cv_path_INSTALL_INFO +if test -n "$INSTALL_INFO"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL_INFO" >&5 +$as_echo "$INSTALL_INFO" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +if test "$INSTALL_INFO x" = " x" +then + INSTALL_INFO=":" +fi + + +# Extract the first word of "basename", so it can be a program name with args. +set dummy basename; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_path_BASENAME+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + case $BASENAME in + [\\/]* | ?:[\\/]*) + ac_cv_path_BASENAME="$BASENAME" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_BASENAME="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + ;; +esac +fi +BASENAME=$ac_cv_path_BASENAME +if test -n "$BASENAME"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $BASENAME" >&5 +$as_echo "$BASENAME" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +if test "$BASENAME x" = " x" +then + as_fn_error "Cannot find program \"basename\" on PATH. +Hint: Try setting BASENAME environment variable or fixing PATH." "$LINENO" 5 +fi + +if test -n "$EMACS" && test "$EMACS" = "t" +then + unset EMACS +fi + +for ac_prog in emacs xemacs +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_EMACS+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$EMACS"; then + ac_cv_prog_EMACS="$EMACS" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_EMACS="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +EMACS=$ac_cv_prog_EMACS +if test -n "$EMACS"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $EMACS" >&5 +$as_echo "$EMACS" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$EMACS" && break +done + +if test "$EMACS x" = " x" +then + as_fn_error "'Cannot find emacs or xemacs on PATH. +Hint: Try setting EMACS environment variable or fixing PATH.'" "$LINENO" 5 +fi + +RESULT=`$BASENAME $EMACS` +if test "$RESULT" = xemacs +then + if $EMACS -batch -q --vanilla + then + EMACSFLAGS="--vanilla" # We're running Xemacs 20.x or higher + + else + EMACSFLAGS="-q -no-site-file" # Still running Xemacs 19.x + fi +else if test "$RESULT" = emacs +then + EMACSFLAGS="" + +fi +fi +EXTRA_SRCS="" +EXTRA_OBJS="" +echo -n checking for timer.el... +if $EMACS -batch -l timer 2>/dev/null +then + echo timer.el +else + echo no. I will install it for you. + EXTRA_SRCS="timer.el" + + EXTRA_OBJS="timer.elc" + +fi + +ac_config_files="$ac_config_files Makefile tests/Makefile tests/remailer/Makefile" + + +cat >confcache <<\_ACEOF +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs, see configure's option --config-cache. +# It is not useful on other systems. If it contains results you don't +# want to keep, you may remove or edit it. +# +# config.status only pays attention to the cache file if you give it +# the --recheck option to rerun configure. +# +# `ac_cv_env_foo' variables (set or unset) will be overridden when +# loading this file, other *unset* `ac_cv_foo' will be assigned the +# following values. + +_ACEOF + +# The following way of writing the cache mishandles newlines in values, +# but we know of no workaround that is simple, portable, and efficient. +# So, we kill variables containing newlines. +# Ultrix sh set writes to stderr and can't be redirected directly, +# and sets the high bit in the cache file unless we assign to the vars. +( + for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + + (set) 2>&1 | + case $as_nl`(ac_space=' '; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + # `set' does not quote correctly, so add quotes: double-quote + # substitution turns \\\\ into \\, and sed turns \\ into \. + sed -n \ + "s/'/'\\\\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" + ;; #( + *) + # `set' quotes correctly as required by POSIX, so do not add quotes. + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) | + sed ' + /^ac_cv_env_/b end + t clear + :clear + s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ + t end + s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ + :end' >>confcache +if diff "$cache_file" confcache >/dev/null 2>&1; then :; else + if test -w "$cache_file"; then + test "x$cache_file" != "x/dev/null" && + { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 +$as_echo "$as_me: updating cache $cache_file" >&6;} + cat confcache >$cache_file + else + { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 +$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} + fi +fi +rm -f confcache + +test "x$prefix" = xNONE && prefix=$ac_default_prefix +# Let make expand exec_prefix. +test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' + +# Transform confdefs.h into DEFS. +# Protect against shell expansion while executing Makefile rules. +# Protect against Makefile macro expansion. +# +# If the first sed substitution is executed (which looks for macros that +# take arguments), then branch to the quote section. Otherwise, +# look for a macro that doesn't take arguments. +ac_script=' +:mline +/\\$/{ + N + s,\\\n,, + b mline +} +t clear +:clear +s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g +t quote +s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g +t quote +b any +:quote +s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g +s/\[/\\&/g +s/\]/\\&/g +s/\$/$$/g +H +:any +${ + g + s/^\n// + s/\n/ /g + p +} +' +DEFS=`sed -n "$ac_script" confdefs.h` + + +ac_libobjs= +ac_ltlibobjs= +for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue + # 1. Remove the extension, and $U if already installed. + ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' + ac_i=`$as_echo "$ac_i" | sed "$ac_script"` + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR + # will be set to the directory where LIBOBJS objects are built. + as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" + as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' +done +LIBOBJS=$ac_libobjs + +LTLIBOBJS=$ac_ltlibobjs + + + +: ${CONFIG_STATUS=./config.status} +ac_write_fail=0 +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files $CONFIG_STATUS" +{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 +$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} +as_write_fail=0 +cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 +#! $SHELL +# Generated by $as_me. +# Run this file to recreate the current configuration. +# Compiler output produced by configure, useful for debugging +# configure, is in config.log if it exists. + +debug=false +ac_cs_recheck=false +ac_cs_silent=false + +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + +# as_fn_error ERROR [LINENO LOG_FD] +# --------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with status $?, using 1 if that was 0. +as_fn_error () +{ + as_status=$?; test $as_status -eq 0 && as_status=1 + if test "$3"; then + as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 + fi + $as_echo "$as_me: error: $1" >&2 + as_fn_exit $as_status +} # as_fn_error + + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -p'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -p' + fi +else + as_ln_s='cp -p' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" + + +} # as_fn_mkdir_p +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +if test -x / >/dev/null 2>&1; then + as_test_x='test -x' +else + if ls -dL / >/dev/null 2>&1; then + as_ls_L_option=L + else + as_ls_L_option= + fi + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then + test -d "$1/."; + else + case $1 in #( + -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +fi +as_executable_p=$as_test_x + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +exec 6>&1 +## ----------------------------------- ## +## Main body of $CONFIG_STATUS script. ## +## ----------------------------------- ## +_ASEOF +test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# Save the log message, to keep $0 and so on meaningful, and to +# report actual input values of CONFIG_FILES etc. instead of their +# values after options handling. +ac_log=" +This file was extended by mailcrypt $as_me 3.5.9, which was +generated by GNU Autoconf 2.65. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS + CONFIG_LINKS = $CONFIG_LINKS + CONFIG_COMMANDS = $CONFIG_COMMANDS + $ $0 $@ + +on `(hostname || uname -n) 2>/dev/null | sed 1q` +" + +_ACEOF + +case $ac_config_files in *" +"*) set x $ac_config_files; shift; ac_config_files=$*;; +esac + + + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# Files that config.status was made for. +config_files="$ac_config_files" + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +ac_cs_usage="\ +\`$as_me' instantiates files and other configuration actions +from templates according to the current configuration. Unless the files +and actions are specified as TAGs, all are instantiated by default. + +Usage: $0 [OPTION]... [TAG]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit + --config print configuration, then exit + -q, --quiet, --silent + do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + +Configuration files: +$config_files + +Report bugs to ." + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" +ac_cs_version="\\ +mailcrypt config.status 3.5.9 +configured by $0, generated by GNU Autoconf 2.65, + with options \\"\$ac_cs_config\\" + +Copyright (C) 2009 Free Software Foundation, Inc. +This config.status script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it." + +ac_pwd='$ac_pwd' +srcdir='$srcdir' +INSTALL='$INSTALL' +test -n "\$AWK" || AWK=awk +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# The default lists apply if the user does not specify any file. +ac_need_defaults=: +while test $# != 0 +do + case $1 in + --*=*) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` + ac_shift=: + ;; + *) + ac_option=$1 + ac_optarg=$2 + ac_shift=shift + ;; + esac + + case $ac_option in + # Handling of the options. + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) + $as_echo "$ac_cs_version"; exit ;; + --config | --confi | --conf | --con | --co | --c ) + $as_echo "$ac_cs_config"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_FILES " '$ac_optarg'" + ac_need_defaults=false;; + --he | --h | --help | --hel | -h ) + $as_echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. + -*) as_fn_error "unrecognized option: \`$1' +Try \`$0 --help' for more information." ;; + + *) as_fn_append ac_config_targets " $1" + ac_need_defaults=false ;; + + esac + shift +done + +ac_configure_extra_args= + +if $ac_cs_silent; then + exec 6>/dev/null + ac_configure_extra_args="$ac_configure_extra_args --silent" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +if \$ac_cs_recheck; then + set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion + shift + \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 + CONFIG_SHELL='$SHELL' + export CONFIG_SHELL + exec "\$@" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX +## Running $as_me. ## +_ASBOX + $as_echo "$ac_log" +} >&5 + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + +# Handling of arguments. +for ac_config_target in $ac_config_targets +do + case $ac_config_target in + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;; + "tests/remailer/Makefile") CONFIG_FILES="$CONFIG_FILES tests/remailer/Makefile" ;; + + *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + esac +done + + +# If the user did not use the arguments to specify the items to instantiate, +# then the envvar interface is used. Set only those that are not. +# We use the long form for the default assignment because of an extremely +# bizarre bug on SunOS 4.1.3. +if $ac_need_defaults; then + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files +fi + +# Have a temporary directory for convenience. Make it in the build tree +# simply because there is no reason against having it here, and in addition, +# creating and moving files from /tmp can sometimes cause problems. +# Hook for its removal unless debugging. +# Note that there is a small window in which the directory will not be cleaned: +# after its creation but before its name has been assigned to `$tmp'. +$debug || +{ + tmp= + trap 'exit_status=$? + { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status +' 0 + trap 'as_fn_exit 1' 1 2 13 15 +} +# Create a (secure) tmp directory for tmp files. + +{ + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && + test -n "$tmp" && test -d "$tmp" +} || +{ + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5 + +# Set up the scripts for CONFIG_FILES section. +# No need to generate them if there are no CONFIG_FILES. +# This happens for instance with `./config.status config.h'. +if test -n "$CONFIG_FILES"; then + + +ac_cr=`echo X | tr X '\015'` +# On cygwin, bash can eat \r inside `` if the user requested igncr. +# But we know of no other shell where ac_cr would be empty at this +# point, so we can use a bashism as a fallback. +if test "x$ac_cr" = x; then + eval ac_cr=\$\'\\r\' +fi +ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` +if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then + ac_cs_awk_cr='\r' +else + ac_cs_awk_cr=$ac_cr +fi + +echo 'BEGIN {' >"$tmp/subs1.awk" && +_ACEOF + + +{ + echo "cat >conf$$subs.awk <<_ACEOF" && + echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && + echo "_ACEOF" +} >conf$$subs.sh || + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 +ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` +ac_delim='%!_!# ' +for ac_last_try in false false false false false :; do + . ./conf$$subs.sh || + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 + + ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` + if test $ac_delim_n = $ac_delim_num; then + break + elif $ac_last_try; then + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done +rm -f conf$$subs.sh + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +cat >>"\$tmp/subs1.awk" <<\\_ACAWK && +_ACEOF +sed -n ' +h +s/^/S["/; s/!.*/"]=/ +p +g +s/^[^!]*!// +:repl +t repl +s/'"$ac_delim"'$// +t delim +:nl +h +s/\(.\{148\}\)..*/\1/ +t more1 +s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ +p +n +b repl +:more1 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t nl +:delim +h +s/\(.\{148\}\)..*/\1/ +t more2 +s/["\\]/\\&/g; s/^/"/; s/$/"/ +p +b +:more2 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t delim +' >$CONFIG_STATUS || ac_write_fail=1 +rm -f conf$$subs.awk +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +_ACAWK +cat >>"\$tmp/subs1.awk" <<_ACAWK && + for (key in S) S_is_set[key] = 1 + FS = "" + +} +{ + line = $ 0 + nfields = split(line, field, "@") + substed = 0 + len = length(field[1]) + for (i = 2; i < nfields; i++) { + key = field[i] + keylen = length(key) + if (S_is_set[key]) { + value = S[key] + line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) + len += length(value) + length(field[++i]) + substed = 1 + } else + len += 1 + keylen + } + + print line +} + +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then + sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" +else + cat +fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ + || as_fn_error "could not setup config files machinery" "$LINENO" 5 +_ACEOF + +# VPATH may cause trouble with some makes, so we remove $(srcdir), +# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and +# trailing colons and then remove the whole line if VPATH becomes empty +# (actually we leave an empty line to preserve line numbers). +if test "x$srcdir" = x.; then + ac_vpsub='/^[ ]*VPATH[ ]*=/{ +s/:*\$(srcdir):*/:/ +s/:*\${srcdir}:*/:/ +s/:*@srcdir@:*/:/ +s/^\([^=]*=[ ]*\):*/\1/ +s/:*$// +s/^[^=]*=[ ]*$// +}' +fi + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +fi # test -n "$CONFIG_FILES" + + +eval set X " :F $CONFIG_FILES " +shift +for ac_tag +do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; + :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac + ac_save_IFS=$IFS + IFS=: + set x $ac_tag + IFS=$ac_save_IFS + shift + ac_file=$1 + shift + + case $ac_mode in + :L) ac_source=$1;; + :[FH]) + ac_file_inputs= + for ac_f + do + case $ac_f in + -) ac_f="$tmp/stdin";; + *) # Look for the file first in the build tree, then in the source tree + # (if the path is not absolute). The absolute path cannot be DOS-style, + # because $ac_f cannot contain `:'. + test -f "$ac_f" || + case $ac_f in + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || + as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;; + esac + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac + as_fn_append ac_file_inputs " '$ac_f'" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + configure_input='Generated from '` + $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' + `' by configure.' + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" + { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 +$as_echo "$as_me: creating $ac_file" >&6;} + fi + # Neutralize special characters interpreted by sed in replacement strings. + case $configure_input in #( + *\&* | *\|* | *\\* ) + ac_sed_conf_input=`$as_echo "$configure_input" | + sed 's/[\\\\&|]/\\\\&/g'`;; #( + *) ac_sed_conf_input=$configure_input;; + esac + + case $ac_tag in + *:-:* | *:-) cat >"$tmp/stdin" \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; + esac + ;; + esac + + ac_dir=`$as_dirname -- "$ac_file" || +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir="$ac_dir"; as_fn_mkdir_p + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + + case $ac_mode in + :F) + # + # CONFIG_FILE + # + + case $INSTALL in + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# If the template does not know about datarootdir, expand it. +# FIXME: This hack should be removed a few years after 2.60. +ac_datarootdir_hack=; ac_datarootdir_seen= +ac_sed_dataroot=' +/datarootdir/ { + p + q +} +/@datadir@/p +/@docdir@/p +/@infodir@/p +/@localedir@/p +/@mandir@/p' +case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in +*datarootdir*) ac_datarootdir_seen=yes;; +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + ac_datarootdir_hack=' + s&@datadir@&$datadir&g + s&@docdir@&$docdir&g + s&@infodir@&$infodir&g + s&@localedir@&$localedir&g + s&@mandir@&$mandir&g + s&\\\${datarootdir}&$datarootdir&g' ;; +esac +_ACEOF + +# Neutralize VPATH when `$srcdir' = `.'. +# Shell code in configure.ac might set extrasub. +# FIXME: do we really want to maintain this feature? +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_sed_extra="$ac_vpsub +$extrasub +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +:t +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +s|@configure_input@|$ac_sed_conf_input|;t t +s&@top_builddir@&$ac_top_builddir_sub&;t t +s&@top_build_prefix@&$ac_top_build_prefix&;t t +s&@srcdir@&$ac_srcdir&;t t +s&@abs_srcdir@&$ac_abs_srcdir&;t t +s&@top_srcdir@&$ac_top_srcdir&;t t +s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t +s&@builddir@&$ac_builddir&;t t +s&@abs_builddir@&$ac_abs_builddir&;t t +s&@abs_top_builddir@&$ac_abs_top_builddir&;t t +s&@INSTALL@&$ac_INSTALL&;t t +$ac_datarootdir_hack +" +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 + +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined." >&5 +$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined." >&2;} + + rm -f "$tmp/stdin" + case $ac_file in + -) cat "$tmp/out" && rm -f "$tmp/out";; + *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; + esac \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 + ;; + + + + esac + +done # for ac_tag + + +as_fn_exit 0 +_ACEOF +ac_clean_files=$ac_clean_files_save + +test $ac_write_fail = 0 || + as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5 + + +# configure is writing to config.log, and then calls config.status. +# config.status does its own redirection, appending to config.log. +# Unfortunately, on DOS this fails, as config.log is still kept open +# by configure, so config.status won't be able to write to it; its +# output is simply discarded. So we exec the FD to /dev/null, +# effectively closing config.log, so it can be properly (re)opened and +# appended to by config.status. When coming back to configure, we +# need to make the FD available again. +if test "$no_create" != yes; then + ac_cs_success=: + ac_config_status_args= + test "$silent" = yes && + ac_config_status_args="$ac_config_status_args --quiet" + exec 5>/dev/null + $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false + exec 5>>config.log + # Use ||, not &&, to avoid exiting from the if with $? = 1, which + # would make configure fail if this is the last instruction. + $ac_cs_success || as_fn_exit $? +fi +if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 +$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} +fi + --- mailcrypt-3.5.9.orig/configure.in +++ mailcrypt-3.5.9/configure.in @@ -1,7 +1,11 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(mailcrypt.el) - -AC_PROG_INSTALL() +AC_PREREQ(2.64) +AC_INIT([mailcrypt], [3.5.9], [http://mailcrypt.sourceforge.net/bugs.html]) +AC_CONFIG_SRCDIR([mailcrypt.el]) + +# Checks for programs. +AC_PROG_LN_S +AC_PROG_INSTALL AC_PATH_PROG(INSTALL_INFO, install-info) if test "$INSTALL_INFO x" = " x" @@ -13,8 +17,8 @@ AC_SUBST(INSTALL_INFO) AC_PATH_PROG(BASENAME, basename) if test "$BASENAME x" = " x" then - AC_MSG_ERROR(Cannot find program "basename" on your patch. -Hint: Try setting BASENAME environment variable or fixing your PATH.) + AC_MSG_ERROR(Cannot find program "basename" on PATH. +Hint: Try setting BASENAME environment variable or fixing PATH.) fi if test -n "$EMACS" && test "$EMACS" = "t" @@ -22,9 +26,12 @@ then unset EMACS fi -AC_CHECK_PROGS(EMACS, emacs xemacs,dnl - AC_MSG_ERROR('Cannot find emacs in your path. -Hint: Try setting EMACS environment variable or fixing your PATH.')) +AC_CHECK_PROGS(EMACS, emacs xemacs) +if test "$EMACS x" = " x" +then + AC_MSG_ERROR('Cannot find emacs or xemacs on PATH. +Hint: Try setting EMACS environment variable or fixing PATH.') +fi RESULT=`$BASENAME $EMACS` if test "$RESULT" = xemacs @@ -56,4 +63,8 @@ else AC_SUBST(EXTRA_OBJS) fi -AC_OUTPUT(Makefile tests/Makefile tests/remailer/Makefile) +AC_CONFIG_FILES([Makefile + tests/Makefile + tests/remailer/Makefile]) + +AC_OUTPUT --- mailcrypt-3.5.9.orig/ChangeLog +++ mailcrypt-3.5.9/ChangeLog @@ -1,3 +1,8 @@ +2010-04-14 Barak A. Pearlmutter + + * configure.in: minor updates, and make emacs-not-found error out + as intended. + 2010-02-22 Jari Aalto * mc-toplev.el (mc-rmail-decrypt-message): preserve `rmail-buffer' debian/patches/series0000644000000000000000000000001712047427344012037 0ustar debian-changes debian/source.lintian-overrides0000664000000000000000000000015611754201324014051 0ustar # This is the ePerl source for templates. mailcrypt source: stray-translated-debconf-templates templates.in debian/config.in0000664000000000000000000000106112047425202010761 0ustar #include "variables" #! /bin/bash # # <% config %> script for <:=${PACKAGE}:> # <:=@COPYRIGHT:>// set -e set -o posix source <:=${CONFMODULE}:> db_version 2.0 case "${1}" in configure|reconfigure) db_input medium <:=$PACKAGE:>/default || true db_go || true;; *) echo >&2 "${0##*/}/<:=${PACKAGE}:>:" \ "Unknown argument: \"${1}\"." exit 1 esac exit 0 <: # arch-tag: 0c222277-b851-436c-912e-b5c8e4468867 # # local variables: # mode: shell-script # coding: utf-8 # ispell-local-dictionary: "american" # ispell-check-comments: exclusive # end: :>// debian/watch0000664000000000000000000000007211754201324010217 0ustar version=3 http://sf.net/mailcrypt/mailcrypt-(.*)\.tar\.gz debian/changelog0000664000000000000000000006255012047426430011054 0ustar mailcrypt (3.5.9-6) unstable; urgency=low * Allow emacs24 (closes: #679944, #685179) -- Barak A. Pearlmutter Sat, 10 Nov 2012 10:22:49 +0000 mailcrypt (3.5.9-5) unstable; urgency=low * Acknowledge and merge translation-related NMU. Thanks Christian Perrier! * Bump standards version * Silence lintian tag description-synopsis-starts-with-article * Single-debian-patch source option (closes: #643211) * Silence lintian tag maintainer-script-without-set-e -- Barak A. Pearlmutter Thu, 29 Mar 2012 23:12:12 +0100 mailcrypt (3.5.9-4.1) unstable; urgency=low * Non-maintainer upload. * Fix pending l10n issues. Debconf translations: - Danish (Joe Hansen). Closes: #633472 - Polish (Michał Kułach). Closes: #659022 -- Christian Perrier Thu, 16 Feb 2012 07:51:29 +0100 mailcrypt (3.5.9-4) unstable; urgency=low * bump standards version (debian/control) * Debconf translation: - Japanese (Nobuhiro Iwamatsu). Closes: #605341 -- Barak A. Pearlmutter Sat, 09 Apr 2011 19:31:11 +0100 mailcrypt (3.5.9-3) unstable; urgency=low * Merge upstream changes * Make build work without emacs (closes: 577380) * Perform updates deferred until upstream release -- Barak A. Pearlmutter Wed, 14 Apr 2010 12:57:48 +0100 mailcrypt (3.5.9-2) unstable; urgency=low * Merge upstream changes - updates to autoconf configuration files * regenerate actual configure script (not included upstream) * elaborate source locations in debian/README.Debian, * standardise repo info in debian/control * Switch to dpkg-source 3.0 (quilt) format -- Barak A. Pearlmutter Thu, 25 Mar 2010 18:56:38 +0000 mailcrypt (3.5.9-1) unstable; urgency=low * New upstream release * Support uscan * Make Barak A. Pearlmutter comaintainer dejure instead of just defacto - only practical difference: bug reports via CC + QA, and lower integration hassle -- Barak A. Pearlmutter Thu, 11 Mar 2010 14:15:08 +0000 mailcrypt (3.5.8+CVS.2010.03.08-0.1) unstable; urgency=low * Debian packaging tweaks * New upstream version - merge in bug fixes that were pushed upstream -- Barak A. Pearlmutter Mon, 08 Mar 2010 18:15:29 +0000 mailcrypt (3.5.8+CVS.2010.02.23-0.1) unstable; urgency=low * Non-maintainer upload. * Fix VCS fields (debian/changelog) * New upstream version - fix for emacs 23.1 rmail-cease-edit nulling buffer-local rmail-buffer -- Barak A. Pearlmutter Tue, 23 Feb 2010 16:11:12 +0000 mailcrypt (3.5.8+CVS.2010.02.14-0.1) unstable; urgency=low * Non-maintainer upload. - repo with changes in debian/control Vcs field * Merge ongoing changes in upstream CVS - upstream merge of our patch fixing makeinfo error (mailcrypt.texi) - fixes build error with recent .texi tools (Makefile.in) addressing http://sourceforge.net/tracker/?func=detail&aid=2778193&group_id=397&atid=100397 - remove gratuitous differences with latest upstream Makefile.in - adds autoloads comments (*.el) addressing http://sourceforge.net/tracker/?func=detail&aid=1080283&group_id=397&atid=100397 and allowing (in principle) auto-generation of Debian emacsen autoloads * Emacs23 issues - Patch from Toni Schmidbauer (closes: #545892) - Switch rmail-convert-file to rmail-convert-file-maybe (mc-toplevel.el) - Fix test for Emacs >= 20.3 (debian/mailcrypt-init.el) - Work around rmail-cease-edit setting rmail-buffer to nil breaking mc-rmail-decrypt-message (!) * Insert missing quote in mc-scheme-pgp{50,65} to fix mc-*-verify-signature * Describe import into GIT in debian/README.Debian * Debconf translation: - Finnish (Esko Arajärvi). Closes: #549709 * Address lintian and build issues - Do not include *.texi in binary package or register it with doc-base - Add dependency on recent-enough dpkg or install-info - Stop calling install-docs in installation scripts - Stop calling install-info in installation scripts - Stop calling install-info in debian/rules (!) - Regenerate debian/rules from debian/rules.in - Get rid of ...//... in debian/rules as it bugs me (and is error prone) - Flush lintian warning about ignored make distclean error - rev deb std -- Barak A. Pearlmutter Thu, 18 Feb 2010 00:33:52 +0000 mailcrypt (3.5.8+CVS.2005.04.29.1-12.1) unstable; urgency=low * Non-maintainer upload. * Build-Depend on install-info and don't call install-info with an absolute path. Closes: #545665 * Ignore rm errors to prevent FTBFS. Closes: #545665 * Depend on "dpkg (>= 1.15.4) | install-info" as install-info is no longer provided by dpkg * Move "Homepage:" out of the package description * Use "Editors" for the doc-base section, not "Apps/Editors" * No longer ignore errors from make in the clean target * Drop ePerl crap from the lintian overrides file * Fix pending l10n issues. Debconf translations: - Swedish (Martin Bagge). Closes: #504032 - Spanish (Francisco Javier Cuadrado). Closes: #533142 - Russian (Yuri Kozlov). Closes: #543190 - Vietnamese (Clytie Siddall). Closes: #548990 -- Christian Perrier Sun, 04 Oct 2009 09:28:36 +0200 mailcrypt (3.5.8+CVS.2005.04.29.1-12) unstable; urgency=low * po/pt.po: Reencode; thanks to Christian Perrier. (Closes: #436070) * control (Depends): Change "emacs21 | emacs22 | emacs-snapshot" to "emacs22 | emacs21 | emacs-snapshot" in order to prefer "emacs22" to "emacs21" ; thanks to Tatsuya Kinoshita. (Closes: #435902) -- Davide G. M. Salvetti Tue, 07 Aug 2007 23:04:19 +0200 mailcrypt (3.5.8+CVS.2005.04.29.1-11) unstable; urgency=low * install.in (do_install): State the log file location; thanks to Romain Francoise. (See: #408227) * po/nl.po: New file; thanks to Bart Cornelis. (Closes: #415520) * po/pt.po: New file; thanks to Jacobo Tarrio. (Closes: #430992) * rules.in (build-package): Added dependency on the "clean" target. * bug.script.in (FLAVORS), control (Depends), install.in, remove.in: Added emacs22. (Closes: #425206, #432144, #432393) * config.in (configure|reconfigure): Do not check for custom autoactivation code anymore. Consequently remove "mailcrypt/alreadydefault" debconf call. * templates.in (mailcrypt/alreadydefault): Remove "mailcrypt/alreadydefault" note. * cs.po, de.po, es.po, fr.po, it.po, nl.po, templates.pot: Consequently updated. (Closes: #388927) * copyright.in, COPYRIGHT, variables: Update copyright. * config.in, install.in, postinst.in, postrm.in, prerm.in, remove.in: Linting. * postinst.in, postrm.in, prerm.in: Check script arguments before calling actions. * variables (DINSTALL, DREMOVE): Check for "install-docs" in "${PATH}" rather than by absolute location. * install.in (do_install): Remove an extra space character in the 'setting-up' message. -- Davide G. M. Salvetti Mon, 30 Jul 2007 23:54:25 +0200 mailcrypt (3.5.8+CVS.2005.04.29.1-10.1) unstable; urgency=low * Non-maintainer upload. * Fix package for compatibility with emacs22, using a patch provided by Kirill A. Korinskiy. (Closes: #432144) -- Roland Mas Tue, 31 Jul 2007 22:47:43 +0200 mailcrypt (3.5.8+CVS.2005.04.29.1-10) unstable; urgency=low * po/cs.po: New file; thanks to Martin Šín. (Closes: #382926) * po/de.po: Updated file; thanks to Helge Kreutzmann. (Closes: #407728) -- Davide G. M. Salvetti Sun, 28 Jan 2007 12:08:23 +0100 mailcrypt (3.5.8+CVS.2005.04.29.1-9) unstable; urgency=medium * Urgency medium: fixes an important bug. * prerm.in: Fixed typo; thanks to Yavor Doganov. (Closes: #374789) -- Davide G. M. Salvetti Wed, 21 Jun 2006 14:20:24 +0200 mailcrypt (3.5.8+CVS.2005.04.29.1-8) unstable; urgency=low * rules.in (po-debconf): Refactored. (updatepo): Removed. (clean): Updated accordingly. (debian/po/templates.pot): Renamed from "debian/po/updatepo". (debian/templates.merged): Removed. (%.dcobj): New. (DCSOURCES): New. (DFILES): Removed "debian/templates.merged"; automatically add merged templates, with extension ".dcobj". (binary-indep): Updated accordingly. * postinst.in, postrm.in, prerm.in: Fixed typo; exit 1 if called with unknown argument; thanks to Justin Pryzby. * prerm.in (failed-upgrade): Was backwards, fixed; thanks to Justin Pryzby. * po/fr.po: New file; thanks to Steve Petruzzello. (Closes: #374420) -- Davide G. M. Salvetti Mon, 19 Jun 2006 15:39:13 +0200 mailcrypt (3.5.8+CVS.2005.04.29.1-7) unstable; urgency=low * control (Description): URL to upstream added. * docbase.in (texinfo/Files): Typo fixed. * templates.in: Renamed from "template". * templates.in (mailcrypt/default): Rephrased to avoid making assumptions about interfaces in templates; also mention "~/.emacs.el" as a possible Emacs init file. * de.po, it.po, es.po, templates.pot: Updated accordingly. * install.in (do_install): Typo fixed; thanks to Remi Vanicat. (Closes: #371104) * lintian.in: New file; <:=${ecode}:>/install/<:=${PACKAGE}:> is a maintainer script. * rules.in: Install it. -- Davide G. M. Salvetti Wed, 7 Jun 2006 22:19:59 +0200 mailcrypt (3.5.8+CVS.2005.04.29.1-6) unstable; urgency=low * templates (_Description): Fixed typo. * de.po, es.po, it.po, templates.pot: Updated accordingly. -- Davide G. M. Salvetti Tue, 6 Jun 2006 14:25:10 +0200 mailcrypt (3.5.8+CVS.2005.04.29.1-5) unstable; urgency=low * control (Standard-Versions): Upgraded to 3.7.2. * install.in (do_install): Be careful to add Elisp sources' directory to `load-path' after the byte-compiled directory; thanks to Jim Van Zandt. (Closes: #352570) * rules.in (fixperms): New variable. The command used to canonicalize the whole tree permissions. (clean): Use "$(fixperms)" to canonicalize permissions after cleaning. * rules.in (%): Cater for ePerl "*.in" sources in subdirectories of "debian". * rules.in (%): Declare ${DEBIAN_DIR}. * variables: Use it, to include "COPYRIGHT" in ePerl auto-generated files located in a "debian/" subdirectory. * rules.in (checkdir, checkroot): Should not be implemented by means of phony targets, otherwise targets which depend on them will never be up-to-date. (build, clean, binary-indep, binary-arch): Change accordingly. * control (Build-Depends-Indep): Added "po-debconf". * templates: Renamed from template.in. Adapted to po-debconf. * po: New subdirectory. Translations. * po/POTFILES.in: New file. Automatically managed by po-debconf. * po/de.po, po/es.po, po/it.po, po/pt_BR.po: New files. Localized translations for templates, moved from templates. * po/templates.pot: New file. Automatically managed by po-debconf. * rules.in (DFILES, updatepo, po/updatepo, templates.merged, binary-indep): Cater for po-debconf. -- Davide G. M. Salvetti Sun, 4 Jun 2006 01:44:40 +0200 mailcrypt (3.5.8+CVS.2005.04.29.1-4) unstable; urgency=low * control (Standard-Versions): Upgraded to 3.6.2. (Depends): Modified the dependency on "debconf" to "debconf | debconf-2.0" in order to allow the transition to cdebconf. (Closes: #332016) -- Davide G. M. Salvetti Mon, 10 Oct 2005 17:49:17 +0200 mailcrypt (3.5.8+CVS.2005.04.29.1-3) unstable; urgency=medium * Urgency medium: Fixes an important bug. * install: Ensure that "<:=${lisp}:>/configure" is up-to-date WRT "<:=${lisp}:>/configure.in", so that it does not need to be remade, something which would depend on autoconf; many thanks to Daniel Kahn Gillmor. (Closes: #328468) -- Davide G. M. Salvetti Thu, 22 Sep 2005 15:57:47 +0200 mailcrypt (3.5.8+CVS.2005.04.29.1-2) unstable; urgency=medium * Urgency medium: Fixes a serious bug. * General overhaul of the debian directory. * bug.presubj, bug.script: New files. * control (Depends): Added "make". * install (do_install): Use "make". * preinst: Deleted. * rules.in (build): Ensure that "./configure" is executable; thanks to Andreas Jochens. (Closes: #328059) -- Davide G. M. Salvetti Wed, 14 Sep 2005 19:53:06 +0200 mailcrypt (3.5.8+CVS.2005.04.29.1-1) unstable; urgency=medium * New CVS upstream source. * Urgency medium: Fixes a serious bug. * ../Makefile.in (mailcrypt_toc.html): Added an option to "texi2html" in order to avoid a subdirectory for the generated HTML files; thanks to Matt Kraai. (Closes: #323730) (distclean): Also remove "tests/Makefile", "tests/remailer/Makefile", and "autom4te.cache/". -- Davide G. M. Salvetti Sun, 11 Sep 2005 00:19:49 +0200 mailcrypt (3.5.8-3) unstable; urgency=low * control (Depends), install, remove: Added emacs-snapshot as a supported Emacs flavor. * control (Standard-Versions): Upgraded to 3.6.1. -- Davide G. M. Salvetti Fri, 22 Apr 2005 18:35:52 +0200 mailcrypt (3.5.8-2) unstable; urgency=high * ../mc-gpg.el: Patch from upstream CVS; thanks to James Troup. (Closes: #234954, #117204) * control (Depends): Removed emacs20; thanks to Martin Michlmayr. (Closes: #232769) -- Davide G. M. Salvetti Sat, 28 Feb 2004 12:11:35 +0100 mailcrypt (3.5.8-1) unstable; urgency=medium * New upstream release. (Closes: #161691) * control (Depends): Removed mule2. (Standards-Version): Upgraded to 3.5.7. * postinst (do_link): Removed. * prerm (undo_link): Removed. -- Davide G. M. Salvetti Fri, 27 Sep 2002 15:34:07 +0200 mailcrypt (3.5.7-1) unstable; urgency=medium * New upstream release. * control (Description): Added Mew. (Section): mail. * copyright: Added Brian Warner as appropriate. * docbase (Abstract): Added Mew. (Author): Added Brian Warner. * mailcrypt-init.el: Added Mew's hooks. * rules (clean): Do not remove mailcrypt.info* and mailcrypt.dvi any more. -- Davide G. M. Salvetti Sun, 1 Sep 2002 17:25:24 +0200 mailcrypt (3.5.6.20010925-2) unstable; urgency=high * COPYRIGHT: Updated. * control: Build-Depends -> Build-Depends-Indep. * mailcrypt-init.el: Make GNU Privacy Guard the default encryption scheme. (Closes: #142447) -- Davide G. M. Salvetti Fri, 12 Apr 2002 00:28:55 +0200 mailcrypt (3.5.6.20010925-1) unstable; urgency=low * control (Standards-Version): Updated to 3.5.6. * mc-gpg-utf-8.patch: Removed (added upstream). * rules (build): Remove mc-gpg-utf-8.patch (added upstream). (clean): Remove mc-gpg-utf-8.patch (added upstream). * templates: Added Spanish; thanks to Gorka Olaizola. -- Davide G. M. Salvetti Fri, 19 Oct 2001 11:48:47 +0200 mailcrypt (3.5.6-3) unstable; urgency=low * control (Standards-Version): Updated to 3.5.5. * mc-gpg-utf-8.patch: New file; thanks to Francesco Potortì. * remove: Changed `|| true' after `rmdir' to `test -d && rmdir'. * rules (build): Add mc-gpg-utf-8.patch. (clean): Remove mc-gpg-utf-8.patch. (Closes: #100582) * templates (alreadydefault): Type changed from `text' to `note'. (Closes: #106340) -- Davide G. M. Salvetti Sat, 28 Jul 2001 16:15:53 +0200 mailcrypt (3.5.6-2) unstable; urgency=low * remove: Added `|| true' after `rmdir'; thanks to Timshel Knoll. (Closes: #101068) -- Davide G. M. Salvetti Sat, 16 Jun 2001 13:45:49 +0200 mailcrypt (3.5.6-1) unstable; urgency=low * New upstream release. -- Davide G. M. Salvetti Fri, 25 May 2001 17:09:43 +0200 mailcrypt (3.5.5.20010506-2) unstable; urgency=high * rules (build): Removed debian/rules from deps. (debian/rules): Removed debian/system.variables from deps. (Closes: #97579) -- Davide G. M. Salvetti Wed, 16 May 2001 14:47:08 +0200 mailcrypt (3.5.5.20010506-1) unstable; urgency=low * New upstream (CVS) version. (Closes: #96840) * variables (DOCS): Added WARNINGS file. -- Davide G. M. Salvetti Wed, 9 May 2001 14:08:06 +0200 mailcrypt (3.5.5-11) unstable; urgency=low * control (Section): non-US. * templates: Added German; thanks to Joerg Rieger. (Closes: #86785) -- Davide G. M. Salvetti Sat, 5 May 2001 15:49:56 +0200 mailcrypt (3.5.5-10) unstable; urgency=medium * control (Depends): removed emacs19, as it's no more in unstable; thanks to Martin Michlmayr. (Closes: #82680, #82691) * control (Build-Depends): added eperl. * install: Removed emacs19. * remove: Added historic cleanup code. * remove: Removed emacs19. * rules (debian/rules): added. * rules (build): added debian/rules. * ../gpgwrap.pl.in: removed, as it's no more part of Mailcrypt. * ../mailcrypt.el: reverted to the upstream version. -- Davide G. M. Salvetti Wed, 7 Feb 2001 17:58:41 +0100 mailcrypt (3.5.5-9) unstable; urgency=low * config: Enabled $1" detection case again: debconf has been fixed in the meanwhile. * control (Section): non-US/mail. * control (Build-Depends): added texinfo, texi2html. * postinst: Removed no more needed beauty stuff. -- Davide G. M. Salvetti Wed, 17 Jan 2001 17:05:04 +0100 mailcrypt (3.5.5-8) unstable; urgency=low * COPYRIGHT: Updated. * control: Added emacs21 dependence. * install: Added support for emacs21. * remove: Added support for emacs21. -- Davide G. M. Salvetti Thu, 11 Jan 2001 01:44:47 +0100 mailcrypt (3.5.5-7) unstable; urgency=low * README: Obsolete information removed. * control: Standards-Version: 3.2.1. * control: Dependence on pgp or pgp5i removed, as gnupg is fully supported. * control: Description: updated. * control: Section: mail, contrib --> non-US. * docbase: Updated. * rules: Added -isp to dpkg-gencontrol. * templates: Wording improved. * templates: Localized in Italian. -- Davide G. M. Salvetti Sun, 29 Oct 2000 01:16:14 +0200 mailcrypt (3.5.5-6) frozen unstable; urgency=medium * control: Added |pgp5i dependence. -- Davide G. M. Salvetti Thu, 20 Jan 2000 15:52:56 +0100 mailcrypt (3.5.5-5) unstable; urgency=low * control: Standards-Version: 3.0.0. * remove: Fixed typo. (Closes: #52498) -- Davide G. M. Salvetti Sun, 12 Dec 1999 23:10:45 +0100 mailcrypt (3.5.5-4) unstable; urgency=low * Debconf support updated. -- Davide G. M. Salvetti Sun, 31 Oct 1999 22:54:14 +0100 mailcrypt (3.5.5-3) unstable; urgency=low * control: Added mule2 support. * install: Added mule2 support. * remove: Added mule2 support. * rules: Rule to update system.variables added. -- Davide G. M. Salvetti Fri, 22 Oct 1999 21:41:39 +0200 mailcrypt (3.5.5-2) unstable; urgency=low * variables: Split generic stuff to system.variables. * postinst,prerm: Fixed typo. (Closes: #47418) -- Davide G. M. Salvetti Thu, 14 Oct 1999 21:09:56 +0200 mailcrypt (3.5.5-1) unstable; urgency=low * New upstream version. (Closes: #47297) * preinst: New file. * templates: Fixed typo. (Closes: #47306) * variables: Added texi2html.ext to $DOCS. -- Davide G. M. Salvetti Wed, 13 Oct 1999 16:08:27 +0200 mailcrypt (3.5.4-5) unstable; urgency=low * Debconf support added. * Eperl handling of Debian files. * COPYRIGHT: New file. * README: Added note for TeX/TeXInfo sources. * config: New file. * control: Dependence on debconf added. * install: Really ignore emacs. * postrm: New file. * remove: Really ignore emacs. * rules: New doc directory for TeX/TeXInfo sources. * templates: New file. * variables: New file. -- Davide G. M. Salvetti Tue, 12 Oct 1999 16:06:05 +0200 mailcrypt (3.5.4-4) unstable; urgency=low * postinst: Fixed ../share/doc/pkg bug. (Closes: #47119) -- Davide G. M. Salvetti Mon, 11 Oct 1999 09:42:45 +0200 mailcrypt (3.5.4-3) unstable; urgency=low * Docbase support added. * docbase: New file. * emacsen.install: Renamed to install. * emacsen.install.source: Renamed to install.in. * emacsen.remove: Renamed to remove. * mailcrypt.dhelp: File removed. * mailcrypt.menu: File removed. * postinst: Docbase support added. * postrm: File removed. * prerm: Docbase support added. * rules: Docbase support added. -- Davide G. M. Salvetti Thu, 7 Oct 1999 17:47:54 +0200 mailcrypt (3.5.4-2) unstable; urgency=low * control: Standards-Version: 3.0.0. * mailcrypt.dhelp: New file. * mailcrypt.menu: Updated accordingly. * postinst: Updated accordingly; dhelp support added. * prerm: Added dhelp support. * rules: Updated accordingly; dhelp support added. -- Davide G. M. Salvetti Wed, 6 Oct 1999 00:48:33 +0200 mailcrypt (3.5.4-1) unstable; urgency=medium * New upstream version. (Closes: #34490) -- Davide G. M. Salvetti Sun, 3 Oct 1999 14:39:56 +0200 mailcrypt (3.5.1-1) unstable; urgency=low * New upstream version. (Closes: #30741) * copyright: Updated. * mailcrypt-init.el: Fixed Rmail hooks. Added autoload for mc-setversion. (Closes: #30740) * rules: Added README.gpg to $DOCS. * control: Mention GPG. -- Davide G. M. Salvetti Thu, 17 Dec 1998 20:49:03 +0100 mailcrypt (3.5b7-2) unstable; urgency=low * control: Mailcrypt now depends on gnupg|pgp -- Davide G. M. Salvetti Tue, 15 Dec 1998 16:10:40 +0100 mailcrypt (3.5b7-1) unstable; urgency=low * New upstream version. * ../mailcrypt.el: Old patch to support message-mode removed, as it was added upstream. * mailcrypt-init.el: Default URL fixes removed, as they were added upstream. -- Davide G. M. Salvetti Fri, 9 Oct 1998 22:46:52 +0200 mailcrypt (3.5b6-1) unstable; urgency=low * New upstream version. * rules: Added auto-detection of info and html generated files. -- Davide G. M. Salvetti Sun, 27 Sep 1998 23:43:18 +0200 mailcrypt (3.5b5-1) unstable; urgency=low * New upstream version. (Closes: #23963) * copyright: Updated info to include Len Budney. * mailcrypt-init.el: Updated mc-pgp-keyserver-url-template and mc-pgp-keyserver-port (merged from 3.4-4.1). (Closes: #25896) * emacsen.install: Moved to emacsen.install.source. * rules: Updated $(SOURCES); generate $SOURCES in emacsen.install from emacsen.install.source. -- Davide G. M. Salvetti Thu, 27 Aug 1998 11:35:35 +0200 mailcrypt (3.4-4) frozen unstable; urgency=low * emacsen.install: Performed s/load-path-hack/lpath/g. * postinst: Moved abort stuff in a separate nop case statement. * postrm: New file. * prerm: Moved call to update-menus to postrm. -- Davide G. M. Salvetti Tue, 21 Apr 1998 18:59:05 +0200 mailcrypt (3.4-3) unstable; urgency=low * postinst: Fixed test for update-menus; corrected a typo. (Thanks to Ben Gertzfield.) -- Davide G. M. Salvetti Fri, 6 Mar 1998 15:54:12 +0100 mailcrypt (3.4-2) unstable; urgency=medium * New maintainer. * README.Debian: Renamed to README, added a few notes. * control: Moved to contrib/mail. (Closes: #10530) * control: Updated Standards-Version 2.4.0.0. (Closes: #9533) * control: Changed Depends: pgp, emacs19|emacs20. * copyright: Rewritten from scratch. * emacsen.install: New file. * emacsen.remove: New file. * mailcrypt-init.el: Added debian-emacs-flavor code. * mailcrypt.menu: New file. * postinst: Added support for `menu'. * postinst: Added call to emacs-package-install. * prerm: Added support for `menu'. * prerm: Added call to emacs-package-remove. * rules: Rewritten from scratch. * rules: Added HTML documentation in /usr/doc/mailcrypt/mailcrypt.html/. * rules: Install elisp files under /usr/share/emacs/. * rules: Modified to support the new emacsen proposal. -- Davide G. M. Salvetti Thu, 19 Feb 1998 00:20:28 +0100 Tue May 21 20:27:50 1996 Joe Reinhardt * mailcrypt.el (mc-modes-alist): updated assoc. list for message mode * mailcrypt-init.el: message mode hooks Sun May 19 16:19:11 1996 Joe Reinhardt * Makefile: modified to work with Debian packaging scheme * mailcrypt-init.el: new file to setup hooks for mail and news comment (0) UNRELEASED; urgency=low * This is not a changelog entry. * arch-tag: 8a68f787-7690-47c0-9f9f-c8eeb3b86972 * * local variables: * mode: debian-changelog * coding: utf-8 * ispell-local-dictionary: "american" * end: * * LocalWords: mailcrypt CVS toc html texi Kraai distclean Sep Troup postinst * LocalWords: Michlmayr prerm docbase init Mew's dvi Indep mc gpg utf Gorka * LocalWords: Olaizola rmdir alreadydefault Timshel debian deps Joerg Rieger * LocalWords: eperl config debconf texinfo README pgp gnupg isp contrib url * LocalWords: dpkg gencontrol preinst TeXInfo postrm emacsen dhelp Rmail po * LocalWords: autoload setversion Budney keyserver nop elisp Gertzfield te * LocalWords: alist Zandt fixperms canonicalize ePerl checkdir checkroot el * LocalWords: indep DFILES updatepo cdebconf autoconf Kahn Gillmor presubj * LocalWords: Jochens Makefile autom emacs Potortì -- Davide G. M. Salvetti Thu, 01 Jan 1970 00:00:01 +0000 debian/control0000664000000000000000000000277612047425304010610 0ustar Source: mailcrypt Priority: optional Section: mail Maintainer: Davide G. M. Salvetti Uploaders: Barak A. Pearlmutter Standards-Version: 3.9.3 Build-Depends-Indep: eperl, po-debconf, texinfo, texi2html, dpkg (>= 1.15.4) | install-info Homepage: http://mailcrypt.sourceforge.net/ Vcs-Git: git://git.debian.org/git/collab-maint/mailcrypt.git Vcs-Browser: http://git.debian.org/?p=collab-maint/mailcrypt.git Package: mailcrypt Architecture: all Depends: debconf (>= 0.2.0) | debconf-2.0, gnupg, emacs | emacs24 | emacs23 | emacs22 | emacs21 | emacs-snapshot, make, dpkg (>= 1.15.4) | install-info Description: Emacs interface to GPG and PGP Mailcrypt is an Emacs lisp package that provides a simple but powerful interface to cryptographic functions for mail and news. With Mailcrypt, encryption becomes a seamlessly integrated part of mail and news handling. Mailcrypt can automatically fetch public keys to encode, decode, and verify messages; can be configured to automate mailing through anonymous remailers; and can interface to both GPG (the GNU Privacy Guard) and PGP. . Although Mailcrypt may be used to process data in arbitrary Emacs buffers, it is most useful in conjunction with other Emacs packages for handling mail and news. Mailcrypt has specialized support for Rmail, VM, MH-E, Mew, and Gnus. . XEmacs ships with its own version of Mailcrypt, so this package should only be used with GNU Emacs. (I.e., you don't need to install this package if you only use XEmacs.) debian/docbase.in0000664000000000000000000000250211754201324011116 0ustar #include "variables" Document: <:=${PACKAGE}:> Title: Mailcrypt: An Emacs interface to the GNU Privacy Guard and anonymous remailers. Author: Patrick J. LoPresti, Leonard R. Budney, Brian Warner Abstract: Mailcrypt is an Emacs Lisp package which provides a simple but powerful interface to cryptographic functions for mail and news. . With Mailcrypt, encryption becomes a seamlessly integrated part of your mail and news handling environment. Mailcrypt can automatically fetch public keys to encode, decode, and verify messages, and can be configured to automate mailing through anonymous remailers. . Although Mailcrypt may be used to process data in arbitrary Emacs buffers, it is most useful in conjunction with other Emacs packages for handling mail and news. Mailcrypt has specialized support for Rmail, VM, MH-E, Mew, and Gnus. Section: <:=${DOCSEC}:> Format: info Index: <:=if($_="${info}/${PACKAGE}.info.gz")=~tr|/|/|s:> Files: <:=if($_="${info}/${PACKAGE}.info*")=~tr|/|/|s:> Format: HTML Index: <:=if($_="${html}/index.html")=~tr|/|/|s:> Files: <:=if($_="${html}/*.html")=~tr|/|/|s:> <: # arch-tag: 4a60674c-df89-4d63-b0f8-1c92e37e7add # # local variables: # mode: text # coding: utf-8 # fill-column: 78 # ispell-local-dictionary: "american" # end: # # LocalWords: texinfo HTML Mailcrypt LoPresti Budney Rmail VM MH :>// debian/lintian.in0000664000000000000000000000062111754201324011154 0ustar #include "variables" # <% lintian %> override file for <:=${PACKAGE}:> # This is a maintainer script. mailcrypt binary: debconf-is-not-a-registry .<:$_ ="${ecode}/install/${PACKAGE}"; s|/+|/|g; print:> <: # arch-tag: e4349b16-3bb5-44eb-bcd2-240031be2444 # # local variables: # mode: fundamental # coding: utf-8 # ispell-local-dictionary: "american" # ispell-check-comments: exclusive # end: :>// debian/bug.script.in0000664000000000000000000000314511754201324011602 0ustar #include "variables" #! /bin/bash -e # # bug reporting script for <:=${PACKAGE}:> # <:=@COPYRIGHT:>// set -o posix cat >&3 <' ------------------------------------------------------------------------ EOF find 2>/dev/null <:=${lisp}:> -type f -print0 \ | xargs --null --no-run-if-empty md5sum | sort --key=2,2 >&3 cat >&3 <// FLAVORS=${*:-"emacs21 emacs22 emacs23 emacs-snapshot"} for FLAVOR in ${FLAVORS}; do if [ -x /usr/bin/${FLAVOR} ]; then cat >&3 <' ------------------------------------------------------------------------ EOF command ls >&3 --almost-all --sort=version --format=long \ <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:> LOG=$(ls <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/<:=${ELCLOG}:>*) cat >&3 <&3 ${LOG} ;; (*) cat >&3 ${LOG} ;; esac cat >&3 <// debian/variables0000664000000000000000000000612611754201324011067 0ustar <: # 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=; 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: :>// debian/source/0000775000000000000000000000000012047425202010466 5ustar debian/source/format0000664000000000000000000000001411754201324011675 0ustar 3.0 (quilt) debian/prerm.in0000664000000000000000000000116412047425202010645 0ustar #include "variables" #! /bin/bash # # <% postinst %> script for <:=${PACKAGE}:> # <:=@COPYRIGHT:>// set -e set -o posix case "${1}" in deconfigure|failed-upgrade|remove|upgrade) :;; *) echo >&2 "${0##*/}/<:=${PACKAGE}:>:" \ "Unknown argument: \"${1}\"." exit 1 esac <:# Emacs remove :>// case "${1}" in deconfigure|failed-upgrade|remove|upgrade) <:=${EREMOVE}:> <:=${PACKAGE}:> esac exit 0 <: # arch-tag: 06c80812-acc7-473e-8fd7-77a72bbcdb0c # # local variables: # mode: shell-script # coding: utf-8 # ispell-local-dictionary: "american" # ispell-check-comments: exclusive # end: # # LocalWords: deregister :>// debian/copyright.in0000664000000000000000000000435011754201324011531 0ustar #include "variables" This is the Debian package <:=${PACKAGE}:>, maintained by Davide G. M. Salvetti using sources obtained from . COPYRIGHT ========= Mailcrypt program: Copyright (C) 1995 Jin Choi Patrick LoPresti (C) 1998 Len Budney (C) 2001 Brian Warner . Mailcrypt manual: Copyright 1995 Patrick J. LoPresti. Copyright 1998 Leonard R. Budney Copyright 2001 Brian Warner The Mailcrypt program and this manual are published as free software. You may redistribute and/or modify them under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. Mailcrypt is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. DEBIAN SPECIFIC CHANGES ======================= The Debian specific changes are free software Copyright (C) 1997, 98, 99, 2000, 01, 02, 03, 04, 05, 06, 07 by Davide G. M. Salvetti and you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. On Debian GNU/Linux System you can find a copy of the GNU General Public License in "<:=${GPL}:>". A copy of the GNU General Public License is also available at . You may also obtain it by writing to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. <: # arch-tag: 93e24830-7374-49ac-afc2-22236497e636 # # local variables: # mode: text # coding: utf-8 # fill-column: 78 # ispell-local-dictionary: "american" # end: # # LocalWords: Mailcrypt Jin Choi LoPresti Budney :>// debian/bug.presubj.in0000664000000000000000000000234611754201324011752 0ustar #include "variables" Remember to cover the basics, that is, what you expected to happen and what in fact did happen. If the bug (or problem) is triggered by a particular file, you should try to produce a minimal (the shortest the better) sample file which triggers the problem and include it in your report. Your bug report will NOT be automatically sent to the <:=${PACKAGE}:> upstream developers. It will be sent to the Debian Bug Tracking System instead, where the Debian <:=${PACKAGE}:> package maintainer will receive it. He will eventually forward your report upstream if he thinks it related to the <:=${PACKAGE}:> upstream sources rather than specific to the <:=${PACKAGE}:> package for Debian. If you think that your bug report is not specifically related to the Debian package and would like to send it directly to the <:=${PACKAGE}:> upstream developers, abort this bug reporting procedure now and follow the usual bug reporting upstream conventions of <:=${PACKAGE}:> (look in the <:=${PACKAGE}:> documentation directory "<:=${doc}:>"). <: # arch-tag: 1e05717b-d456-4bd8-8e81-c45e9faf8b5a # # local variables: # mode: text # coding: utf-8 # fill-column: 72 # ispell-local-dictionary: "american" # end: :>// debian/templates0000664000000000000000000000130512047426014011110 0ustar Template: mailcrypt/default Type: boolean Default: true _Description: Should Mailcrypt be auto-loaded by default at your site? Mailcrypt will globally (i.e., for all users on this site) overload certain Emacs functions and key-bindings if you answer affirmatively to this question. . This is generally a good thing, since Mailcrypt is a very useful package; however you may not want it to happen, and instead let single users at your site decide by themselves if they should load this package. . If you answer negatively, people who desire to use it will have to put the string "(require 'mailcrypt-init)" in their personal Emacs configuration file (e.g., "~/.emacs" or "~/.emacs.el") to load it. debian/templates.in0000664000000000000000000000170611754201324011521 0ustar #include "variables" Template: mailcrypt/default Type: boolean Default: true _Description: Should Mailcrypt be auto-loaded by default at your site? Mailcrypt will globally (i.e., for all users on this site) overload certain Emacs functions and key-bindings if you answer affirmatively to this question. . This is generally a good thing, since Mailcrypt is a very useful package; however you may not want it to happen, and instead let single users at your site decide by themselves if they should load this package. . If you answer negatively, people who desire to use it will have to put the string "(require 'mailcrypt-init)" in their personal Emacs configuration file (e.g., "~/.emacs" or "~/.emacs.el") to load it. <: # arch-tag: f0377964-4347-46dc-a310-3f371380b170 # # local variables: # mode: text # coding: utf-8 # fill-column: 76 # ispell-local-dictionary: "american" # end: # # LocalWords: mailcrypt init alreadydefault dpkg boolean emacs :>// debian/rules.in0000664000000000000000000001110611754201324010650 0ustar #include "variables" #! /usr/bin/make -f # # rules for <:=${PACKAGE}:> # <:=@COPYRIGHT:>// checkdir=test -f debian/rules checkroot=test root = "$$(whoami)" fixperms=chmod -R a+rX . tmp := $(shell pwd)/debian/tmp SHELL := /bin/bash INSTDIR := install -m 755 -d INSTPROG := install -m 755 -s INSTDATA := install -m 644 INSTSCRIPT := install -m 755 STRIP := strip -R .note -R .comment <:# DO NOT include <% debian/rules %> nor <% debian/templates %> :>// DFILES := debian/README debian/copyright \ debian/config debian/postinst debian/prerm debian/postrm \ debian/docbase debian/lintian \ debian/bug.presubj debian/bug.script \ debian/install debian/remove <:# <% Debconf %> templates :>// DCSOURCES := $(shell cat debian/po/POTFILES.in \ | perl -pe 's|^\[[^]]+\] +(.*)$$|debian/$${1}|') DFILES += $(patsubst %templates, %templates.dcobj, $(DCSOURCES)) SCRIPTS := configure install-sh SOURCES := *.in *.el load-path.hack <:# Hacks needed by configure. :>// MAKEFILEHACKS := tests/Makefile.in tests/remailer/Makefile.in .PHONY: pre-build pre-build: autoconf || true debian/rules: debian/variables <:# Eperl is simply great: thanks, Ralf! :>// %:: %.in eperl -d DEBIAN_DIR="$(shell pwd)/debian/" \ -I "$(shell pwd)/debian/" -P -o $@ $< debian/po/templates.pot: $(DCSOURCES) umask 0022 && debconf-updatepo --verbose --podir=debian/po/ @touch $@ %.dcobj: % debian/po/templates.pot po2debconf --verbose --podir debian/po $< > $@ build: $(DFILES) debian/po/templates.pot $(checkdir) chmod a+x ./configure; <:# next upstream release remove me :>// ./configure --infodir=<:=${info}:> EMACS=echo $(MAKE) MAKEINFO="makeinfo --verbose" \ TEXI2HTML="texi2html --Verbose" \ info html touch build .PHONY: clean clean: debian/po/templates.pot $(checkdir) -rm -rf build core $(tmp) debian/{files*,substvars} -rm -f debian/po/updatepo [ ! -f Makefile ] || $(MAKE) distclean -rm -f $(DFILES) $(fixperms) .PHONY: binary binary: binary-arch binary-indep .PHONY: binary-indep binary-indep: build $(checkdir) $(checkroot) -rm -rf $(tmp) <:# install package :>// $(INSTDIR) $(tmp)<:=${lisp}:> $(INSTDATA) debian/<:=${PACKAGE}:>-init.el $(tmp)<:=${lisp}:>/../ $(INSTSCRIPT) $(SCRIPTS) $(tmp)<:=${lisp}:>/ $(INSTDATA) $(SOURCES) $(tmp)<:=${lisp}:>/ umask 0022; for i in $(MAKEFILEHACKS); do \ $(INSTDIR) $(tmp)<:=${lisp}:>/$${i%/*}/; \ echo -e "clean distclean:\n\trm -f Makefile\n" \ > $(tmp)<:=${lisp}:>/$${i}; \ done $(MAKE) INSTALL_INFO="echo install-info" \ install-info infodir=$(tmp)<:=${info}:> gzip -9frv $(tmp)<:=${info}:> <:# install Debian doc :>// $(INSTDIR) $(tmp)<:=${doc}:> $(INSTDATA) <:=${DOCS}:> $(tmp)<:=${doc}:> $(INSTDATA) debian/README $(tmp)<:=${doc}:>/README.Debian $(INSTDATA) ChangeLog $(tmp)<:=${doc}:> $(INSTDATA) debian/changelog $(tmp)<:=${doc}:>/changelog.Debian gzip -9frv $(tmp)<:=${doc}:> ln -sf ChangeLog.gz $(tmp)<:=${doc}:>/changelog.gz $(INSTDATA) debian/copyright $(tmp)<:=${doc}:> $(INSTDIR) $(tmp)<:=${html}:> $(INSTDATA) htmls/*.html $(tmp)<:=${html}:> ln -snf mailcrypt_toc.html $(tmp)<:=${html}:>/index.html <:# install Debian system files :>// $(INSTDIR) $(tmp)<:=${ecode}:>/install $(INSTDIR) $(tmp)<:=${ecode}:>/remove $(INSTSCRIPT) debian/install \ $(tmp)<:=${ecode}:>/install/<:=${PACKAGE}:> $(INSTSCRIPT) debian/remove \ $(tmp)<:=${ecode}:>/remove/<:=${PACKAGE}:> $(INSTDIR) $(tmp)<:=${docbase}:> $(INSTDATA) debian/docbase $(tmp)<:=${docbase}:>/<:=${PACKAGE}:> $(INSTDIR) $(tmp)<:=${bug}:> $(INSTDATA) debian/bug.presubj $(tmp)<:=${bug}:>/presubj $(INSTSCRIPT) debian/bug.script $(tmp)<:=${bug}:>/script $(INSTDIR) $(tmp)<:=${lintian}:> $(INSTDATA) debian/lintian $(tmp)<:=${lintian}:>/<:=${PACKAGE}:> <:# install Debian control files :>// $(INSTDIR) $(tmp)<:=${debian}:> $(INSTDATA) debian/templates.dcobj \ $(tmp)<:=${debian}:>/templates $(INSTSCRIPT) debian/{config,postinst,postrm,prerm} \ $(tmp)<:=${debian}:> <:# standard stuff :>// cd $(tmp) && md5sum \ $$(find ./ -path './DEBIAN' -prune \ -o -type f -printf "%P\n") \ | sort -k 2 -o $(tmp)<:=${debian}:>/md5sums dpkg-gencontrol -isp chown -R root.root $(tmp) chmod -R go=rX $(tmp) dpkg --build $(tmp) .. .PHONY: binary-arch binary-arch: build $(checkdir) $(checkroot) .PHONY: build-package build-package: clean dpkg-buildpackage -rfakeroot -tc -i .PHONY: source diff source diff: @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false # arch-tag: 7f6799c7-dca1-4d84-8038-1ad9c2888751<:='-child':> <: # local variables: # mode: makefile # coding: utf-8 # ispell-local-dictionary: "american" # ispell-check-comments: exclusive # end: # # LocalWords: Eperl Ralf :>// debian/install.in0000664000000000000000000000462412047426430011176 0ustar #include "variables" #! /bin/bash # # <% elisp %> Emacs install script for <:=${PACKAGE}:> # <:=@COPYRIGHT:>// set -e set -o posix <:# parse debconf database :>// source <:=${CONFMODULE}:> db_version 2.0 db_get <:=${PACKAGE}:>/default || true; _db_default=${RET} FLAVOR=${1} INSTALL="install -o root -g root -m 644" INSTDIR="${INSTALL} -m 755 -d" do_install () { echo >&2 -n "install/<:=${PACKAGE}:>: Setting up for ${FLAVOR}" \ "(log file: <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/<:=${ELCLOG}:>)... " cd <:=${lisp}:>; umask 0022; <:# ensure that "configure" is up-to-date WRT "configure.in" :>// touch --reference configure --date "-1 second" configure.in ${INSTDIR} <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:> EMACS=${FLAVOR} ./configure \ --prefix=<:$_=${usr}; s|/+|/|g; print:> \ >> <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/<:=${ELCLOG}:> 2>&1 make INSTALL="${INSTALL}" MKINSTALLDIRS="${INSTDIR}" \ lispdir=<:$_=${lisp}; s|emacs|\${FLAVOR}|; s|/+|/|g; print:> \ install-lisp \ >> <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/<:=${ELCLOG}:> 2>&1 make distclean \ >> <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/<:=${ELCLOG}:> 2>&1 find <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:> -type f -name \*.el \ -print0 | xargs --null rm -f ,dummy, \ >> <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/<:=${ELCLOG}:> 2>&1 gzip -9fq <:=if($_=${lisp})=~s|emacs|\${FLAVOR}|:>/<:=${ELCLOG}:> cat ><:=if($_="${sstartd}/${EPRIORITY}${PACKAGE}.el") =~s|emacs|\${FLAVOR}|:> <") (add-to-list 'load-path "<:=if($_=${lisp}) =~s|emacs|${FLAVOR}|:>" 'append)) (add-to-list 'load-path "<:=${lisp}:>" 'append) EOF if [ "${_db_default}" = "true" ]; then cat >><:=if($_="${sstartd}/${EPRIORITY}${PACKAGE}.el") =~s|emacs|\${FLAVOR}|:> <&2 "done." return 0 } case "${FLAVOR}" in emacs) :;; emacs2[1234]|emacs-snapshot) do_install ${FLAVOR};; *) echo >&2 "install/<:=${PACKAGE}:>:" \ "Ignoring emacsen flavor: \"${FLAVOR}\"." esac exit 0 <: # arch-tag: 8f5878f2-a4b0-44a9-bb22-92f48baf39b3 # # local variables: # mode: shell-script # coding: utf-8 # ispell-local-dictionary: "american" # ispell-check-comments: exclusive # end: # # LocalWords: debconf :>// debian/README.in0000664000000000000000000000201111754201324010446 0ustar #include "variables" The Debian package <:=${PACKAGE}:> -------------------<:="-" x length (${PACKAGE}):> Loading Mailcrypt ================= Users will need to put "(require 'mailcrypt-init)" in their "~/.emacs" to load Mailcrypt, unless the local system administrator chose to start it by default. System Administrators wanting to start Mailcrypt by default on their site should answer accordingly at the appropriate configuration time question (and may issue "dpkg-reconfigure <:=$PACKAGE:>" in case they changed their minds afterwards). Online Documentation ==================== Online documentation may be found in the info or HTML manual. TeXInfo sources may be found in "<:=if($_="$doc/$PACKAGE.texi.gz")=~tr|/|/|s:>". -- Davide G. M. Salvetti , <:=$_=gmtime:>. <: # arch-tag: a9aeff50-cd75-470a-ac70-65b89b0abb04 # # local variables: # mode: text # coding: utf-8 # fill-column: 78 # ispell-local-dictionary: "american" # end: # # LocalWords: Mailcrypt mailcrypt init dpkg HTML TeXInfo emacs :>// debian/COPYRIGHT0000664000000000000000000000162711754201324010470 0ustar # Copyright (C) 1997, 98, 99, 2000, 01, 02, 03, 04, 05, 06, 07 # by Davide G. M. Salvetti. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the # Free Software Foundation; either version 2 of the License, or (at your # option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License along # with this program; if not, write to: The Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. # # On Debian GNU/Linux System you can find a copy of the GNU General Public # License in "/usr/share/common-licenses/GPL". debian/postinst.in0000664000000000000000000000140412047425202011400 0ustar #include "variables" #! /bin/bash # # <% postinst %> script for <:=${PACKAGE}:> # <:=@COPYRIGHT:>// set -e set -o posix <: # parse <% debconf %> database: do not remove, # even if no further use of it is made here :>// source <:=${CONFMODULE}:> db_version 2.0 case "${1}" in abort-deconfigure|abort-remove|abort-upgrade|configure) :;; *) echo >&2 "${0##*/}/<:=${PACKAGE}:>:" \ "Unknown argument: \"${1}\"." exit 1 esac <:# Emacs install :>// case "${1}" in abort-deconfigure|abort-remove|abort-upgrade|configure) <:=${EINSTALL}:> <:=${PACKAGE}:> esac exit 0 <: # arch-tag: 3b9edfc5-752f-46b3-a095-3346d42ba686 # # local variables: # mode: shell-script # coding: utf-8 # ispell-local-dictionary: "american" # ispell-check-comments: exclusive # end: :>// debian/=TODO0000664000000000000000000000112611754201324007754 0ustar * Package bugs ** Unreported bugs These bugs should be reported via the BTS. *** DONE /var/lib/mailcrypt Should not be installed. ** Open bugs These bugs should be checked to see if they still apply to the current release. ** Non bugs These are not bugs, even if they might look like as if they were such. * Miscellaneous stuff ** I18n and L10n *** DONE Use po-debconf. ** Lintian overrides. arch-tag: 6b9519fc-ed69-4f4c-8aba-b32b30c2157a local variables: mode: org coding: utf-8 fill-column: 78 ispell-local-dictionary: "american" end: LocalWords: BTS TODO po debconf