--- nautilus-clamscan-0.2.2.orig/debian/copyright
+++ nautilus-clamscan-0.2.2/debian/copyright
@@ -0,0 +1,31 @@
+This package was debianized by Clement Lorteau <northern_lights@users.sourceforge.net> on
+Sat, 14 Jun 2008 13:41:52 +0000.
+
+Upstream Author: Clement Lorteau <northern_lights@users.sourceforge.net>
+
+Copyright: 2008 by Clement Lorteau
+
+License:
+
+
+    This package 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 3 of the License, or
+    (at your option) any later version.
+
+    This package 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 package; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
+
+
+The Debian packaging is (C) 2008, Clement Lorteau <northern_lights@users.sourceforge.net> and
+is licensed under the GPL, see above.
+
--- nautilus-clamscan-0.2.2.orig/debian/nautilus-clamscan.install
+++ nautilus-clamscan-0.2.2/debian/nautilus-clamscan.install
@@ -0,0 +1 @@
+nautilus-clamscan.py /usr/lib/nautilus/extensions-2.0/python/
--- nautilus-clamscan-0.2.2.orig/debian/control
+++ nautilus-clamscan-0.2.2/debian/control
@@ -0,0 +1,18 @@
+Source: nautilus-clamscan
+Section: utils
+Priority: optional
+Maintainer: Clement Lorteau <northern_lights@users.sourceforge.net>
+Standards-Version: 3.8.0
+XS-Python-Version: current
+Build-Depends: debhelper (>= 5.0.38)
+Build-Depends-Indep: python-central (>= 0.5.6)
+Homepage: http://launchpad.net/nautilus-clamscan
+
+Package: nautilus-clamscan
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}, python-gtk2, python-clamav, python-nautilus
+XB-Python-Version: ${python:Versions}
+Description: Antivirus scanning for Nautilus
+ Nautilus-clamscan is a Nautilus extension that adds a "Scan for viruses" item
+ to the menu that appears when right-clicking on files. The progress and results
+ of the anti-virus scan are shown in a progress dialog.
--- nautilus-clamscan-0.2.2.orig/debian/compat
+++ nautilus-clamscan-0.2.2/debian/compat
@@ -0,0 +1 @@
+5
--- nautilus-clamscan-0.2.2.orig/debian/watch
+++ nautilus-clamscan-0.2.2/debian/watch
@@ -0,0 +1,3 @@
+version=3
+https://launchpad.net/nautilus-clamscan/+download \
+http://launchpad.net/nautilus-clamscan/trunk/.*/\+download/nautilus-clamscan-(.*)\.tar\.gz
--- nautilus-clamscan-0.2.2.orig/debian/changelog
+++ nautilus-clamscan-0.2.2/debian/changelog
@@ -0,0 +1,25 @@
+nautilus-clamscan (0.2.2-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/watch: Fix broken watch file. (Closes: #550765)
+  * debian/control:
+   - Add missing misc:Depends.
+   - Don't depend on clamav directly. (Closes: #529186)
+  * debian/nautilus-clamscan.install:
+   - Install to correct nautilus extensions directory. (Closes: #539813).
+  * debian/source/format: Declare package as 1.0 format. 
+
+ -- Andrew Starr-Bochicchio <a.starr.b@gmail.com>  Mon, 14 Jun 2010 12:38:32 -0400
+
+nautilus-clamscan (0.2.2-2) unstable; urgency=low
+
+  * Install nautilus-clamscan.py to /usr/lib/nautilus/extensions-1.0/python/
+    Closes: #500801
+
+ -- Clement Lorteau <northern_lights@users.sourceforge.net>  Mon, 06 Oct 2008 18:06:03 +0200
+
+nautilus-clamscan (0.2.2-1) unstable; urgency=low
+
+  * Initial release. Closes: #480140.
+
+ -- Clement Lorteau <northern_lights@users.sourceforge.net>  Sat, 14 Jun 2008 13:12:03 +0200
--- nautilus-clamscan-0.2.2.orig/debian/nautilus-clamscan.examples
+++ nautilus-clamscan-0.2.2/debian/nautilus-clamscan.examples
@@ -0,0 +1 @@
+test_files/*
--- nautilus-clamscan-0.2.2.orig/debian/nautilus-clamscan.docs
+++ nautilus-clamscan-0.2.2/debian/nautilus-clamscan.docs
@@ -0,0 +1 @@
+AUTHORS
--- nautilus-clamscan-0.2.2.orig/debian/rules
+++ nautilus-clamscan-0.2.2/debian/rules
@@ -0,0 +1,56 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+#.NOTPARALLEL:
+
+build: build-stamp
+
+build-stamp:
+	dh_testdir
+	touch build-stamp
+
+patch: patch-stamp
+
+patch-stamp:
+	dpatch apply-all
+	dpatch cat-all >patch-stamp
+
+unpatch:
+	dpatch deapply-all
+	rm -rf patch-stamp debian/patched
+
+clean: clean-patched
+
+clean-patched:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+	dh_install
+
+binary-arch: build install
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_pycentral
+	dh_installchangelogs CHANGELOG
+	dh_installdocs
+	dh_installexamples
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
--- nautilus-clamscan-0.2.2.orig/debian/source/format
+++ nautilus-clamscan-0.2.2/debian/source/format
@@ -0,0 +1 @@
+1.0
