blob: 8adfac7d74cc2ba612f229c8721fdd6e33a27260 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "A collection of documentation utilities for the Gnome project"
2DESCRIPTION = "The GNOME Documentation Build Utilities (gnome-doc- \
3utils) were created to make it easier for application developers to \
4include and create documentation in their releases. They include the \
5xml2po tool which makes it easier to translate and keep up to date \
6translations of documentation."
7LICENSE = "GPLv2 & LGPLv2.1"
8DEPENDS = "libxml2 libxslt libxslt-native gnome-doc-utils-native glib-2.0"
9DEPENDS_class-native = "libxml2-native libxslt-native intltool-native glib-2.0-native"
10
11inherit gnomebase gettext python-dir pythonnative autotools-brokensep
12
13CLEANBROKEN = "1"
14
15EXTRA_OECONF += "--disable-scrollkeeper"
16
17do_install_append() {
Patrick Williamsc124f4f2015-09-15 14:41:29 -050018 chown -R root:root ${D}
19}
20
21do_install_append_class-native () {
22 sed -i -e 's|^#!.*/usr/bin/env python|#! /usr/bin/env nativepython|' ${D}${bindir}/xml2po
23}
24
25FILES_${PN} += "${datadir}/xml* ${PYTHON_SITEPACKAGES_DIR}/*"
26
27RDEPENDS_${PN} = "bash"
28RDEPENDS_${PN}_class-native = ""
29
30BBCLASSEXTEND = "native"