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>
This commit is contained in:
Ross Burton
2012-12-19 16:15:08 +00:00
committed by Martin Jansa
parent 441f2cc2c5
commit a74e3eb4e1
4 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
SUMMARY = "Resource discovery and announcement over SSDP"
DESCRIPTION = "GSSDP implements resource discovery and announcement over SSDP (Simpe Service Discovery Protocol)."
LICENSE = "LGPLv2"
LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7"
DEPENDS = "glib-2.0 libsoup-2.4 gobject-introspection-stub"
inherit autotools pkgconfig
require no-vala.inc
EXTRA_OECONF = "--disable-introspection"
PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'gtk', '', d)}"
PACKAGECONFIG[gtk] = "--with-gtk,--without-gtk,gtk+"
PACKAGES =+ "gssdp-tools"
FILES_gssdp-tools = "${bindir}/gssdp* ${datadir}/gssdp/*.glade"

View File

@@ -0,0 +1,5 @@
require gssdp.inc
SRC_URI = "http://download.gnome.org/sources/${BPN}/0.12/${BPN}-${PV}.tar.xz"
SRC_URI[md5sum] = "8ac3a544ef0dcf8caaf7c249d2a50dc2"
SRC_URI[sha256sum] = "928aa257815d044fdbfc740f5799530d41897947b5d7854173f636b36d728414"

View File

@@ -0,0 +1,8 @@
require gssdp.inc
SRC_URI = "http://download.gnome.org/sources/${BPN}/0.13/${BPN}-${PV}.tar.xz"
SRC_URI[md5sum] = "758ed423cdd258a9a22d59c321b535ed"
SRC_URI[sha256sum] = "8f663f8a72b66254f5c20a3610ff853ac8d00bf6f253828e37e51579caa34dce"
# This is a development release so don't prefer it
DEFAULT_PREFERENCE = "-1"

View File

@@ -0,0 +1,5 @@
do_configure_prepend () {
# Vala needs gobject-introspection so won't work. Instead of depending
# on vala-native just to run configure, comment out the Vala macro.
sed -i -e 's/\(^[ \t]*VALA_PROG_VAPIGEN\)/dnl \1/g' ${S}/configure.ac
}