diff options
author | Max Kellermann <max@duempel.org> | 2005-11-27 16:21:50 +0000 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2005-11-27 16:21:50 +0000 |
commit | 5f47da966aa5a69f57997e50d0c6639f072b8e1b (patch) | |
tree | 25eeba15817a78f74c434a0e96b162ba14db04fb | |
download | conntrack-tools-5f47da966aa5a69f57997e50d0c6639f072b8e1b.tar.gz conntrack-tools-5f47da966aa5a69f57997e50d0c6639f072b8e1b.zip |
first commit
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/conntrack.install | 2 | ||||
-rw-r--r-- | debian/control | 20 | ||||
-rw-r--r-- | debian/copyright | 9 | ||||
-rw-r--r-- | debian/libconntrack-extensions.install | 1 | ||||
-rwxr-xr-x | debian/rules | 12 |
6 files changed, 49 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..6891ae5 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +conntrack (0.99-1) unstable; urgency=low + + * initial debian release + + -- diff --git a/debian/conntrack.install b/debian/conntrack.install new file mode 100644 index 0000000..2e15100 --- /dev/null +++ b/debian/conntrack.install @@ -0,0 +1,2 @@ +usr/sbin +usr/share/man diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..949ee84 --- /dev/null +++ b/debian/control @@ -0,0 +1,20 @@ +Source: conntrack +Section: net +Priority: optional +Maintainer: Max Kellermann <max@duempel.org> +Build-Depends: cdbs (>= 0.4), debhelper (>= 4.2), gcc (>= 3.4), libnfnetlink-dev (>= 0.0.13), libnetfilter-conntrack-dev (>= 0.0.28) +Standards-Version: 3.6.2 + +Package: conntrack +Architecture: any +Depends: ${shlibs:Depends}, libconntrack-extensions (= ${Source-Version}) +Description: Program to modify the conntrack tables + The userspace connection tracking table administration program. + +Package: libconntrack-extensions +Architecture: any +Depends: ${shlibs:Depends} +Description: Program to modify the conntrack tables + The userspace connection tracking table administration program. + . + This package provides the protocol extensions. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..469c053 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,9 @@ +This Debian package was created by Max Kellermann <max@duempel.org>. + +The upstream sources were downloaded from: + http://ftp.netfilter.org/pub/conntrack/ + +The GNU General Public License version 2 applies to the upstream +sources. On Debian systems, the complete text of the GNU General +Public License version 2 can be found in the +/usr/share/common-licenses/GPL-2 file. diff --git a/debian/libconntrack-extensions.install b/debian/libconntrack-extensions.install new file mode 100644 index 0000000..d018987 --- /dev/null +++ b/debian/libconntrack-extensions.install @@ -0,0 +1 @@ +usr/lib/conntrack diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..f3423db --- /dev/null +++ b/debian/rules @@ -0,0 +1,12 @@ +#!/usr/bin/make -f +# -*- mode: makefile; coding: utf-8 -*- + +UPSTREAM_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f2 -d' ' | cut -f1 -d-) +DEB_TARBALL := conntrack-$(UPSTREAM_VERSION).tar.bz2 +DEB_TAR_SRCDIR := conntrack-$(UPSTREAM_VERSION) + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/rules/tarball.mk +include /usr/share/cdbs/1/class/autotools.mk + +DEB_DH_INSTALL_SOURCEDIR := debian/tmp |