blob: 604af0a72952f146d51709a2c0ab7364416bc6c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
DESCRIPTION = "NetworkManager"
SECTION = "net/misc"
LICENSE = "GPL"
HOMEPAGE = "http://www.gnome.org"
PRIORITY = "optional"
DEPENDS = "libnl dbus dbus-glib hal gconf-dbus wireless-tools"
RDEPENDS = "wpa-supplicant iproute2 dhcdbd"
PV = "0.6.5+svn${SRCDATE}"
PR = "r0"
SRC_URI="svn://svn.gnome.org/svn/NetworkManager/branches;module=NETWORKMANAGER_0_6_0_RELEASE;proto=http \
file://NetworkManager \
file://99_networkmanager"
DEFAULT_PREFERENCE = "-1"
EXTRA_OECONF = " \
--with-gnome \
--with-distro=debian \
--without-gcrypt \
--with-wpa_supplicant=/usr/sbin/wpa_supplicant \
--with-dhcdbd=/sbin/dhcdbd \
--with-ip=/sbin/ip"
S = "${WORKDIR}/NETWORKMANAGER_0_6_0_RELEASE"
inherit autotools pkgconfig
do_staging () {
autotools_stage_includes
oe_libinstall -C libnm-util libnm-util ${STAGING_LIBDIR}
oe_libinstall gnome/libnm_glib libnm_glib ${STAGING_LIBDIR}
}
do_install () {
oe_libinstall -C libnm-util libnm-util ${D}/usr/lib
oe_libinstall -C gnome/libnm_glib libnm_glib ${D}/usr/lib
oe_runmake -C src DESTDIR="${D}" install
install -d ${D}/etc/default/volatiles
install -m 0644 ${WORKDIR}/99_networkmanager ${D}/etc/default/volatiles
install -d ${D}/etc/init.d/
install -m 0755 ${WORKDIR}/NetworkManager ${D}/etc/init.d/
install -d ${D}/${datadir}/
}
pkg_postinst_${PN} () {
if [ "x$D" != "x" ]; then
exit 1
fi
/etc/init.d/populate-volatile.sh update
}
PACKAGES =+ "libnmutil libnmglib"
FILES_libnmutil += "${libdir}/libnm-util.so.*"
FILES_libnmglib += "${libdir}/libnm_glib.so.*"
FILES_${PN} += "${datadir} \
${sbindir}/* \
${bindir}/* \
${sysconfdir} \
${libexecdir}"
FILES_${PN}-dev += "${incdir} \
${libdir}/*.a \
${libdir}/*.la \
${libdir}/pkgconfig"
|