about summary refs log tree commit diff
path: root/debian
diff options
context:
space:
mode:
authorMichael Biebl <biebl@teco.edu>2006-02-08 19:54:26 +0000
committerMichael Biebl <biebl@teco.edu>2006-02-08 19:54:26 +0000
commita9dd8a1292c4570dc3213e694f9ddeee5f5154ba (patch)
tree2fadb93cd42b7ff1fe8870722766c7e16501458e /debian
parent1bf71e3d28c83b4c1f8eed47f5159b903402ea44 (diff)
Add a separate binary package for libnm-util.
Added build dependency on libnl and tightened the build-dep on libhal according to configure.in
Added myself to Uploaders.
Set dh_compat to 5 (recommended version) and tightended the build-dep on debhelper accourdingly.
Added a Recommeds: wpasupplicant (>= 0.5.1) to network-manager



git-svn-id: svn+ssh://svn.debian.org/svn/pkg-utopia/packages/experimental/networkmanager@558 ceb527fc-18e6-0310-9fe2-813c157c29e7
Diffstat (limited to 'debian')
-rw-r--r--debian/compat2
-rw-r--r--debian/control43
-rw-r--r--debian/libnm-util-dev.install12
-rw-r--r--debian/libnm-util0.install1
4 files changed, 51 insertions, 7 deletions
diff --git a/debian/compat b/debian/compat
index b8626c4c..7ed6ff82 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-4
+5
diff --git a/debian/control b/debian/control
index 09660b61..3d8f7cdb 100644
--- a/debian/control
+++ b/debian/control
@@ -2,12 +2,15 @@ Source: network-manager
 Section: net
 Priority: optional
 Maintainer: Riccardo Setti <giskard@autistici.org>
-Build-Depends: debhelper (>= 4.0.0), cdbs, gnome-common, intltool, libgnome-keyring-dev, libdbus-glib-1-dev (>= 0.60), libiw-dev(>= 27+28pre9), libgnomeui-dev, libpanel-applet2-dev, libglade2-dev, libgconf2-dev, libhal-dev, docbook-to-man
+Uploaders: Michael Biebl <biebl@teco.edu>
+Build-Depends: debhelper (>= 5), cdbs, gnome-common, intltool, libgnome-keyring-dev, libdbus-glib-1-dev (>= 0.60), libiw-dev(>= 27+28pre9), libgnomeui-dev, libpanel-applet2-dev, libglade2-dev, libgconf2-dev, libhal-dev (>= 0.5.0), libnl-dev (>= 1.0pre6), docbook-to-man
 Standards-Version: 3.6.2
 
 Package: network-manager
 Architecture: any
+Section: net
 Depends: ${shlibs:Depends}, ${misc:Depends}, iproute, iputils-arping, dhcdbd (>= 1.10), lsb-base (>= 2.0-6)
+Recommends: wpasupplicant (>= 0.5.1)
 Description: network management framework daemon
  NetworkManager attempts to keep an active network connection available at all
  times. It is intended only for the desktop use-case, and is not intended for
@@ -22,7 +25,7 @@ Package: network-manager-gnome
 Architecture: any
 Section: gnome
 Depends: ${shlibs:Depends}, ${misc:Depends}, network-manager
-Description: network management framework daemon
+Description: network management framework (GNOME frontend)
  NetworkManager attempts to keep an active network connection available at all
  times. It is intended only for the desktop use-case, and is not intended for
  usage on servers. The point of NetworkManager is to make networking
@@ -36,7 +39,7 @@ Package: network-manager-dev
 Architecture: any
 Section: devel
 Depends: ${shlibs:Depends}, ${misc:Depends}, pkg-config
-Description: network management framework daemon development
+Description: network management framework daemon (development files)
  this package provides header files that are needed to 
  compile VPN Plugins for NetworManager.
 
@@ -44,7 +47,7 @@ Package: libnm-glib0
 Section: libs
 Architecture: any
 Depends: ${shlibs:Depends}
-Description: network management framework daemon (GLib shared library)
+Description: network management framework (GLib shared library)
  NetworkManager attempts to keep an active network connection available at all
  times. It is intended only for the desktop use-case, and is not intended for
  usage on servers. The point of NetworkManager is to make networking
@@ -58,8 +61,8 @@ Description: network management framework daemon (GLib shared library)
 Package: libnm-glib-dev
 Section: libdevel
 Architecture: any
-Depends: libglib2.0-dev, libnm-glib0 (= ${Source-Version}), libdbus-glib-1-dev (>= 0.60)
-Description: network management framework daemon (GLib interface)
+Depends: libnm-glib0 (= ${Source-Version}), libglib2.0-dev, libdbus-glib-1-dev (>= 0.60)
+Description: network management framework (GLib interface)
  NetworkManager attempts to keep an active network connection available at all
  times. It is intended only for the desktop use-case, and is not intended for
  usage on servers. The point of NetworkManager is to make networking
@@ -69,3 +72,31 @@ Description: network management framework daemon (GLib interface)
  .
  This package provides the interface that applications can use to query
  connection status via NetworkManager.
+ 
+Package: libnm-util0
+Section: libs
+Architecture: any
+Depends: ${shlibs:Depends}
+Description: network management framework (shared library)
+ NetworkManager attempts to keep an active network connection available at all
+ times. It is intended only for the desktop use-case, and is not intended for
+ usage on servers. The point of NetworkManager is to make networking
+ configuration and setup as painless and automatic as possible.  If using DHCP,
+ NetworkManager is _intended_ to replace default routes, obtain IP addresses
+ from a DHCP server, and change nameservers whenever it sees fit.
+ .
+ This package contains a convenience library to ease the access to NetworkManager.
+
+Package: libnm-util-dev
+Section: libdevel
+Architecture: any
+Depends: libnm-util0 (= ${Source-Version}), libglib2.0-dev, libdbus-glib-1-dev (>= 0.60)
+Description: network management framework (development files)
+ NetworkManager attempts to keep an active network connection available at all
+ times. It is intended only for the desktop use-case, and is not intended for
+ usage on servers. The point of NetworkManager is to make networking
+ configuration and setup as painless and automatic as possible.  If using DHCP,
+ NetworkManager is _intended_ to replace default routes, obtain IP addresses
+ from a DHCP server, and change nameservers whenever it sees fit.
+ .
+ This package contains header and development files.
diff --git a/debian/libnm-util-dev.install b/debian/libnm-util-dev.install
new file mode 100644
index 00000000..c6b4a027
--- /dev/null
+++ b/debian/libnm-util-dev.install
@@ -0,0 +1,12 @@
+debian/tmp/usr/lib/pkgconfig/libnm-util.pc
+debian/tmp/usr/lib/libnm-util.a
+debian/tmp/usr/lib/libnm-util.la
+debian/tmp/usr/lib/libnm-util.so
+debian/tmp/usr/include/NetworkManager/cipher.h
+debian/tmp/usr/include/NetworkManager/cipher-wep-hex.h
+debian/tmp/usr/include/NetworkManager/cipher-wep-passphrase.h
+debian/tmp/usr/include/NetworkManager/cipher-wep-ascii.h
+debian/tmp/usr/include/NetworkManager/cipher-wpa-psk-hex.h
+debian/tmp/usr/include/NetworkManager/cipher-wpa-psk-passphrase.h
+debian/tmp/usr/include/NetworkManager/dbus-helpers.h 
+debian/tmp/usr/include/NetworkManager/dbus-method-dispatcher.h
diff --git a/debian/libnm-util0.install b/debian/libnm-util0.install
new file mode 100644
index 00000000..051d4901
--- /dev/null
+++ b/debian/libnm-util0.install
@@ -0,0 +1 @@
+debian/tmp/usr/lib/libnm-util.so.*