[Lunar-commits] <moonbase> connman: move to net
Auke Kok
sofar at foo-projects.org
Tue Jun 21 07:46:10 CEST 2011
commit 371e437327887d37bcad787316d0ec4492b43b90
Author: Auke Kok <auke at foo-projects.org>
Date: Tue Jun 21 07:46:10 2011 +0200
connman: move to net
---
net/connman-gnome/BUILD | 6 ++++++
net/connman-gnome/DEPENDS | 3 +++
net/connman-gnome/DETAILS | 14 ++++++++++++++
net/connman/BUILD | 26 ++++++++++++++++++++++++++
net/connman/DEPENDS | 5 +++++
net/connman/DETAILS | 22 ++++++++++++++++++++++
net/connman/init.d/connmand | 10 ++++++++++
net/connman/systemd.d/connman.service | 11 +++++++++++
zbeta/connman-gnome/BUILD | 6 ------
zbeta/connman-gnome/DEPENDS | 3 ---
zbeta/connman-gnome/DETAILS | 14 --------------
zbeta/connman/BUILD | 26 --------------------------
zbeta/connman/DEPENDS | 5 -----
zbeta/connman/DETAILS | 22 ----------------------
zbeta/connman/init.d/connmand | 10 ----------
zbeta/connman/systemd.d/connman.service | 11 -----------
16 files changed, 97 insertions(+), 97 deletions(-)
diff --git a/net/connman-gnome/BUILD b/net/connman-gnome/BUILD
new file mode 100644
index 0000000..385d629
--- /dev/null
+++ b/net/connman-gnome/BUILD
@@ -0,0 +1,6 @@
+(
+
+ sh bootstrap
+ default_build
+
+) > $C_FIFO 2>&1
diff --git a/net/connman-gnome/DEPENDS b/net/connman-gnome/DEPENDS
new file mode 100644
index 0000000..dfc690e
--- /dev/null
+++ b/net/connman-gnome/DEPENDS
@@ -0,0 +1,3 @@
+depends gtk+-2
+depends dbus
+depends XML-Parser
diff --git a/net/connman-gnome/DETAILS b/net/connman-gnome/DETAILS
new file mode 100644
index 0000000..ef73ca9
--- /dev/null
+++ b/net/connman-gnome/DETAILS
@@ -0,0 +1,14 @@
+ MODULE=connman-gnome
+ VERSION=20110502
+ SOURCE=${MODULE}-${VERSION}.tar.bz2
+ SOURCE_URL=http://www.kernel.org/pub/linux/network/connman/
+ SOURCE_URL[2]=$MIRROR_URL
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION
+ SOURCE_VFY=sha1:97921a32be407100f2f4bb1c59f25a9c1d0f83e1
+ WEB_SITE="http://connman.net/"
+ ENTERED=20110502
+ UPDATED=20110502
+ SHORT="Gtk frontend for connman"
+cat <<EOF
+A simple Gtk frontend to the connman network connection manager.
+EOF
diff --git a/net/connman/BUILD b/net/connman/BUILD
new file mode 100644
index 0000000..137a827
--- /dev/null
+++ b/net/connman/BUILD
@@ -0,0 +1,26 @@
+(
+
+ patch_it $SOURCE2 1 &&
+
+ # --enable-iwmx -- needs intel wimax tools
+
+ OPTS+=" --enable-ethernet=builtin
+ --enable-wifi=builtin
+ --enable-ofono=builtin
+ --enable-bluetooth=builtin
+ --enable-loopback=builtin
+ --enable-portal=builtin
+ --enable-meego=builtin
+ --enable-openconnect=builtin
+ --enable-openvpn=builtin
+ --enable-pacrunner=builtin
+ --enable-ntpd=builtin
+ --with-ntpd=/usr/sbin/ntpd
+ --enable-threads
+ --enable-test
+ --enable-pie
+ --enable-iospm
+ --enable-polkit" &&
+ default_build
+
+) > $C_FIFO 2>&1
diff --git a/net/connman/DEPENDS b/net/connman/DEPENDS
new file mode 100644
index 0000000..fd3e126
--- /dev/null
+++ b/net/connman/DEPENDS
@@ -0,0 +1,5 @@
+depends dbus
+depends glib-2
+depends dhcp
+depends resolvconf
+depends wpa_supplicant
diff --git a/net/connman/DETAILS b/net/connman/DETAILS
new file mode 100644
index 0000000..bdf621d
--- /dev/null
+++ b/net/connman/DETAILS
@@ -0,0 +1,22 @@
+ MODULE=connman
+ VERSION=0.73
+ SOURCE=${MODULE}-${VERSION}.tar.bz2
+ SOURCE2=connman-0.74-merge-xtables-v5-extra-param.patch
+ SOURCE_URL=http://www.kernel.org/pub/linux/network/connman/
+ SOURCE2_URL=http://foo-projects.org/~sofar/
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION
+ WEB_SITE="http://connman.net/"
+ ENTERED=20110202
+ UPDATED=20110424
+ SHORT="Fast and moduler network connection manager."
+cat <<EOF
+The ConnMan project provides a daemon for managing internet connections
+within embedded devices running the Linux operating system. The
+Connection Manager is designed to be slim and to use as few resources
+as possible, so it can be easily integrated. It is a fully modular
+system that can be extended, through plug-ins, to support all kinds
+of wired or wireless technologies. Also, configuration methods, like
+DHCP and domain name resolving, are implemented using plug-ins. The
+plug-in approach allows for easy adaption and modification for various
+use cases.
+EOF
diff --git a/net/connman/init.d/connmand b/net/connman/init.d/connmand
new file mode 100644
index 0000000..8b9d0bf
--- /dev/null
+++ b/net/connman/init.d/connmand
@@ -0,0 +1,10 @@
+#! /bin/bash
+#
+# connmand Start/Stop the connmand network connection manager
+#
+# chkconfig: 345 15 90
+# description: network connection manager daemon
+# processname: connmand
+# pidfile: /var/run/connmand.pid
+
+. /lib/lsb/init-functions
diff --git a/net/connman/systemd.d/connman.service b/net/connman/systemd.d/connman.service
new file mode 100644
index 0000000..26fb023
--- /dev/null
+++ b/net/connman/systemd.d/connman.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Connection service
+After=syslog.target
+
+[Service]
+Type=dbus
+BusName=net.connman
+ExecStart=/usr/sbin/connmand -n
+
+[Install]
+WantedBy=multi-user.target
diff --git a/zbeta/connman-gnome/BUILD b/zbeta/connman-gnome/BUILD
deleted file mode 100644
index 385d629..0000000
--- a/zbeta/connman-gnome/BUILD
+++ /dev/null
@@ -1,6 +0,0 @@
-(
-
- sh bootstrap
- default_build
-
-) > $C_FIFO 2>&1
diff --git a/zbeta/connman-gnome/DEPENDS b/zbeta/connman-gnome/DEPENDS
deleted file mode 100644
index dfc690e..0000000
--- a/zbeta/connman-gnome/DEPENDS
+++ /dev/null
@@ -1,3 +0,0 @@
-depends gtk+-2
-depends dbus
-depends XML-Parser
diff --git a/zbeta/connman-gnome/DETAILS b/zbeta/connman-gnome/DETAILS
deleted file mode 100644
index ef73ca9..0000000
--- a/zbeta/connman-gnome/DETAILS
+++ /dev/null
@@ -1,14 +0,0 @@
- MODULE=connman-gnome
- VERSION=20110502
- SOURCE=${MODULE}-${VERSION}.tar.bz2
- SOURCE_URL=http://www.kernel.org/pub/linux/network/connman/
- SOURCE_URL[2]=$MIRROR_URL
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION
- SOURCE_VFY=sha1:97921a32be407100f2f4bb1c59f25a9c1d0f83e1
- WEB_SITE="http://connman.net/"
- ENTERED=20110502
- UPDATED=20110502
- SHORT="Gtk frontend for connman"
-cat <<EOF
-A simple Gtk frontend to the connman network connection manager.
-EOF
diff --git a/zbeta/connman/BUILD b/zbeta/connman/BUILD
deleted file mode 100644
index 137a827..0000000
--- a/zbeta/connman/BUILD
+++ /dev/null
@@ -1,26 +0,0 @@
-(
-
- patch_it $SOURCE2 1 &&
-
- # --enable-iwmx -- needs intel wimax tools
-
- OPTS+=" --enable-ethernet=builtin
- --enable-wifi=builtin
- --enable-ofono=builtin
- --enable-bluetooth=builtin
- --enable-loopback=builtin
- --enable-portal=builtin
- --enable-meego=builtin
- --enable-openconnect=builtin
- --enable-openvpn=builtin
- --enable-pacrunner=builtin
- --enable-ntpd=builtin
- --with-ntpd=/usr/sbin/ntpd
- --enable-threads
- --enable-test
- --enable-pie
- --enable-iospm
- --enable-polkit" &&
- default_build
-
-) > $C_FIFO 2>&1
diff --git a/zbeta/connman/DEPENDS b/zbeta/connman/DEPENDS
deleted file mode 100644
index fd3e126..0000000
--- a/zbeta/connman/DEPENDS
+++ /dev/null
@@ -1,5 +0,0 @@
-depends dbus
-depends glib-2
-depends dhcp
-depends resolvconf
-depends wpa_supplicant
diff --git a/zbeta/connman/DETAILS b/zbeta/connman/DETAILS
deleted file mode 100644
index bdf621d..0000000
--- a/zbeta/connman/DETAILS
+++ /dev/null
@@ -1,22 +0,0 @@
- MODULE=connman
- VERSION=0.73
- SOURCE=${MODULE}-${VERSION}.tar.bz2
- SOURCE2=connman-0.74-merge-xtables-v5-extra-param.patch
- SOURCE_URL=http://www.kernel.org/pub/linux/network/connman/
- SOURCE2_URL=http://foo-projects.org/~sofar/
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/$MODULE-$VERSION
- WEB_SITE="http://connman.net/"
- ENTERED=20110202
- UPDATED=20110424
- SHORT="Fast and moduler network connection manager."
-cat <<EOF
-The ConnMan project provides a daemon for managing internet connections
-within embedded devices running the Linux operating system. The
-Connection Manager is designed to be slim and to use as few resources
-as possible, so it can be easily integrated. It is a fully modular
-system that can be extended, through plug-ins, to support all kinds
-of wired or wireless technologies. Also, configuration methods, like
-DHCP and domain name resolving, are implemented using plug-ins. The
-plug-in approach allows for easy adaption and modification for various
-use cases.
-EOF
diff --git a/zbeta/connman/init.d/connmand b/zbeta/connman/init.d/connmand
deleted file mode 100644
index 8b9d0bf..0000000
--- a/zbeta/connman/init.d/connmand
+++ /dev/null
@@ -1,10 +0,0 @@
-#! /bin/bash
-#
-# connmand Start/Stop the connmand network connection manager
-#
-# chkconfig: 345 15 90
-# description: network connection manager daemon
-# processname: connmand
-# pidfile: /var/run/connmand.pid
-
-. /lib/lsb/init-functions
diff --git a/zbeta/connman/systemd.d/connman.service b/zbeta/connman/systemd.d/connman.service
deleted file mode 100644
index 26fb023..0000000
--- a/zbeta/connman/systemd.d/connman.service
+++ /dev/null
@@ -1,11 +0,0 @@
-[Unit]
-Description=Connection service
-After=syslog.target
-
-[Service]
-Type=dbus
-BusName=net.connman
-ExecStart=/usr/sbin/connmand -n
-
-[Install]
-WantedBy=multi-user.target
More information about the Lunar-commits
mailing list