--- sshguard-1.0.orig/debian/dirs
+++ sshguard-1.0/debian/dirs
@@ -0,0 +1 @@
+usr/sbin
--- sshguard-1.0.orig/debian/docs
+++ sshguard-1.0/debian/docs
@@ -0,0 +1 @@
+README
--- sshguard-1.0.orig/debian/control
+++ sshguard-1.0/debian/control
@@ -0,0 +1,15 @@
+Source: sshguard
+Section: net
+Priority: optional
+Maintainer: Ernesto Nadir Crespo Avila <ecrespo@debianvenezuela.org>
+Build-Depends: debhelper (>= 5), autotools-dev, iptables
+Standards-Version: 3.7.3
+Homepage: http://sshguard.sourceforge.net/
+
+Package: sshguard
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: protects from brute force attacks against ssh 
+ Protects networked hosts from the today's widespread
+ brute force attacks against ssh servers. It detects such attacks
+ and blocks the author's address with a firewall rule.
--- sshguard-1.0.orig/debian/rules
+++ sshguard-1.0/debian/rules
@@ -0,0 +1,107 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
+DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+config.status: configure
+	dh_testdir
+	# Add here commands to configure the package.
+ifneq "$(wildcard /usr/share/misc/config.sub)" ""
+	cp -f /usr/share/misc/config.sub config.sub
+endif
+ifneq "$(wildcard /usr/share/misc/config.guess)" ""
+	cp -f /usr/share/misc/config.guess config.guess
+endif
+	./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --with-firewall=iptables  --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs"
+
+
+build: build-stamp
+
+build-stamp:  config.status
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE)
+	#docbook-to-man debian/sshguard.sgml > sshguard.1
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp 
+
+	# Add here commands to clean up after the build process.
+	[ ! -f Makefile ] || $(MAKE) distclean
+	rm -f config.sub config.guess config.status config.status.lineno config.log 
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	# Add here commands to install the package into debian/sshguard.
+	$(MAKE) DESTDIR=$(CURDIR)/debian/sshguard install
+
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs Changes
+	dh_installdocs
+	dh_installexamples
+#	dh_install
+#	dh_installmenu
+#	dh_installdebconf	
+#	dh_installlogrotate
+#	dh_installemacsen
+#	dh_installpam
+#	dh_installmime
+#	dh_python
+#	dh_installinit
+#	dh_installcron
+#	dh_installinfo
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_perl
+#	dh_makeshlibs
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install 
--- sshguard-1.0.orig/debian/changelog
+++ sshguard-1.0/debian/changelog
@@ -0,0 +1,19 @@
+sshguard (1.0-2~bpo40+1) etch-backports; urgency=low
+
+  * Rebuild for etch-backports.
+
+ -- Mohammed Adnène Trojette <adn+deb@diwi.org>  Sun, 29 Jun 2008 14:00:42 +0200
+
+sshguard (1.0-2) unstable; urgency=low
+
+  * Fix package short description is missing (Closes: #446534).
+  * Change email maintainner to ecrespo@debianvenezuela.org.
+
+ -- Ernesto Nadir Crespo Avila <ecrespo@debianvenezuela.org>  Mon, 03 Dec 2007 15:16:10 -0400
+
+sshguard (1.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #428214)  
+
+ -- Ernesto Nadir Crespo Avila <ecrespo@debian.org.ve>  Sat, 09 Jun 2007 15:28:55 -0400
+
--- sshguard-1.0.orig/debian/compat
+++ sshguard-1.0/debian/compat
@@ -0,0 +1 @@
+5
--- sshguard-1.0.orig/debian/copyright
+++ sshguard-1.0/debian/copyright
@@ -0,0 +1,34 @@
+This package was debianized by Ernesto Nadir Crespo Avila <ecrespo@debianvenezuela.org> on
+Sat, 09 Jun 2007 15:28:55 -0400.
+
+It was downloaded from http://sshguard.sourceforge.net/
+
+Upstream Author: 
+
+    sshguard maintainers <sshguard-maintainers@lists.sourceforge.net>
+
+Copyright: 
+
+    Copyright (C)  sshguard Team
+    
+
+License:
+
+    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 the name of Matt Cashner nor the names of its contributors may
+	be used to endorse or promote products derived from this software without
+	specific prior written permission.
+
+On Debian GNU/Linux systems, the complete text of the BSD License can be
+found in `/usr/share/common-licenses/BSD'.
+
+The Debian packaging is (C) 2007, Ernesto Nadir Crespo Avila <ecrespo@debianvenezuela.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
