[netfilter-cvslog] r6351 - in trunk/libnfnetlink: . debian

laforge at netfilter.org laforge at netfilter.org
Sat Jan 7 16:11:39 CET 2006


Author: laforge at netfilter.org
Date: 2006-01-07 16:11:38 +0100 (Sat, 07 Jan 2006)
New Revision: 6351

Added:
   trunk/libnfnetlink/debian/
   trunk/libnfnetlink/debian/changelog
   trunk/libnfnetlink/debian/control
   trunk/libnfnetlink/debian/copyright
   trunk/libnfnetlink/debian/libnfnetlink-dev.install
   trunk/libnfnetlink/debian/libnfnetlink0.install
   trunk/libnfnetlink/debian/rules
Modified:
   trunk/libnfnetlink/Makefile.am
   trunk/libnfnetlink/configure.in
Log:
add debian support (Max Kellermann)


Modified: trunk/libnfnetlink/Makefile.am
===================================================================
--- trunk/libnfnetlink/Makefile.am	2006-01-07 15:03:04 UTC (rev 6350)
+++ trunk/libnfnetlink/Makefile.am	2006-01-07 15:11:38 UTC (rev 6351)
@@ -1,6 +1,6 @@
 AUTOMAKE_OPTIONS = foreign dist-bzip2 1.6
 
-EXTRA_DIST = $(man_MANS)
+EXTRA_DIST = $(man_MANS) debian
 
 SUBDIRS = src include
 DIST_SUBDIRS = src include
@@ -10,3 +10,6 @@
 $(OBJECTS): libtool
 libtool: $(LIBTOOL_DEPS)
 	$(SHELL) ./config.status --recheck
+
+dist-hook:
+	rm -rf `find $(distdir)/debian -name .svn`

Modified: trunk/libnfnetlink/configure.in
===================================================================
--- trunk/libnfnetlink/configure.in	2006-01-07 15:03:04 UTC (rev 6350)
+++ trunk/libnfnetlink/configure.in	2006-01-07 15:11:38 UTC (rev 6351)
@@ -4,7 +4,7 @@
 
 AC_CANONICAL_SYSTEM
 
-AM_INIT_AUTOMAKE(libnfnetlink, 0.0.13)
+AM_INIT_AUTOMAKE(libnfnetlink, 0.0.14)
 
 AC_PROG_CC
 AC_EXEEXT

Added: trunk/libnfnetlink/debian/changelog
===================================================================
--- trunk/libnfnetlink/debian/changelog	2006-01-07 15:03:04 UTC (rev 6350)
+++ trunk/libnfnetlink/debian/changelog	2006-01-07 15:11:38 UTC (rev 6351)
@@ -0,0 +1,11 @@
+libnfnetlink (0.0.14) unstable; urgency=low
+
+  * new upstream release
+
+ -- Harald Welte <laforge at netfilter.org>  Sat, 07 Jan 2006 16:04:38 +0100
+
+libnfnetlink (0.0.13-0+pre2) unstable; urgency=low
+
+  * initial debian release
+
+ -- Max Kellermann <max at duempel.org>  Sun, 27 Nov 2005 18:10:02 +0100

Added: trunk/libnfnetlink/debian/control
===================================================================
--- trunk/libnfnetlink/debian/control	2006-01-07 15:03:04 UTC (rev 6350)
+++ trunk/libnfnetlink/debian/control	2006-01-07 15:11:38 UTC (rev 6351)
@@ -0,0 +1,23 @@
+Source: libnfnetlink
+Section: libs
+Priority: optional
+Maintainer: Max Kellermann <max at duempel.org>
+Build-Depends: cdbs (>= 0.4), debhelper (>= 4.2), gcc (>= 3.4)
+Standards-Version: 3.6.2
+
+Package: libnfnetlink0
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: Netfilter netlink library
+ libnfnetlink is a lowlevel C library which helps accessing the
+ netfilter netlink layer in the kernel.
+
+Package: libnfnetlink-dev
+Architecture: any
+Section: libdevel
+Depends: libnfnetlink0 (= ${Source-Version})
+Description: Netfilter netlink library
+ libnfnetlink is a lowlevel C library which helps accessing the
+ netfilter netlink layer in the kernel.
+ .
+ This package provides the development files.

Added: trunk/libnfnetlink/debian/copyright
===================================================================
--- trunk/libnfnetlink/debian/copyright	2006-01-07 15:03:04 UTC (rev 6350)
+++ trunk/libnfnetlink/debian/copyright	2006-01-07 15:11:38 UTC (rev 6351)
@@ -0,0 +1,9 @@
+This Debian package was created by Max Kellermann <max at duempel.org>.
+
+The upstream sources were downloaded from:
+ http://ftp.netfilter.org/pub/libnfnetlink/
+
+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.

Added: trunk/libnfnetlink/debian/libnfnetlink-dev.install
===================================================================
--- trunk/libnfnetlink/debian/libnfnetlink-dev.install	2006-01-07 15:03:04 UTC (rev 6350)
+++ trunk/libnfnetlink/debian/libnfnetlink-dev.install	2006-01-07 15:11:38 UTC (rev 6351)
@@ -0,0 +1,2 @@
+usr/lib/*.{so,a,la}
+usr/include

Added: trunk/libnfnetlink/debian/libnfnetlink0.install
===================================================================
--- trunk/libnfnetlink/debian/libnfnetlink0.install	2006-01-07 15:03:04 UTC (rev 6350)
+++ trunk/libnfnetlink/debian/libnfnetlink0.install	2006-01-07 15:11:38 UTC (rev 6351)
@@ -0,0 +1 @@
+usr/lib/*.so.*

Added: trunk/libnfnetlink/debian/rules
===================================================================
--- trunk/libnfnetlink/debian/rules	2006-01-07 15:03:04 UTC (rev 6350)
+++ trunk/libnfnetlink/debian/rules	2006-01-07 15:11:38 UTC (rev 6351)
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+# -*- mode: makefile; coding: utf-8 -*-
+
+VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f2 -d' ')
+UPSTREAM_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f2 -d' ' | cut -f1 -d-)
+DEB_TARBALL := libnfnetlink-$(UPSTREAM_VERSION).tar.bz2
+DEB_TAR_SRCDIR := libnfnetlink-$(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




More information about the netfilter-cvslog mailing list