summaryrefslogtreecommitdiffstats
path: root/networkmanager/Pkgfile
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2012-01-08 12:15:45 +0100
committertnut <tnut at nutyx dot com>2012-01-08 12:15:45 +0100
commit3f57a7f93b3e7550cbd73036f6a56654e17d1d5c (patch)
tree819b14ab0377fe2054fe59866669d904e9e0b4b5 /networkmanager/Pkgfile
parentc9972ec7f32bf9d37388e853fe9bf633e242d05a (diff)
downloadnutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.gz
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.bz2
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.xz
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.zip
split de git pakxe et NuTyX-extra
Diffstat (limited to 'networkmanager/Pkgfile')
-rw-r--r--networkmanager/Pkgfile49
1 files changed, 49 insertions, 0 deletions
diff --git a/networkmanager/Pkgfile b/networkmanager/Pkgfile
new file mode 100644
index 000000000..b0eff5d2a
--- /dev/null
+++ b/networkmanager/Pkgfile
@@ -0,0 +1,49 @@
+# Description: Utilitaire permettant de simplifier la configuration du réseau
+# URL: http://projects.gnome.org/NetworkManager/
+# Maintainer: NuTyX Core Team
+# Packager: piernov <piernov@piernov.org>
+# Depends on: dbus-glib, iproute2, libnl, nss, polkit, wireless_tools, wpa_supplicant, ppp, iptables, bluez, gtk-doc, intltool, gobject-introspection
+# Run on: dbus-glib,iproute2,libnl,nss,polkit,wireless_tools,wpa_supplicant,ppp,iptables,bluez
+
+
+name=networkmanager
+version=0.9.1.95
+release=2
+_name=NetworkManager
+source=(http://ftp.gnome.org/pub/GNOME/sources/$_name/${version%.*.*}/$_name-$version.tar.xz
+ NuTyX.patch)
+
+build() {
+ cd ${_name}-$version
+ patch -p1 < ../NuTyX.patch
+ aclocal
+ autoconf
+ automake
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --with-system-ca-path=/etc/ssl/certs \
+ --with-resolvconf=yes \
+ --with-distro=nutyx \
+ --with-crypto=nss \
+ --with-dhclient=/usr/sbin/dhclient \
+ --with-dhcpcd=/sbin/dhcpcd \
+ --with-iptables=/usr/sbin/iptables \
+ --with-tests=yes \
+ --enable-polkit \
+ --enable-introspection=yes \
+ --disable-wimax
+ make
+ make DESTDIR=$PKG install
+
+ cat > $PKG/etc/NetworkManager/NetworkManager.conf << EOF
+[main]
+plugins=keyfile
+EOF
+
+ # create a VPN directory
+ install -d $PKG/etc/$_name/VPN
+ install -m755 test/.libs/nm-online -D $PKG/usr/bin/nm-online
+ # create keyfile plugin system-settings directory
+ install -d $PKG/etc/$_name/system-connections
+}