45 lines
1.4 KiB
Plaintext
45 lines
1.4 KiB
Plaintext
# Tanım: Ağın daha doğrudan yönetilebilir olmasını sağlayan basitleştiren ve geliştiren araçlar
|
||
# URL: http://projects.gnome.org/NetworkManager/
|
||
# Paketçi: milisarge
|
||
# Gerekler: libndp libsoup libgudev modemmanager dbus-glib iptables libnl nss wireless-tools polkit upower vala wpa-supplicant gobject-introspection newt
|
||
|
||
_isim=NetworkManager
|
||
|
||
isim=networkmanager
|
||
surum=1.4.2
|
||
devir=1
|
||
|
||
kaynak=(http://ftp.gnome.org/pub/gnome/sources/$_name/${surum%.*}/$_name-$surum.tar.xz)
|
||
|
||
derle() {
|
||
|
||
cd ${_name}-$surum
|
||
./configure --prefix=/usr \
|
||
--sysconfdir=/etc \
|
||
--localstatedir=/var \
|
||
--with-nmtui \
|
||
--with-modem-manager-1 \
|
||
--with-session-tracking=consolekit \
|
||
--with-suspend-resume=upower \
|
||
--with-dbus-sys-dir=/etc/dbus-1/system.d \
|
||
--docdir=/usr/share/doc/networkmanager-$surum \
|
||
--with-systemdsystemunitdir=no \
|
||
--disable-ppp
|
||
|
||
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/ if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/ func_append compile_command " -Wl,-O1,--as-needed"\n func_append finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
|
||
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 clients/.libs/nm-online -D $PKG/usr/bin/nm-online
|
||
# create keyfile plugin system-settings directory
|
||
install -d $PKG/etc/$_name/system-connections
|
||
|
||
}
|