--- pgpgpg-0.13.orig/debian/control
+++ pgpgpg-0.13/debian/control
@@ -0,0 +1,17 @@
+Source: pgpgpg
+Section: utils
+Priority: optional
+Maintainer: Paweł Więcek <coven@debian.org>
+Build-Depends: debhelper
+Standards-Version: 3.7.2
+
+Package: pgpgpg
+Architecture: any
+Depends: ${shlibs:Depends}, gnupg
+Conflicts: pgp
+Provides: pgp
+Replaces: pgp
+Description: Wrapper for using GnuPG in programs designed for PGP
+ Pgpgpg is a wrapper around Gnu Privacy Guard which takes PGP 2.6
+ command line options, translate them and then call GnuPG (Gnu Privacy
+ Guard) to perform the desired action.
--- pgpgpg-0.13.orig/debian/prerm
+++ pgpgpg-0.13/debian/prerm
@@ -0,0 +1,6 @@
+#!/bin/sh -e
+
+update-alternatives --remove pgp /usr/bin/pgpgpg
+
+#DEBHELPER#
+
--- pgpgpg-0.13.orig/debian/copyright
+++ pgpgpg-0.13/debian/copyright
@@ -0,0 +1,10 @@
+This package was originally debianized by Marco d'Itri <md@linux.it>
+on Mon Nov 13 13:42:12 CET 2000.
+
+Original source has been downloaded from http://www.nessie.de/mroth/pgpgpg/
+
+Copyright (C) 1999 Michael Roth <mroth@gnupg.org>
+
+A copy of the GNU General Public License, version 2, can be found in
+/usr/share/common-licenses/GPL .
+
--- pgpgpg-0.13.orig/debian/rules
+++ pgpgpg-0.13/debian/rules
@@ -0,0 +1,49 @@
+#!/usr/bin/make -f
+
+# Rather paranoid than sorry. Make the shell exit with an error if an
+# untested command fails.
+SHELL+= -e
+
+#export DH_VERBOSE=1
+
+build:
+	$(checkdir)
+	./configure --prefix=/usr --with-gpg-path=/usr/bin/gpg
+	$(MAKE)
+	touch build
+
+clean: checkroot
+	$(checkdir)
+	-rm -f build
+	-$(MAKE) distclean
+	-cd debian && rm -rf tmp files* substvars *debhelper 
+
+binary-indep:   checkroot build
+# We have nothing to do
+
+binary-arch:	checkroot build
+	$(checkdir)
+	-rm -rf debian/tmp
+	$(MAKE) DESTDIR=`pwd`/debian/tmp install
+
+	dh_installdocs README BUGS TODO
+	dh_installchangelogs NEWS
+	dh_installman pgpgpg.1
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_builddeb
+
+define checkdir
+	test -f debian/rules
+endef
+
+binary:	binary-arch
+
+checkroot:
+	test root = "`whoami`"
+
+.PHONY: binary binary-arch binary-indep clean checkroot
--- pgpgpg-0.13.orig/debian/changelog
+++ pgpgpg-0.13/debian/changelog
@@ -0,0 +1,59 @@
+pgpgpg (0.13-9) unstable; urgency=low
+
+  * Updated debian/rules to contain binary-indep, per policy (closes: #395732)
+
+ -- Paweł Więcek <coven@debian.org>  Wed, 14 Feb 2007 21:56:09 +0100
+
+pgpgpg (0.13-8) unstable; urgency=low
+
+  * Added Replaces: pgp (closes: #238095)
+
+ -- Pawel Wiecek <coven@debian.org>  Wed, 24 Mar 2004 20:50:30 +0100
+
+pgpgpg (0.13-7) unstable; urgency=low
+
+  * Added conflict with pgp (closes: #236195)
+
+ -- Pawel Wiecek <coven@debian.org>  Thu,  4 Mar 2004 23:07:23 +0100
+
+pgpgpg (0.13-6) unstable; urgency=low
+
+  * Reuploaded, this time with .orig.tar.gz that was missing in 0.13-5 upload
+
+ -- Pawel Wiecek <coven@debian.org>  Tue, 20 Jan 2004 09:51:34 +0100
+
+pgpgpg (0.13-5) unstable; urgency=low
+
+  * Moved from non-US to main
+
+ -- Pawel Wiecek <coven@debian.org>  Mon, 19 Jan 2004 22:31:12 +0100
+
+pgpgpg (0.13-4) unstable; urgency=low
+
+  * Added manpage from Javier Fernandez-Sanguino Pena <jfs@computer.org>
+    (closes: #222405)
+  * Removed gpg-idea from suggested packages (closes: #196895)
+  * Updated standards-version (no changes required)
+
+ -- Pawel Wiecek <coven@debian.org>  Wed, 14 Jan 2004 22:33:28 +0100
+
+pgpgpg (0.13-3) unstable; urgency=low
+
+  * New maintainer (closes: #135542)
+  * Upgraded to current standards version
+  * Fixed a typo in description (closes: #125233)
+
+ -- Pawel Wiecek <coven@debian.org>  Tue,  9 Apr 2002 11:25:36 +0200
+
+pgpgpg (0.13-2) unstable; urgency=low
+
+  * Now the package can be built even if gnupg is not installed
+    (Closes: #78303, #81806).
+
+ -- Marco d'Itri <md@linux.it>  Wed, 14 Feb 2001 22:10:18 +0100
+
+pgpgpg (0.13-1) unstable; urgency=low
+
+  * First Release.
+
+ -- Marco d'Itri <md@linux.it>  Wed,  8 Nov 2000 11:42:15 +0100
--- pgpgpg-0.13.orig/debian/postinst
+++ pgpgpg-0.13/debian/postinst
@@ -0,0 +1,6 @@
+#!/bin/sh -e
+
+update-alternatives --install /usr/bin/pgp pgp /usr/bin/pgpgpg 20
+
+#DEBHELPER#
+
