--- libnetfilter-queue-0.0.17.orig/debian/rules
+++ libnetfilter-queue-0.0.17/debian/rules
@@ -0,0 +1,79 @@
+#!/usr/bin/make -f
+# -*- mode: makefile; coding: utf-8 -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+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 -fno-strict-aliasing
+endif
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+
+ # ./configure
+ CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
+ --disable-dependency-tracking \
+ --prefix=/usr
+
+ # Build libnetfilter-queue
+ $(MAKE)
+
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp install*-stamp
+
+ [ ! -f Makefile ] || $(MAKE) distclean
+
+ dh_clean
+
+install: install-stamp
+install-stamp: build-stamp
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+ $(MAKE) DESTDIR=`pwd`/debian/tmp install
+
+ touch install-stamp
+
+# Build architecture-independent files here.
+binary-indep: build install
+
+# Build architecture-dependent files here.
+binary-arch: build install
+ dh_testdir -a
+ dh_testroot -a
+ dh_installdocs -plibnetfilter-queue1
+ ln -sf libnetfilter-queue1 debian/libnetfilter-queue1-dbg/usr/share/doc/libnetfilter-queue1-dbg
+ ln -sf libnetfilter-queue1 debian/libnetfilter-queue-dev/usr/share/doc/libnetfilter-queue-dev
+ dh_installchangelogs -plibnetfilter-queue1
+ dh_install -a --sourcedir=debian/tmp
+ dh_link -a
+ dh_strip -a --dbg-package=libnetfilter-queue1-dbg
+ dh_compress -a
+ dh_fixperms -a
+ dh_makeshlibs -a -V 'libnetfilter-queue1 (>= 0.0.15)'
+ dh_installdeb -a
+ dh_shlibdeps -a
+ dh_gencontrol -a
+ dh_md5sums -a
+ dh_builddeb -a
+
+source diff:
+ @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
--- libnetfilter-queue-0.0.17.orig/debian/watch
+++ libnetfilter-queue-0.0.17/debian/watch
@@ -0,0 +1,3 @@
+version=3
+
+http://www.netfilter.org/projects/libnetfilter_queue/files/libnetfilter_queue-(\S+)\.tar\.bz2
--- libnetfilter-queue-0.0.17.orig/debian/libnetfilter-queue-dev.dirs
+++ libnetfilter-queue-0.0.17/debian/libnetfilter-queue-dev.dirs
@@ -0,0 +1 @@
+usr/share/doc
--- libnetfilter-queue-0.0.17.orig/debian/compat
+++ libnetfilter-queue-0.0.17/debian/compat
@@ -0,0 +1 @@
+5
--- libnetfilter-queue-0.0.17.orig/debian/copyright
+++ libnetfilter-queue-0.0.17/debian/copyright
@@ -0,0 +1,18 @@
+This package was debianized by Max Kellermann <max@duempel.org> on
+Fri Sep 22 10:56:25 CEST 2006
+
+It was downloaded from http://www.netfilter.org/downloads.html
+
+Upstream Author: Harald Welte <laforge@netfilter.org>
+
+Copyright:
+
+ (C) 2005 by Harald Welte <laforge@gnumonks.org>
+
+ This program 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 2 of the License, or (at
+ your option) any later version.
+
+On Debian GNU/Linux systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
--- libnetfilter-queue-0.0.17.orig/debian/control
+++ libnetfilter-queue-0.0.17/debian/control
@@ -0,0 +1,40 @@
+Source: libnetfilter-queue
+Section: libs
+Priority: extra
+Maintainer: netfilter maintainers <netfilter-maintainers@ned.snow-crash.org>
+Uploaders: Max Kellermann <max@duempel.org>, Alexander Wirt <formorer@debian.org>
+Homepage: http://www.netfilter.org/projects/libnetfilter_queue/
+Build-Depends: debhelper (>= 5), libnfnetlink-dev (>= 0.0.41)
+Standards-Version: 3.8.1
+
+Package: libnetfilter-queue1
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: Netfilter netlink-queue library
+ libnetfilter_queue is a userspace library providing an API to packets
+ that have been queued by the kernel packet filter. It is part of a
+ system that deprecates the old ip_queue / libipq mechanism.
+
+Package: libnetfilter-queue1-dbg
+Section: libdevel
+Architecture: any
+Depends: ${shlibs:Depends}, libnetfilter-queue1 (= ${binary:Version})
+Description: Debugging symbols for libnetfilter-queue1
+ libnetfilter_queue is a userspace library providing an API to packets
+ that have been queued by the kernel packet filter. It is part of a
+ system that deprecates the old ip_queue / libipq mechanism.
+ .
+ This package provides the debugging symbols.
+
+Package: libnetfilter-queue-dev
+Section: libdevel
+Architecture: any
+Depends: ${shlibs:Depends}, pkg-config,
+ libnetfilter-queue1 (= ${binary:Version}),
+ libnfnetlink-dev (>= 0.0.25)
+Description: Development files for libnetfilter-queue1
+ libnetfilter_queue is a userspace library providing an API to packets
+ that have been queued by the kernel packet filter. It is part of a
+ system that deprecates the old ip_queue / libipq mechanism.
+ .
+ This package provides development files and static libraries.
--- libnetfilter-queue-0.0.17.orig/debian/libnetfilter-queue-dev.install
+++ libnetfilter-queue-0.0.17/debian/libnetfilter-queue-dev.install
@@ -0,0 +1,3 @@
+usr/lib/pkgconfig
+usr/lib/*.{so,a}
+usr/include
--- libnetfilter-queue-0.0.17.orig/debian/libnetfilter-queue1.install
+++ libnetfilter-queue-0.0.17/debian/libnetfilter-queue1.install
@@ -0,0 +1 @@
+usr/lib/*.so.*
--- libnetfilter-queue-0.0.17.orig/debian/libnetfilter-queue1-dbg.dirs
+++ libnetfilter-queue-0.0.17/debian/libnetfilter-queue1-dbg.dirs
@@ -0,0 +1 @@
+usr/share/doc
--- libnetfilter-queue-0.0.17.orig/debian/changelog
+++ libnetfilter-queue-0.0.17/debian/changelog
@@ -0,0 +1,55 @@
+libnetfilter-queue (0.0.17-1) unstable; urgency=low
+
+ [ Max Kellermann ]
+ * new upstream release
+ * build with libnfnetlink-dev 0.0.41
+
+ [ Alexander Wirt ]
+ * bump standardsversion (no changes)
+
+ -- Alexander Wirt <formorer@debian.org> Thu, 02 Apr 2009 11:12:02 +0200
+
+libnetfilter-queue (0.0.16-1) unstable; urgency=low
+
+ [ Max Kellermann ]
+ * new upstream release
+ * fixed duplicated word in description
+ * bumped Standards-Version to 3.8.0
+
+ -- Alexander Wirt <formorer@debian.org> Fri, 17 Oct 2008 13:11:16 +0200
+
+libnetfilter-queue (0.0.15-1) unstable; urgency=low
+
+ [ Max Kellermann ]
+ * new upstream release
+ - shlibs version set to 0.0.15 because of API additions
+ * updated URL in watch file
+ * moved DH_COMPAT to debian/compat
+ * use ${binary:Version} instead of ${Source-Version}
+ * don't ignore "make distclean" errors
+ * bumped Standards-Version to 3.7.3
+ * added Homepage header to debian/control
+
+ [ Alexander Wirt ]
+ * package uploaded with bzip2 compression of tarball/diff to test
+ infrastructure as requested by ftpmaster. Do not upload such kind
+ of packages on your own, until it got announced on d-d-a
+
+ -- Alexander Wirt <formorer@debian.org> Fri, 04 Jan 2008 15:51:08 +0100
+
+libnetfilter-queue (0.0.13-1) unstable; urgency=low
+
+ [ Max Kellermann ]
+ * new upstream release
+ * build-depend on libnfnetlink-dev 0.0.25
+
+ [ Alexander Wirt ]
+ * Change priority to extra
+
+ -- Alexander Wirt <formorer@debian.org> Tue, 13 Mar 2007 08:51:26 +0100
+
+libnetfilter-queue (0.0.12-1) unstable; urgency=low
+
+ * initial debian release (Closes: #388731)
+
+ -- Max Kellermann <max@duempel.org> Fri, 22 Sep 2006 13:43:52 +0200