diff options
author | Andreas Müller <schnitzeltony@googlemail.com> | 2015-05-06 18:10:46 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-05-13 14:34:23 +0200 |
commit | 51e459bad95ef6a58f361b73b64b952007c85046 (patch) | |
tree | 126514cd9af7653f1737989743f043c234628a97 | |
parent | de8a835be557e4a7138f378c0fc19e4685f8c824 (diff) | |
download | meta-openembedded-51e459bad95ef6a58f361b73b64b952007c85046.tar.gz |
udisks2: add recipe for 2.1.5 version
tests:
* Build & run along with udisks on xfce based image
* Tested automount on kde plasma desktop
* udisks2: disable manpage creation
| I/O error : Attempt to load network entity http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl
| warning: failed to load external entity "http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl"
| cannot parse http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/udisks/udisks2_2.1.5.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/udisks/udisks2_2.1.5.bb b/meta-oe/recipes-support/udisks/udisks2_2.1.5.bb new file mode 100644 index 0000000000..4ff6687a38 --- /dev/null +++ b/meta-oe/recipes-support/udisks/udisks2_2.1.5.bb | |||
@@ -0,0 +1,31 @@ | |||
1 | SUMMARY = "udisks provides dbus interfaces for disks and storage devices" | ||
2 | LICENSE = "GPLv2+ & LGPLv2+" | ||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=dd79f6dbbffdbc8e86b086a8f0c0ef43" | ||
4 | |||
5 | DEPENDS = "libatasmart polkit udev dbus-glib glib-2.0 intltool-native gnome-common-native" | ||
6 | |||
7 | DEPENDS += "${@base_contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}" | ||
8 | |||
9 | SRC_URI = "http://udisks.freedesktop.org/releases/udisks-${PV}.tar.bz2" | ||
10 | SRC_URI[md5sum] = "73632501002e6de8244f831e38b2b98e" | ||
11 | SRC_URI[sha256sum] = "2cfcf560447ea44cba2a683342c7062aaaf35e4eb554bed64ac2dd55a70a5fb6" | ||
12 | |||
13 | inherit autotools systemd gtk-doc | ||
14 | |||
15 | S = "${WORKDIR}/udisks-${PV}" | ||
16 | |||
17 | EXTRA_OECONF = "--disable-introspection --disable-man" | ||
18 | |||
19 | FILES_${PN} += "${libdir}/polkit-1/extensions/*.so \ | ||
20 | ${datadir}/dbus-1/ \ | ||
21 | ${datadir}/polkit-1 \ | ||
22 | ${base_libdir}/udev/* \ | ||
23 | " | ||
24 | |||
25 | PACKAGES =+ "${PN}-libs" | ||
26 | |||
27 | FILES_${PN} += "${datadir}/bash-completion" | ||
28 | FILES_${PN}-libs = "${libdir}/lib*${SOLIBS}" | ||
29 | |||
30 | SYSTEMD_SERVICE_${PN} = "${BPN}.service" | ||
31 | SYSTEMD_AUTO_ENABLE = "disable" | ||