summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2024-01-12 18:27:33 +0000
committerKhem Raj <raj.khem@gmail.com>2024-01-12 10:30:32 -0800
commita48cd50ad7d31aba97b01ce390033d5f4f895147 (patch)
tree8e0c8a073d4af91dc5722f5c1cb283fe463de720
parente6b70ce30a19ef962e2cbdc36f3c6c282676a845 (diff)
downloadmeta-openembedded-a48cd50ad7d31aba97b01ce390033d5f4f895147.tar.gz
glade: inherit gtk-doc, fix FILES
Recent changes to oe-core[1] mean that if a configure.ac uses gtk-doc then gtkdocize will be called. This means that recipes that don't inherit gtk-doc (to depend on gtk-doc-native) but don't explicitly disable the use of gtkdocize will fail to configure. Inheriting gtk-doc both solves the configure failure, and allows us to build the API documentation. Also, clean up FILES: Don't package all of ${datadir} in PN, as this means the locale information isn't split into the appropriate packages. .la files are deleted globally so there's no need to package them in PN-dev. Debug files are managed automatically so there's no need to package them at all. [1] oe-core 891ec38d4c5cc5ac7bc34938276261ebd6f6d54e Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-devtools/glade/glade_3.22.2.bb7
1 files changed, 2 insertions, 5 deletions
diff --git a/meta-oe/recipes-devtools/glade/glade_3.22.2.bb b/meta-oe/recipes-devtools/glade/glade_3.22.2.bb
index 3936e04c6d..d11751a4b2 100644
--- a/meta-oe/recipes-devtools/glade/glade_3.22.2.bb
+++ b/meta-oe/recipes-devtools/glade/glade_3.22.2.bb
@@ -9,7 +9,7 @@ DEPENDS = "gtk+3 glib-2.0 libxml2 intltool-native \
9 autoconf-archive-native \ 9 autoconf-archive-native \
10" 10"
11GNOMEBASEBUILDCLASS = "autotools" 11GNOMEBASEBUILDCLASS = "autotools"
12inherit features_check autotools pkgconfig gnomebase gobject-introspection mime-xdg 12inherit features_check autotools pkgconfig gnomebase gobject-introspection mime-xdg gtk-doc
13 13
14# xfce4 depends on libwnck3, gtk+3 and libepoxy need to be built with x11 PACKAGECONFIG. 14# xfce4 depends on libwnck3, gtk+3 and libepoxy need to be built with x11 PACKAGECONFIG.
15# cairo would at least needed to be built with xlib. 15# cairo would at least needed to be built with xlib.
@@ -23,7 +23,4 @@ SRC_URI[sha256sum] = "edefa6eb24b4d15bd52589121dc109bc08c286157c41288deb74dd9cc3
23 23
24EXTRA_OECONF += "--disable-man-pages" 24EXTRA_OECONF += "--disable-man-pages"
25 25
26FILES:${PN} += "${datadir}/* ${libdir}/glade/modules/libgladegtk.so" 26FILES:${PN} += "${datadir}/glade ${datadir}/metainfo ${libdir}/glade/modules/libgladegtk.so"
27FILES:${PN}-dev += "${libdir}/glade/modules/libgladegtk.la"
28FILES:${PN}-dbg += "${libdir}/glade/modules/.debug/libgladegtk.so"
29