--- /dev/null
+Source: pgp-tools
+Section: utils
+Priority: optional
+Maintainer: N. N. <nn@debian.org>
+Uploaders: Peter Palfrader <weasel@debian.org>, Christoph Berg <cb@df7cb.de>
+Build-Depends: debhelper (>> 4.0.0)
+Standards-Version: 3.6.1
+
+Package: pgp-tools
+Architecture: all
+Depends: gnupg (>= 1.3.92), perl, libgnupg-interface-perl, libmime-perl, libmailtools-perl (>= 1.62), mailx
+Recommends: libtext-iconv-perl | libintl-perl | recode
+Description: tools for signing GnuPG keys
+ PGP Tools is a collection for all kinds of PGP related things, including
+ signing scripts, party preparation scripts, etc.
+ .
+ * caff: CA - Fire and Forget signs and mails a key
+ * gpgsigs: annotates list of GnuPG keys with already done signatures
+ * pgp-clean: removes all non-self signatures from key
+ .
+ http://pgp-tools.alioth.debian.org/
--- /dev/null
+This package was debianized by Christoph Berg <cb@df7cb.de> on
+Mon, 16 May 2005 17:16:30 +0200.
+
+Availability:
+ Homepage:
+ http://pgp-tools.alioth.debian.org/
+ The package source is hosted in a subversion repository:
+ svn://svn.debian.org/pgp-tools/trunk/
+
+Authors and Copyright:
+ (c) 2004, 2005 Peter Palfrader <peter@palfrader.org>
+ (c) 2004 Uli Martens <uli@youam.net>
+ (c) 2004, 2005 Christoph Berg <cb@df7cb.de>
+ Other contributors:
+ Enrico Zini
+ Benjamin Hill
+
+License for caff and gpgsigs:
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ 3. The name of the author may not be used to endorse or promote products
+ derived from this software without specific prior written permission.
+
+ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
--- /dev/null
+#!/usr/bin/make -f
+
+configure: configure-stamp
+configure-stamp:
+ dh_testdir
+ touch $@
+
+build: build-stamp
+build-stamp: configure-stamp
+ dh_testdir
+ $(MAKE) -C caff
+ $(MAKE) -C gpgsigs
+ touch $@
+
+clean:
+ dh_testdir
+ dh_testroot
+ $(MAKE) -C caff clean
+ $(MAKE) -C gpgsigs clean
+ rm -f build-stamp configure-stamp
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+ dh_install
+ dh_installman caff/*.1 gpgsigs/gpgsigs.1
+
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installdocs
+ dh_installexamples
+ dh_installmenu
+ dh_installcron
+ dh_installinfo
+ dh_installchangelogs
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+# Build architecture-dependent files here.
+binary-arch: build install
+
+binary: binary-indep
+.PHONY: build clean binary-indep binary-arch binary install configure