[Pkg-utopia-commits] r926 - in packages/unstable/libnl/debian: . patches

Michael Biebl mbiebl-guest at costa.debian.org
Thu Aug 10 20:00:44 UTC 2006


Author: mbiebl-guest
Date: 2006-08-10 20:00:43 +0000 (Thu, 10 Aug 2006)
New Revision: 926

Added:
   packages/unstable/libnl/debian/patches/20-autoconf-dirs.patch
Modified:
   packages/unstable/libnl/debian/changelog
   packages/unstable/libnl/debian/control
   packages/unstable/libnl/debian/rules
Log:
- Update to svn revison 30.
- Use ~ in version number as dak supports it now.
- 20-autoconf-dirs.patch fixes some problems with wrong installation directories.


Modified: packages/unstable/libnl/debian/changelog
===================================================================
--- packages/unstable/libnl/debian/changelog	2006-08-08 02:28:35 UTC (rev 925)
+++ packages/unstable/libnl/debian/changelog	2006-08-10 20:00:43 UTC (rev 926)
@@ -1,3 +1,14 @@
+libnl (1.0~pre6~svn30-1) unstable; urgency=low
+
+  * Updated to svn revision 30.
+  * Bumped Standards-Version to 3.7.2, no further changes required.
+  * Now that dak officially supports ~ in the version number, let's make use
+    of it.
+  * Some install directories were not set correctly, 20-autoconf-dirs.patch
+    fixes that.
+
+ -- Michael Biebl <biebl at teco.edu>  Thu, 10 Aug 2006 19:51:42 +0200
+
 libnl (0.99+1.0.svn21-4) unstable; urgency=low
 
   * Do not create bogus /usr/lib/pkg-config directory. Closes: #364601 

Modified: packages/unstable/libnl/debian/control
===================================================================
--- packages/unstable/libnl/debian/control	2006-08-08 02:28:35 UTC (rev 925)
+++ packages/unstable/libnl/debian/control	2006-08-10 20:00:43 UTC (rev 926)
@@ -2,8 +2,8 @@
 Section: net
 Priority: optional
 Maintainer: Michael Biebl <biebl at teco.edu>
-Build-Depends: debhelper (>= 5), cdbs
-Standards-Version: 3.6.2
+Build-Depends: debhelper (>= 5.0.0), cdbs
+Standards-Version: 3.7.2
 
 Package: libnl1-pre6
 Architecture: any
@@ -16,7 +16,7 @@
  The library provides an interface for raw netlink messaging and various 
  netlink family specific interfaces.
  .
-  Homepage http://people.suug.ch/~tgr/libnl/
+  Homepage: http://people.suug.ch/~tgr/libnl/
 
 Package: libnl-dev
 Architecture: any
@@ -27,4 +27,4 @@
  The library provides an interface for raw netlink messaging and various 
  netlink family specific interfaces.
  .
-  Homepage http://people.suug.ch/~tgr/libnl/
+  Homepage: http://people.suug.ch/~tgr/libnl/

Added: packages/unstable/libnl/debian/patches/20-autoconf-dirs.patch
===================================================================
--- packages/unstable/libnl/debian/patches/20-autoconf-dirs.patch	2006-08-08 02:28:35 UTC (rev 925)
+++ packages/unstable/libnl/debian/patches/20-autoconf-dirs.patch	2006-08-10 20:00:43 UTC (rev 926)
@@ -0,0 +1,57 @@
+Index: include/Makefile
+===================================================================
+--- include/Makefile	(Revision 26)
++++ include/Makefile	(Arbeitskopie)
+@@ -25,11 +25,11 @@
+ 	@true
+ 
+ install:
+-	mkdir -p $(DESTDIR)$(prefix)/include/netlink/route/sch/
+-	mkdir -p $(DESTDIR)$(prefix)/include/netlink/route/cls/
+-	mkdir -p $(DESTDIR)$(prefix)/include/netlink/fib_lookup/
+-	install -o root -g root -m 0644 netlink/*.h $(DESTDIR)$(prefix)/include/netlink/
+-	install -o root -g root -m 0644 netlink/route/*.h $(DESTDIR)$(prefix)/include/netlink/route/
+-	install -o root -g root -m 0644 netlink/route/sch/*.h $(DESTDIR)$(prefix)/include/netlink/route/sch/
+-	install -o root -g root -m 0644 netlink/route/cls/*.h $(DESTDIR)$(prefix)/include/netlink/route/cls/
+-	install -o root -g root -m 0644 netlink/fib_lookup/*.h $(DESTDIR)$(prefix)/include/netlink/fib_lookup/
++	mkdir -p $(DESTDIR)$(includedir)/netlink/route/sch/
++	mkdir -p $(DESTDIR)$(includedir)/netlink/route/cls/
++	mkdir -p $(DESTDIR)$(includedir)/netlink/fib_lookup/
++	install -o root -g root -m 0644 netlink/*.h $(DESTDIR)$(includedir)/netlink/
++	install -o root -g root -m 0644 netlink/route/*.h $(DESTDIR)$(includedir)/netlink/route/
++	install -o root -g root -m 0644 netlink/route/sch/*.h $(DESTDIR)$(includedir)/netlink/route/sch/
++	install -o root -g root -m 0644 netlink/route/cls/*.h $(DESTDIR)$(includedir)/netlink/route/cls/
++	install -o root -g root -m 0644 netlink/fib_lookup/*.h $(DESTDIR)$(includedir)/netlink/fib_lookup/
+Index: lib/Makefile
+===================================================================
+--- lib/Makefile	(Revision 26)
++++ lib/Makefile	(Arbeitskopie)
+@@ -57,12 +57,12 @@
+ 	find .deps -iname \*\.d -exec rm -f '{}' \;
+ 
+ install:
+-	mkdir -p $(DESTDIR)$(prefix)$(libdir)/
+-	install -o root -g root -m 0644 $(OUT_SLIB) $(DESTDIR)$(prefix)$(libdir)
++	mkdir -p $(DESTDIR)$(libdir)/
++	install -o root -g root -m 0644 $(OUT_SLIB) $(DESTDIR)$(libdir)
+ 	rm -f $(DESTDIR)$(prefix)$(libdir)/$(LN1_SLIB) ; \
+-	$(LN) -s $(OUT_SLIB) $(DESTDIR)$(prefix)$(libdir)/$(LN1_SLIB)
++	$(LN) -s $(OUT_SLIB) $(DESTDIR)$(libdir)/$(LN1_SLIB)
+ 	rm -f $(DESTDIR)$(prefix)$(libdir)/$(LN_SLIB) ; \
+-	$(LN) -s $(LN1_SLIB) $(DESTDIR)$(prefix)$(libdir)/$(LN_SLIB)
++	$(LN) -s $(LN1_SLIB) $(DESTDIR)$(libdir)/$(LN_SLIB)
+ 
+ $(DEPS): ../Makefile.opts
+ 
+Index: Makefile.opts.in
+===================================================================
+--- Makefile.opts.in	(Revision 26)
++++ Makefile.opts.in	(Arbeitskopie)
+@@ -21,6 +21,7 @@
+ prefix           := @prefix@
+ exec_prefix      := @exec_prefix@
+ libdir           := @libdir@
++includedir       := @includedir@
+ mandir           := @mandir@
+ sysconfdir       := @sysconfdir@
+ 

Modified: packages/unstable/libnl/debian/rules
===================================================================
--- packages/unstable/libnl/debian/rules	2006-08-08 02:28:35 UTC (rev 925)
+++ packages/unstable/libnl/debian/rules	2006-08-10 20:00:43 UTC (rev 926)
@@ -4,4 +4,3 @@
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/cdbs/1/rules/simple-patchsys.mk
 
-DEB_CONFIGURE_EXTRA_FLAGS := --libdir=/usr/lib




More information about the Pkg-utopia-commits mailing list