2010-04-13 01:44:24 +02:00
|
|
|
# Template file for 'NetworkManager'
|
|
|
|
pkgname=NetworkManager
|
2015-05-05 17:02:23 +02:00
|
|
|
version=1.0.2
|
|
|
|
revision=1
|
2011-10-24 14:14:47 +02:00
|
|
|
build_style=gnu-configure
|
2015-03-28 20:35:22 +01:00
|
|
|
configure_args="--without-dhcpcd --with-dhclient=/usr/sbin/dhclient
|
2012-10-27 09:21:53 +02:00
|
|
|
--with-system-ca-path=/etc/ssl/certs --enable-more-warnings=no
|
2015-01-13 17:36:50 +01:00
|
|
|
--with-crypto=gnutls --disable-static --enable-ppp
|
2014-12-20 08:57:58 +01:00
|
|
|
--with-udev-dir=/usr/lib/udev $(vopt_enable gir introspection)
|
2013-02-21 09:12:46 +01:00
|
|
|
--with-kernel-firmware-dir=/usr/lib/firmware --disable-wimax
|
2014-08-23 14:47:29 +02:00
|
|
|
--with-pppd-plugin-dir=/usr/lib/pppd/2.4.7 --enable-modify-system
|
2013-10-11 17:35:07 +02:00
|
|
|
--with-modem-manager-1 --with-resolvconf=/usr/bin/resolvconf
|
2014-12-20 08:57:58 +01:00
|
|
|
--enable-polkit-agent --enable-tests=no
|
2014-02-19 10:22:27 +01:00
|
|
|
ac_cv_file__etc_redhat_release=no ac_cv_file__etc_gentoo_release=no
|
|
|
|
ac_cv_file__etc_fedora_release=no ac_cv_file__etc_mandriva_release=no
|
|
|
|
ac_cv_file__etc_SuSE_release=no ac_cv_file__etc_debian_version=no"
|
2010-04-13 01:44:24 +02:00
|
|
|
short_desc="Network Management daemon"
|
2015-04-10 09:16:30 +02:00
|
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
2014-02-20 11:55:57 +01:00
|
|
|
homepage="https://wiki.gnome.org/Projects/NetworkManager"
|
2011-10-29 12:05:21 +02:00
|
|
|
license="GPL-2"
|
2014-12-20 08:57:58 +01:00
|
|
|
distfiles="${GNOME_SITE}/$pkgname/${version%.*}/$pkgname-$version.tar.xz"
|
2015-05-05 17:02:23 +02:00
|
|
|
checksum=359385707494bedbb48cfe0992ccfbcc4ac147dae1f7a47055c71e96439508ff
|
2013-07-20 06:02:05 +02:00
|
|
|
|
2014-02-19 10:22:27 +01:00
|
|
|
hostmakedepends="
|
2014-06-16 14:17:37 +02:00
|
|
|
automake libtool pkg-config intltool gnutls-devel glib-devel dbus-glib-devel
|
2015-03-28 20:35:22 +01:00
|
|
|
gettext-devel gtk-doc dbus iproute2 dhclient wpa_supplicant bluez iptables
|
2014-12-20 08:57:58 +01:00
|
|
|
$(vopt_if gir gobject-introspection)"
|
2013-10-11 17:35:07 +02:00
|
|
|
makedepends="libuuid-devel gnutls-devel dbus-glib-devel libgudev-devel
|
2015-03-27 10:50:40 +01:00
|
|
|
libnl3-devel polkit-devel ppp-devel iptables-devel libsoup-devel
|
2015-01-13 17:36:50 +01:00
|
|
|
ModemManager-devel readline-devel libndp-devel"
|
2010-04-13 01:44:24 +02:00
|
|
|
|
2014-03-29 12:20:33 +01:00
|
|
|
lib32disabled=yes
|
2015-03-28 20:35:22 +01:00
|
|
|
depends="dbus iproute2 dhclient wpa_supplicant"
|
2014-01-29 10:26:07 +01:00
|
|
|
conf_files="/etc/${pkgname}/${pkgname}.conf"
|
2014-12-20 08:57:58 +01:00
|
|
|
make_dirs="
|
2015-01-27 22:04:15 +01:00
|
|
|
/etc/NetworkManager/system-connections 0750 root root
|
2014-12-20 08:57:58 +01:00
|
|
|
/etc/NetworkManager/dispatcher.d/pre-up.d 0750 root root
|
|
|
|
/etc/NetworkManager/dispatcher.d/pre-down.d 0750 root root
|
|
|
|
"
|
2014-01-29 10:26:07 +01:00
|
|
|
|
|
|
|
# Package build options
|
2014-05-20 14:20:46 +02:00
|
|
|
build_options="gir systemd"
|
2014-01-29 10:26:07 +01:00
|
|
|
# Disable gir for cross builds.
|
|
|
|
if [ -z "$CROSS_BUILD" ]; then
|
2014-05-20 14:20:46 +02:00
|
|
|
build_options_default+=" gir"
|
2014-01-29 10:26:07 +01:00
|
|
|
fi
|
|
|
|
|
2014-05-20 14:20:46 +02:00
|
|
|
if [ "$build_option_systemd" ]; then
|
|
|
|
configure_args+=" --with-session-tracking=systemd --with-suspend-resume=systemd"
|
2014-08-21 10:59:03 +02:00
|
|
|
configure_args+=" --with-systemdsystemunitdir=/usr/lib/systemd/system"
|
2014-05-20 14:20:46 +02:00
|
|
|
makedepends+=" systemd-devel"
|
|
|
|
else
|
|
|
|
configure_args+=" --with-session-tracking=consolekit --with-suspend-resume=upower"
|
|
|
|
fi
|
|
|
|
|
2013-10-11 17:35:07 +02:00
|
|
|
pre_configure() {
|
2014-06-16 14:17:37 +02:00
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
2014-02-19 10:22:27 +01:00
|
|
|
|
2013-10-11 17:35:07 +02:00
|
|
|
# Full switch to /run to not depend on /var/run being a symlink.
|
|
|
|
sed -e 's,^nmrundir=.*$,nmrundir=\"/run/\$PACKAGE\",' -i configure
|
|
|
|
}
|
|
|
|
|
2012-01-28 17:30:30 +01:00
|
|
|
post_install() {
|
|
|
|
vinstall ${FILESDIR}/${pkgname}.conf 644 etc/${pkgname}
|
2014-10-13 12:10:02 +02:00
|
|
|
if [ "$build_option_systemd" ]; then
|
|
|
|
vinstall ${FILESDIR}/tmpfilesd 644 usr/lib/tmpfiles.d ${pkgname}.conf
|
|
|
|
fi
|
2014-01-29 10:26:07 +01:00
|
|
|
# remove unused stuff
|
2013-10-11 17:35:07 +02:00
|
|
|
rm -rf ${DESTDIR}/etc/init.d
|
2014-10-13 12:10:02 +02:00
|
|
|
vsv ${pkgname}
|
2010-04-13 01:44:24 +02:00
|
|
|
}
|
2013-04-12 09:01:46 +02:00
|
|
|
|
|
|
|
libnm_package() {
|
2013-05-23 03:28:50 +02:00
|
|
|
short_desc+=" - shared libraries"
|
2013-04-12 09:01:46 +02:00
|
|
|
pkg_install() {
|
2013-10-11 11:25:36 +02:00
|
|
|
vmove "usr/lib/*.so.*"
|
2014-01-29 10:26:07 +01:00
|
|
|
if [ "$build_option_gir" ]; then
|
|
|
|
vmove usr/lib/girepository-1.0
|
|
|
|
fi
|
2013-04-12 09:01:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
NetworkManager-devel_package() {
|
|
|
|
depends="dbus-glib-devel libnm-${version}_${revision}"
|
2013-05-23 03:28:50 +02:00
|
|
|
short_desc+=" - development files"
|
2013-04-12 09:01:46 +02:00
|
|
|
pkg_install() {
|
|
|
|
vmove usr/include
|
|
|
|
vmove usr/lib/pkgconfig
|
2013-07-20 06:02:05 +02:00
|
|
|
vmove "usr/lib/*.so"
|
2014-01-29 10:26:07 +01:00
|
|
|
if [ "$build_option_gir" ]; then
|
|
|
|
vmove usr/share/gir-1.0
|
|
|
|
fi
|
2013-07-20 06:02:05 +02:00
|
|
|
vmove usr/share/gtk-doc
|
2013-04-12 09:01:46 +02:00
|
|
|
}
|
|
|
|
}
|