diff options
author | David-John Willis <John.Willis@Distant-earth.com> | 2009-10-27 21:34:32 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-10-28 10:16:29 +0100 |
commit | 9c5d1cb40bcb1d9412112bf73d7c7f4732989e89 (patch) | |
tree | 8e978f9236981953e5ab1446d1050e9c9c33b07d /recipes/devicekit/devicekit_003.bb | |
parent | 6d81ef0477dea8936fb97f70c90509dca99f9365 (diff) |
devicekit: Update to remove host dependency on Docbook XSLT files.
* Bump PR
* Update recipe to sed out the -nonet in the documentation XSLT conversion removing the reliance of the Docbook XSLT templates being installed on the host system (it will grab them from the net however).
* Note: Another (maybe better) fix would be to package up docbook-xsl but that is overkill for these two recipes.
Diffstat (limited to 'recipes/devicekit/devicekit_003.bb')
-rw-r--r-- | recipes/devicekit/devicekit_003.bb | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/recipes/devicekit/devicekit_003.bb b/recipes/devicekit/devicekit_003.bb index a57ca88675..3439290b07 100644 --- a/recipes/devicekit/devicekit_003.bb +++ b/recipes/devicekit/devicekit_003.bb @@ -2,13 +2,16 @@ DESCRIPTION = "DeviceKit is a simple system service that a) can enumerate device LICENSE = "GPLv2" DEPENDS = "udev dbus-glib glib-2.0" +PR = "r1" + SRC_URI = "http://hal.freedesktop.org/releases/DeviceKit-${PV}.tar.gz" S = "${WORKDIR}/DeviceKit-${PV}" +do_configure_prepend() { + sed -i -e s:-nonet:\:g ${S}/doc/man/Makefile.am +} + inherit autotools_stage AUTOTOOLS_STAGE_PKGCONFIG = "1" FILES_${PN} += "${datadir}/dbus-1/" - - - |