summaryrefslogtreecommitdiffstats
path: root/meta-multimedia/recipes-connectivity/gupnp/gupnp.inc
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2016-02-22 19:18:48 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2016-03-14 12:15:27 +0100
commit11ffc5d57a7db3271a60e20feeac926bb6ec79ff (patch)
tree023b9d1a7c53004e455fb36eccfb7114a2a14c63 /meta-multimedia/recipes-connectivity/gupnp/gupnp.inc
parent7bfeb7d3ac1724ebafdfdbabf19871988939abbd (diff)
downloadmeta-openembedded-11ffc5d57a7db3271a60e20feeac926bb6ec79ff.tar.gz
gupnp: fix gobject introspection
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Diffstat (limited to 'meta-multimedia/recipes-connectivity/gupnp/gupnp.inc')
-rw-r--r--meta-multimedia/recipes-connectivity/gupnp/gupnp.inc12
1 files changed, 7 insertions, 5 deletions
diff --git a/meta-multimedia/recipes-connectivity/gupnp/gupnp.inc b/meta-multimedia/recipes-connectivity/gupnp/gupnp.inc
index 28e9b357b..6ce963161 100644
--- a/meta-multimedia/recipes-connectivity/gupnp/gupnp.inc
+++ b/meta-multimedia/recipes-connectivity/gupnp/gupnp.inc
@@ -2,13 +2,15 @@ SUMMARY = "UPnP framework"
2DESCRIPTION = "GUPnP is an elegant, object-oriented open source framework for creating UPnP devices and control points, written in C using GObject and libsoup. The GUPnP API is intended to be easy to use, efficient and flexible. It provides the same set of features as libupnp, but shields the developer from most of UPnP's internals." 2DESCRIPTION = "GUPnP is an elegant, object-oriented open source framework for creating UPnP devices and control points, written in C using GObject and libsoup. The GUPnP API is intended to be easy to use, efficient and flexible. It provides the same set of features as libupnp, but shields the developer from most of UPnP's internals."
3LICENSE = "LGPLv2+" 3LICENSE = "LGPLv2+"
4 4
5DEPENDS = "e2fsprogs gssdp libsoup-2.4 libxml2 gobject-introspection-stub" 5DEPENDS = "e2fsprogs gssdp libsoup-2.4 libxml2"
6 6
7require no-vala.inc 7inherit autotools pkgconfig vala gobject-introspection
8 8
9EXTRA_OECONF = "--disable-introspection" 9# Copy vapigen.m4 so that it doesn't get removed by vala class
10 10# (normally this would be the right thing to do, but in gupnp the vapigen.m4 has only a custom macro)
11inherit autotools pkgconfig 11do_configure_prepend() {
12 cp -f ${S}/m4/vapigen.m4 ${S}/m4/vapigen-custom.m4 || true
13}
12 14
13FILES_${PN} = "${libdir}/*.so.*" 15FILES_${PN} = "${libdir}/*.so.*"
14FILES_${PN}-dev += "${bindir}/gupnp-binding-tool" 16FILES_${PN}-dev += "${bindir}/gupnp-binding-tool"