diff options
author | Ross Burton <ross.burton@intel.com> | 2012-12-19 16:15:08 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-01-09 11:42:44 +0100 |
commit | a74e3eb4e13c19ec5f51fef0dad11a82f912389f (patch) | |
tree | f446d08572ce381aa74be89939731b3860c7e5fb /meta-multimedia/recipes-connectivity | |
parent | 441f2cc2c5894f7674dbe6c10e236b31bb9ac608 (diff) | |
download | meta-openembedded-a74e3eb4e13c19ec5f51fef0dad11a82f912389f.tar.gz |
gssdp: add 0.12.2.1 and 0.13.2
0.12.x is the stable series, 0.13.x is the development series that some packages
(specifically dLeyna) require.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta-multimedia/recipes-connectivity')
4 files changed, 36 insertions, 0 deletions
diff --git a/meta-multimedia/recipes-connectivity/gupnp/gssdp.inc b/meta-multimedia/recipes-connectivity/gupnp/gssdp.inc new file mode 100644 index 000000000..ae965b996 --- /dev/null +++ b/meta-multimedia/recipes-connectivity/gupnp/gssdp.inc | |||
@@ -0,0 +1,18 @@ | |||
1 | SUMMARY = "Resource discovery and announcement over SSDP" | ||
2 | DESCRIPTION = "GSSDP implements resource discovery and announcement over SSDP (Simpe Service Discovery Protocol)." | ||
3 | LICENSE = "LGPLv2" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7" | ||
5 | DEPENDS = "glib-2.0 libsoup-2.4 gobject-introspection-stub" | ||
6 | |||
7 | inherit autotools pkgconfig | ||
8 | |||
9 | require no-vala.inc | ||
10 | |||
11 | EXTRA_OECONF = "--disable-introspection" | ||
12 | |||
13 | PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'gtk', '', d)}" | ||
14 | PACKAGECONFIG[gtk] = "--with-gtk,--without-gtk,gtk+" | ||
15 | |||
16 | PACKAGES =+ "gssdp-tools" | ||
17 | |||
18 | FILES_gssdp-tools = "${bindir}/gssdp* ${datadir}/gssdp/*.glade" | ||
diff --git a/meta-multimedia/recipes-connectivity/gupnp/gssdp_0.12.2.1.bb b/meta-multimedia/recipes-connectivity/gupnp/gssdp_0.12.2.1.bb new file mode 100644 index 000000000..29cc721c5 --- /dev/null +++ b/meta-multimedia/recipes-connectivity/gupnp/gssdp_0.12.2.1.bb | |||
@@ -0,0 +1,5 @@ | |||
1 | require gssdp.inc | ||
2 | |||
3 | SRC_URI = "http://download.gnome.org/sources/${BPN}/0.12/${BPN}-${PV}.tar.xz" | ||
4 | SRC_URI[md5sum] = "8ac3a544ef0dcf8caaf7c249d2a50dc2" | ||
5 | SRC_URI[sha256sum] = "928aa257815d044fdbfc740f5799530d41897947b5d7854173f636b36d728414" | ||
diff --git a/meta-multimedia/recipes-connectivity/gupnp/gssdp_0.13.2.bb b/meta-multimedia/recipes-connectivity/gupnp/gssdp_0.13.2.bb new file mode 100644 index 000000000..c308fa01a --- /dev/null +++ b/meta-multimedia/recipes-connectivity/gupnp/gssdp_0.13.2.bb | |||
@@ -0,0 +1,8 @@ | |||
1 | require gssdp.inc | ||
2 | |||
3 | SRC_URI = "http://download.gnome.org/sources/${BPN}/0.13/${BPN}-${PV}.tar.xz" | ||
4 | SRC_URI[md5sum] = "758ed423cdd258a9a22d59c321b535ed" | ||
5 | SRC_URI[sha256sum] = "8f663f8a72b66254f5c20a3610ff853ac8d00bf6f253828e37e51579caa34dce" | ||
6 | |||
7 | # This is a development release so don't prefer it | ||
8 | DEFAULT_PREFERENCE = "-1" | ||
diff --git a/meta-multimedia/recipes-connectivity/gupnp/no-vala.inc b/meta-multimedia/recipes-connectivity/gupnp/no-vala.inc new file mode 100644 index 000000000..a4f3fb679 --- /dev/null +++ b/meta-multimedia/recipes-connectivity/gupnp/no-vala.inc | |||
@@ -0,0 +1,5 @@ | |||
1 | do_configure_prepend () { | ||
2 | # Vala needs gobject-introspection so won't work. Instead of depending | ||
3 | # on vala-native just to run configure, comment out the Vala macro. | ||
4 | sed -i -e 's/\(^[ \t]*VALA_PROG_VAPIGEN\)/dnl \1/g' ${S}/configure.ac | ||
5 | } | ||