--- gcipher-1.1.orig/debian/README.debian
+++ gcipher-1.1/debian/README.debian
@@ -0,0 +1,10 @@
+gcipher for Debian
+----------------------
+
+	The patch applied to this package are approved by upstream for 
+port/packaging install path differences. The patch simply adds a call
+to sys.path.append and then modifies the GLADEDIR as mentioned in the
+INSTALL file.
+
+Jeremy T. Bouse <jbouse@debian.org>, Mon, 23 Jun 2003 11:25:30 -0700
+
--- gcipher-1.1.orig/debian/compat
+++ gcipher-1.1/debian/compat
@@ -0,0 +1 @@
+7
--- gcipher-1.1.orig/debian/control
+++ gcipher-1.1/debian/control
@@ -0,0 +1,24 @@
+Source: gcipher
+Section: utils
+Priority: optional
+Maintainer: Jeremy T. Bouse <jbouse@debian.org>
+Uploaders: Douglas Gemignani <douglas@gemignani.org>
+Standards-Version: 3.9.0
+Build-Depends: dbs
+Build-Depends-Indep: debhelper (>> 7.0.0), python, python-support (>= 0.4.0)
+Homepage: http://gcipher.sourceforge.net/
+Vcs-Git: git://git.debian.org/collab-maint/gcipher.git
+Vcs-Browser: http://git.debian.org/?p=collab-maint/gcipher.git
+
+Package: gcipher
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}, python-gnome2, python-glade2
+Description: A simple "encryption" tool
+ This is a simple "encryption" tool to work with common simple encryption
+ algorithms (ROT13, Caesar, Vigenère, ...)
+ .
+ Gcipher does not provide any strong encryption and should not be used to
+ encrypt any private data.
+ . 
+ Gcipher can run as either a GUI, a command-line application, or a network
+ proxy.
--- gcipher-1.1.orig/debian/copyright
+++ gcipher-1.1/debian/copyright
@@ -0,0 +1,34 @@
+This package was debianized by Jeremy T. Bouse jbouse@debian.org on
+Fri, 20 Jun 2003 11:23:25 -0700.
+
+It was downloaded from http://gcipher.sourceforge.net/
+
+Copyright: BSD
+
+Copyright (c) 2003, Shannon -jj Behrens
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+    Redistributions of source code must retain the above copyright notice, this
+    list of conditions and the following disclaimer.
+
+    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.
+
+    Neither name of "GCipher" nor the names of its contributors may be used
+    to endorse or promote products derived from this software without specific 
+    prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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.
--- gcipher-1.1.orig/debian/dirs
+++ gcipher-1.1/debian/dirs
@@ -0,0 +1,8 @@
+usr/bin
+usr/share/doc/gcipher
+usr/share/man/man1
+usr/share/applications
+usr/share/gcipher/lib/cipher
+usr/share/gcipher/lib/ciphergui
+usr/share/gcipher/plugins/cipher
+usr/share/gcipher/plugins/ciphergui
--- gcipher-1.1.orig/debian/menu
+++ gcipher-1.1/debian/menu
@@ -0,0 +1,2 @@
+?package(gcipher):needs="text" section="Applications/Education" \
+  title="gCipher" command="/usr/bin/gcipher"
--- gcipher-1.1.orig/debian/rules
+++ gcipher-1.1/debian/rules
@@ -0,0 +1,78 @@
+#!/usr/bin/make -f
+# Made with the aid of debmake, by Christoph Lameter,
+# based on the sample debian/rules file for GNU hello by Ian Jackson.
+
+package=gcipher
+version=1.1
+
+TAR_DIR := $(package)-$(version)
+
+include /usr/share/dbs/dbs-build.mk
+
+build: setup
+	$(checkdir)
+	
+	touch $(STAMP_DIR)/build
+
+clean:
+	$(checkdir)
+	rm -rf $(STAMP_DIR) $(SOURCE_DIR)
+	rm -f debian/files.saved debian/files
+	rm -f $$(find . -name "*~" -o -name core -o -name "*.orig")
+	rm -rf debian/*.debhelper debian/*.debhelper.*
+	rm -rf debian/gcipher debian/files* core debian/substvars debian/*.substvars
+
+#binary-arch: checkroot build
+#	$(checkdir)
+# There are no architecture-independent files to be uploaded
+# generated by this package.  If there were any they would be
+# made here.
+
+binary-indep: checkroot build
+	$(checkroot)
+	dh_prep
+	dh_installdirs -A
+
+	cwd=`pwd` ; \
+	set -e ; \
+	( cd $(BUILD_TREE) && \
+		for file in CONTRIB README ; do \
+			install -m 644 $$file $$cwd/debian/gcipher/usr/share/doc/$(package); \
+		done && \
+		install -m 644 gcipher.1 $$cwd/debian/gcipher/usr/share/man/man1; \
+		cd src && \
+		install -m 755 gcipher $$cwd/debian/gcipher/usr/bin; \
+		install -m 644 gcipher.desktop $$cwd/debian/gcipher/usr/share/applications; \
+		for file in $$(find . -name "*.py" -o -name "*.glade" -o -name "*.gladep") ; do \
+			install -m 644 $$file $$cwd/debian/gcipher/usr/share/gcipher/lib/$$file; \
+		done && \
+		cd .. && \
+		cd plugins && \
+		for file in $$(find . -name "*.py") ; do \
+			install -m 644 $$file $$cwd/debian/gcipher/usr/share/gcipher/plugins/$$file; \
+		done )
+	
+	dh_installdocs
+	dh_installmenu
+	dh_installchangelogs
+	dh_link
+	dh_compress
+	dh_pysupport /usr/share/gcipher/lib
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_fixperms
+	dh_builddeb
+
+define checkdir
+	test -f debian/rules
+endef
+
+binary: binary-indep binary-arch
+
+checkroot:
+	$(checkdir)
+	test root = "`whoami`"
+
+.PHONY: binary binary-arch binary-indep clean checkroot
--- gcipher-1.1.orig/debian/watch
+++ gcipher-1.1/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://sf.net/gcipher/ gcipher-?_?([\d+\.]+|\d+)\.tar.gz debian uupdate
--- gcipher-1.1.orig/debian/changelog
+++ gcipher-1.1/debian/changelog
@@ -0,0 +1,64 @@
+gcipher (1.1-1) unstable; urgency=low
+
+  * debian/control: Add Homepage
+  * Imported Upstream version 1.1
+  * debian/patches: Remove patches included upstream
+  * debian/patches: Updated 001_paths patch to new version
+  * debian/rules: Updated package version number
+  * debian/watch: Initial run at watch file
+
+ -- Jeremy T. Bouse <jbouse@debian.org>  Tue, 13 Jul 2010 22:08:33 -0400
+
+gcipher (1.0-4) unstable; urgency=low
+
+  * debian/patches/002_bts_532130.diff: Correct spelling of Ceasar to
+    Caesar (Closes: #532130)
+  * debian/patches/003_bts_531183.diff: Remove deprecated GTK function
+    calls (Closes: #531183)
+  * Add Douglas Gemignani as an uploader (Closes: #559244, #557268) -
+    thanks to Sandro Tosi <morph@debian.org>
+  * debian/rules, debian/control: Clean-up lintian issues in package
+  * debian/control: Add VCS resource entries
+  * Accept NMUs done previously against 1.0-3 - thanks to Pierre Habouzit
+    <madcoder@debian.org> & Colin Watson <cjwatson@debian.org>
+
+ -- Jeremy T. Bouse <jbouse@debian.org>  Mon, 12 Jul 2010 13:00:15 -0400
+
+gcipher (1.0-3.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Update package to the last python policy (Closes: #380806).
+
+ -- Pierre Habouzit <madcoder@debian.org>  Sat, 12 Aug 2006 17:11:17 +0200
+
+gcipher (1.0-3.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Improve description to make it clear that gcipher doesn't provide strong
+    encryption (thanks, Clément Stenac; closes: #266707).
+
+ -- Colin Watson <cjwatson@debian.org>  Wed,  9 Feb 2005 15:32:46 +0000
+
+gcipher (1.0-3) unstable; urgency=low
+
+  * Reverted back to ${python:Depends} in debian/control
+  * Changed Build-Depends to Build-Depends-Indep
+
+ -- Jeremy T. Bouse <jbouse@debian.org>  Mon, 31 May 2004 23:08:54 -0700
+
+gcipher (1.0-2) unstable; urgency=low
+
+  * Removed use of ${python:Depends} in debian/control as Python maintainer(s)
+    in their infinite wisdom decided that it broke compatibility moving from
+    2.2 to 2.3 which in this case isn't true so we'll just depend on python
+    version being >= 2.1 as it's been tested with 2.1, 2.2 and 2.3 with no
+    problems and forget using the build depends that are auto-generated.
+    This should please Aaron M. Ucko and (closes: #206305)
+
+ -- Jeremy T. Bouse <jbouse@debian.org>  Tue, 19 Aug 2003 23:39:08 -0700
+
+gcipher (1.0-1) unstable; urgency=low
+
+  * Initial release.
+
+ -- Jeremy T. Bouse <jbouse@debian.org>  Mon, 23 Jun 2003 10:01:37 -0700
--- gcipher-1.1.orig/debian/patches/001_paths.diff
+++ gcipher-1.1/debian/patches/001_paths.diff
@@ -0,0 +1,21 @@
+diff -urN gcipher-1.1/src/gcipher gcipher-1.1.new/src/gcipher
+--- gcipher-1.1/src/gcipher	2003-06-21 19:37:15.000000000 +0000
++++ gcipher-1.1.new/src/gcipher	2003-06-23 18:03:27.000000000 +0000
+@@ -4,7 +4,7 @@
+ 
+ # Edit the path below if you need to port GCipher.
+ import sys
+-# sys.path.append("/usr/share/gcipher/lib")
++sys.path.append("/usr/share/gcipher/lib")
+ 
+ from os import environ 
+ from os.path import join
+diff -urN gcipher-1.1/src/Const.py gcipher-1.1.new/src/Const.py
+--- gcipher-1.1/src/Const.py	2003-06-21 17:37:31.000000000 +0000
++++ gcipher-1.1.new/src/Const.py	2003-06-23 18:19:35.000000000 +0000
+@@ -9,4 +9,4 @@
+ Read Help/Contents to learn how to use gcipher
+ as a command line filter or as a network proxy."""
+ AUTHORS = ["Shannon -jj Behrens <jjinux@yahoo.com>"]
+-GLADEDIR = "."
++GLADEDIR = "/usr/share/gcipher/lib"
