| Submitter | Ross Burton |
|---|---|
| Date | Jan. 17, 2013, 5:52 p.m. |
| Message ID | <1358445132-13498-1-git-send-email-ross.burton@intel.com> |
| Download | mbox | patch |
| Permalink | /patch/42825/ |
| State | Accepted, archived |
| Commit | 2942932a8bbc18115d8093a9e32cd85083a70635 |
| Headers | show |
Comments
On Thu, Jan 17, 2013 at 05:52:12PM +0000, Ross Burton wrote: > From: Wayne Tams <wayne.tams@simpleaudio.com> Merged, thanks > > Signed-off-by: Ross Burton <ross.burton@intel.com> > --- > ...ecated-INCLUDES-to-AM_CPPFLAGS-for-automa.patch | 34 ++++++++++++++++++++ > .../gstreamer/gst-rtsp_0.10.8.bb | 16 +++++++++ > 2 files changed, 50 insertions(+) > create mode 100644 meta-multimedia/recipes-multimedia/gstreamer/gst-rtsp/0001-change-deprecated-INCLUDES-to-AM_CPPFLAGS-for-automa.patch > create mode 100644 meta-multimedia/recipes-multimedia/gstreamer/gst-rtsp_0.10.8.bb > > diff --git a/meta-multimedia/recipes-multimedia/gstreamer/gst-rtsp/0001-change-deprecated-INCLUDES-to-AM_CPPFLAGS-for-automa.patch b/meta-multimedia/recipes-multimedia/gstreamer/gst-rtsp/0001-change-deprecated-INCLUDES-to-AM_CPPFLAGS-for-automa.patch > new file mode 100644 > index 0000000..3afca4e > --- /dev/null > +++ b/meta-multimedia/recipes-multimedia/gstreamer/gst-rtsp/0001-change-deprecated-INCLUDES-to-AM_CPPFLAGS-for-automa.patch > @@ -0,0 +1,34 @@ > +index gst-rtsp_0.10.8/bindings/python/Makefile.am > +--- gst-rtsp_0.10.8.orig/bindings/python/Makefile.am > ++++ gst-rtsp_0.10.8/bindings/python/Makefile.am > +@@ -14,7 +14,7 @@ defs_DATA = $(DEFS) > + defsdir = $(pkgdatadir)/$(GST_MAJORMINOR)/defs > + OVERRIDES = rtspserver.override > + > +-INCLUDES = -I$(top_srcdir) -I$(srcdir) $(PYTHON_INCLUDES) > ++AM_CPPFLAGS = -I$(top_srcdir) -I$(srcdir) $(PYTHON_INCLUDES) > + > + rtspserver_la_CFLAGS = -I$(top_srcdir)/src \ > + $(PYGOBJECT_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) > +index gst-rtsp_0.10.8/examples/Makefile.am > +--- gst-rtsp_0.10.8.orig/examples/Makefile.am > ++++ gst-rtsp_0.10.8/examples/Makefile.am > +@@ -1,6 +1,6 @@ > + noinst_PROGRAMS = test-video test-ogg test-mp4 test-readme test-launch test-sdp test-uri test-auth > + > +-INCLUDES = -I$(top_srcdir) -I$(srcdir) > ++AM_CPPFLAGS = -I$(top_srcdir) -I$(srcdir) > + > + AM_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) > + AM_LDFLAGS = \ > +index gst-rtsp_0.10.8/tests/Makefile.am > +--- gst-rtsp_0.10.8.orig/tests/Makefile.am > ++++ gst-rtsp_0.10.8/tests/Makefile.am > +@@ -1,6 +1,6 @@ > + noinst_PROGRAMS = test-cleanup > + > +-INCLUDES = -I$(top_srcdir) -I$(srcdir) > ++AM_CPPFLAGS = -I$(top_srcdir) -I$(srcdir) > + > + AM_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) > + AM_LDFLAGS = \ > diff --git a/meta-multimedia/recipes-multimedia/gstreamer/gst-rtsp_0.10.8.bb b/meta-multimedia/recipes-multimedia/gstreamer/gst-rtsp_0.10.8.bb > new file mode 100644 > index 0000000..40872f5 > --- /dev/null > +++ b/meta-multimedia/recipes-multimedia/gstreamer/gst-rtsp_0.10.8.bb > @@ -0,0 +1,16 @@ > +DESCRIPTION = "GStreamer RTSP server" > +LICENSE = "LGPLv2+" > +LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605" > + > +SRC_URI = "http://gstreamer.freedesktop.org/src/${BPN}/${BPN}-${PV}.tar.bz2 \ > + file://0001-change-deprecated-INCLUDES-to-AM_CPPFLAGS-for-automa.patch" > +SRC_URI[md5sum] = "b511af07000595f63c3a705946221643" > +SRC_URI[sha256sum] = "9915887cf8515bda87462c69738646afb715b597613edc7340477ccab63a6617" > + > +DEPENDS = "gst-plugins-base gstreamer" > + > +# Configure always checks for Python so inherit pythonnative. Better solution > +# would be to disable the checks entirely. > +inherit autotools pythonnative gettext > + > +FILES_${PN}-dev += "${datadir}/vala/vapi/" > -- > 1.7.10.4 > > > _______________________________________________ > Openembedded-devel mailing list > Openembedded-devel@lists.openembedded.org > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
Patch
diff --git a/meta-multimedia/recipes-multimedia/gstreamer/gst-rtsp/0001-change-deprecated-INCLUDES-to-AM_CPPFLAGS-for-automa.patch b/meta-multimedia/recipes-multimedia/gstreamer/gst-rtsp/0001-change-deprecated-INCLUDES-to-AM_CPPFLAGS-for-automa.patch new file mode 100644 index 0000000..3afca4e --- /dev/null +++ b/meta-multimedia/recipes-multimedia/gstreamer/gst-rtsp/0001-change-deprecated-INCLUDES-to-AM_CPPFLAGS-for-automa.patch @@ -0,0 +1,34 @@ +index gst-rtsp_0.10.8/bindings/python/Makefile.am +--- gst-rtsp_0.10.8.orig/bindings/python/Makefile.am ++++ gst-rtsp_0.10.8/bindings/python/Makefile.am +@@ -14,7 +14,7 @@ defs_DATA = $(DEFS) + defsdir = $(pkgdatadir)/$(GST_MAJORMINOR)/defs + OVERRIDES = rtspserver.override + +-INCLUDES = -I$(top_srcdir) -I$(srcdir) $(PYTHON_INCLUDES) ++AM_CPPFLAGS = -I$(top_srcdir) -I$(srcdir) $(PYTHON_INCLUDES) + + rtspserver_la_CFLAGS = -I$(top_srcdir)/src \ + $(PYGOBJECT_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) +index gst-rtsp_0.10.8/examples/Makefile.am +--- gst-rtsp_0.10.8.orig/examples/Makefile.am ++++ gst-rtsp_0.10.8/examples/Makefile.am +@@ -1,6 +1,6 @@ + noinst_PROGRAMS = test-video test-ogg test-mp4 test-readme test-launch test-sdp test-uri test-auth + +-INCLUDES = -I$(top_srcdir) -I$(srcdir) ++AM_CPPFLAGS = -I$(top_srcdir) -I$(srcdir) + + AM_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) + AM_LDFLAGS = \ +index gst-rtsp_0.10.8/tests/Makefile.am +--- gst-rtsp_0.10.8.orig/tests/Makefile.am ++++ gst-rtsp_0.10.8/tests/Makefile.am +@@ -1,6 +1,6 @@ + noinst_PROGRAMS = test-cleanup + +-INCLUDES = -I$(top_srcdir) -I$(srcdir) ++AM_CPPFLAGS = -I$(top_srcdir) -I$(srcdir) + + AM_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) + AM_LDFLAGS = \ diff --git a/meta-multimedia/recipes-multimedia/gstreamer/gst-rtsp_0.10.8.bb b/meta-multimedia/recipes-multimedia/gstreamer/gst-rtsp_0.10.8.bb new file mode 100644 index 0000000..40872f5 --- /dev/null +++ b/meta-multimedia/recipes-multimedia/gstreamer/gst-rtsp_0.10.8.bb @@ -0,0 +1,16 @@ +DESCRIPTION = "GStreamer RTSP server" +LICENSE = "LGPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605" + +SRC_URI = "http://gstreamer.freedesktop.org/src/${BPN}/${BPN}-${PV}.tar.bz2 \ + file://0001-change-deprecated-INCLUDES-to-AM_CPPFLAGS-for-automa.patch" +SRC_URI[md5sum] = "b511af07000595f63c3a705946221643" +SRC_URI[sha256sum] = "9915887cf8515bda87462c69738646afb715b597613edc7340477ccab63a6617" + +DEPENDS = "gst-plugins-base gstreamer" + +# Configure always checks for Python so inherit pythonnative. Better solution +# would be to disable the checks entirely. +inherit autotools pythonnative gettext + +FILES_${PN}-dev += "${datadir}/vala/vapi/"