diff options
| author | Adrian Dudau <adrian.dudau@enea.com> | 2013-12-12 13:38:32 +0100 |
|---|---|---|
| committer | Adrian Dudau <adrian.dudau@enea.com> | 2013-12-12 13:50:20 +0100 |
| commit | e2e6f6fe07049f33cb6348780fa975162752e421 (patch) | |
| tree | b1813295411235d1297a0ed642b1346b24fdfb12 /meta/classes/gtk-doc.bbclass | |
| download | poky-e2e6f6fe07049f33cb6348780fa975162752e421.tar.gz | |
initial commit of Enea Linux 3.1
Migrated from the internal git server on the dora-enea branch
Signed-off-by: Adrian Dudau <adrian.dudau@enea.com>
Diffstat (limited to 'meta/classes/gtk-doc.bbclass')
| -rw-r--r-- | meta/classes/gtk-doc.bbclass | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta/classes/gtk-doc.bbclass b/meta/classes/gtk-doc.bbclass new file mode 100644 index 0000000000..fb7863e99b --- /dev/null +++ b/meta/classes/gtk-doc.bbclass | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | # Helper class to pull in the right gtk-doc dependencies and disable | ||
| 2 | # gtk-doc. | ||
| 3 | # | ||
| 4 | # Long-term it would be great if this class could be toggled between | ||
| 5 | # gtk-doc-stub-native and the real gtk-doc-native, which would enable | ||
| 6 | # re-generation of documentation. For now, we'll make do with this which | ||
| 7 | # packages up any existing documentation (so from tarball builds). | ||
| 8 | |||
| 9 | # The documentation directory, where the infrastructure will be copied. | ||
| 10 | # gtkdocize has a default of "." so to handle out-of-tree builds set this to $S. | ||
| 11 | GTKDOC_DOCDIR ?= "${S}" | ||
| 12 | |||
| 13 | DEPENDS_append = " gtk-doc-stub-native" | ||
| 14 | |||
| 15 | EXTRA_OECONF_append = "\ | ||
| 16 | --disable-gtk-doc \ | ||
| 17 | --disable-gtk-doc-html \ | ||
| 18 | --disable-gtk-doc-pdf \ | ||
| 19 | " | ||
| 20 | |||
| 21 | do_configure_prepend () { | ||
| 22 | ( cd ${S}; gtkdocize --docdir ${GTKDOC_DOCDIR} ) | ||
| 23 | } | ||
