summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lord <chris@openedhand.com>2006-09-08 14:34:52 +0000
committerChris Lord <chris@openedhand.com>2006-09-08 14:34:52 +0000
commit117d6257936b4efebd82762ff825412e95637170 (patch)
treee358cc82323d2ca118879b6cc15130296f319ad0
parentd1da9bfc6c8db5d54e77d0b72d98a333ada87ba3 (diff)
downloadpoky-117d6257936b4efebd82762ff825412e95637170.tar.gz
Tweak/fix-up GStreamer stuff - gst-launch seems to work with mpegs now
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@701 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r--meta/packages/gstreamer/gst-ffmpeg_0.10.1.bb5
-rw-r--r--meta/packages/gstreamer/gst-fluendo-mp3_0.10.2.bb2
-rw-r--r--meta/packages/gstreamer/gst-fluendo-mpegdemux_0.10.7.bb2
-rw-r--r--meta/packages/gstreamer/gst-fluendo.inc26
-rw-r--r--meta/packages/gstreamer/gst-meta-audio_0.10.bb7
-rw-r--r--meta/packages/gstreamer/gst-meta-base_0.10.bb5
-rw-r--r--meta/packages/gstreamer/gst-meta-video_0.10.bb9
-rw-r--r--meta/packages/gstreamer/gst-plugins-base_0.10.9.bb5
-rw-r--r--meta/packages/gstreamer/gst-plugins-good_0.10.4.bb4
-rw-r--r--meta/packages/gstreamer/gst-plugins-ugly_0.10.4.bb4
-rw-r--r--meta/packages/gstreamer/gstreamer_0.10.9.bb17
11 files changed, 63 insertions, 23 deletions
diff --git a/meta/packages/gstreamer/gst-ffmpeg_0.10.1.bb b/meta/packages/gstreamer/gst-ffmpeg_0.10.1.bb
index d2123f4a57..944ad62ee0 100644
--- a/meta/packages/gstreamer/gst-ffmpeg_0.10.1.bb
+++ b/meta/packages/gstreamer/gst-ffmpeg_0.10.1.bb
@@ -5,12 +5,15 @@ LICENSE = "LGPL"
5HOMEPAGE = "http://www.gstreamer.net/" 5HOMEPAGE = "http://www.gstreamer.net/"
6MAINTAINER = "Chris Lord <chris@openedhand.com>" 6MAINTAINER = "Chris Lord <chris@openedhand.com>"
7DEPENDS = "gstreamer zlib" 7DEPENDS = "gstreamer zlib"
8PR = "r1"
8 9
9inherit autotools pkgconfig 10inherit autotools pkgconfig
10 11
11SRC_URI = "http://gstreamer.freedesktop.org/src/${PN}/${PN}-${PV}.tar.bz2" 12SRC_URI = "http://gstreamer.freedesktop.org/src/${PN}/${PN}-${PV}.tar.bz2"
12 13
13FILES_${PN} += "${libdir}/gstreamer-0.10" 14FILES_${PN} += "${libdir}/gstreamer-0.10/*.so"
15FILES_${PN}-dbg += "${libdir}/gstreamer-0.10/.debug"
16FILES_${PN}-dev += "${libdir}/gstreamer-0.10/*.la ${libdir}/gstreamer-0.10/*.a"
14 17
15EXTRA_OECONF = "--disable-sdltest --disable-ffplay --disable-freetypetest \ 18EXTRA_OECONF = "--disable-sdltest --disable-ffplay --disable-freetypetest \
16 --disable-vorbis --disable-vorbistest --disable-encoders \ 19 --disable-vorbis --disable-vorbistest --disable-encoders \
diff --git a/meta/packages/gstreamer/gst-fluendo-mp3_0.10.2.bb b/meta/packages/gstreamer/gst-fluendo-mp3_0.10.2.bb
new file mode 100644
index 0000000000..184de384cb
--- /dev/null
+++ b/meta/packages/gstreamer/gst-fluendo-mp3_0.10.2.bb
@@ -0,0 +1,2 @@
1require gst-fluendo.inc
2DESCRIPTION = "Fluendo closed-format mp3 GStreamer plug-in"
diff --git a/meta/packages/gstreamer/gst-fluendo-mpegdemux_0.10.7.bb b/meta/packages/gstreamer/gst-fluendo-mpegdemux_0.10.7.bb
new file mode 100644
index 0000000000..81645accd6
--- /dev/null
+++ b/meta/packages/gstreamer/gst-fluendo-mpegdemux_0.10.7.bb
@@ -0,0 +1,2 @@
1require gst-fluendo.inc
2DESCRIPTION = "Fluendo closed-format mpeg video GStreamer plug-in"
diff --git a/meta/packages/gstreamer/gst-fluendo.inc b/meta/packages/gstreamer/gst-fluendo.inc
new file mode 100644
index 0000000000..830119ec72
--- /dev/null
+++ b/meta/packages/gstreamer/gst-fluendo.inc
@@ -0,0 +1,26 @@
1DESCRIPTION = "Fluendo closed-format GStreamer plug-in"
2SECTION = "multimedia"
3PRIORITY = "optional"
4LICENSE = "MIT"
5HOMEPAGE = "http://www.fluendo.com/resources/source-plugins.php"
6MAINTAINER = "Chris Lord <chris@openedhand.com>"
7DEPENDS = "gstreamer zlib"
8
9inherit autotools pkgconfig
10
11SRC_URI = "http://core.fluendo.com/gstreamer/src/${PN}/${PN}-${PV}.tar.bz2"
12
13FILES_${PN} += "${libdir}/gstreamer-0.10/*.so"
14FILES_${PN}-dbg += "${libdir}/gstreamer-0.10/.debug"
15FILES_${PN}-dev += "${libdir}/gstreamer-0.10/*.la ${libdir}/gstreamer-0.10/*.a"
16
17EXTRA_OECONF = "--disable-debug --disable-valgrind"
18
19# Hack to get STAGING_LIBDIR into the linker path when building
20CC = "${CCACHE} ${HOST_PREFIX}gcc -L${STAGING_LIBDIR}"
21
22do_configure () {
23 cd ${S}
24 oe_runconf
25}
26
diff --git a/meta/packages/gstreamer/gst-meta-audio_0.10.bb b/meta/packages/gstreamer/gst-meta-audio_0.10.bb
index be0ec10f78..ebbd202ce6 100644
--- a/meta/packages/gstreamer/gst-meta-audio_0.10.bb
+++ b/meta/packages/gstreamer/gst-meta-audio_0.10.bb
@@ -1,5 +1,6 @@
1DEPENDS = "gst-meta-base gst-plugins-good" 1DEPENDS = "gst-meta-base gst-fluendo-mp3 gst-fluendo-mpegdemux"
2RDEPENDS = "gst-meta-base gst-plugins-good gst-plugin-vorbis gst-plugin-ogg \ 2RDEPENDS = "gst-meta-base gst-plugin-vorbis gst-plugin-ogg gst-fluendo-mp3 \
3 gst-plugin-flac gst-plugin-speex" 3 gst-fluendo-mpegdemux"
4PR = "r1"
4 5
5ALLOW_EMPTY = "1" 6ALLOW_EMPTY = "1"
diff --git a/meta/packages/gstreamer/gst-meta-base_0.10.bb b/meta/packages/gstreamer/gst-meta-base_0.10.bb
index 8179952f45..263cf4b13d 100644
--- a/meta/packages/gstreamer/gst-meta-base_0.10.bb
+++ b/meta/packages/gstreamer/gst-meta-base_0.10.bb
@@ -1,6 +1,9 @@
1DEPENDS = "gstreamer gst-plugins-base" 1DEPENDS = "gstreamer gst-plugins-base"
2RDEPENDS = "gstreamer gst-plugins-base gst-plugin-playbin \ 2RDEPENDS = "gstreamer gst-plugins-base gst-plugin-playbin \
3 gst-plugin-decodebin gst-plugin-gnomevfs gst-plugin-alsa \ 3 gst-plugin-decodebin gst-plugin-gnomevfs gst-plugin-alsa \
4 gst-plugin-volume gst-plugin-ximagesink" 4 gst-plugin-volume gst-plugin-ximagesink gst-plugin-audioconvert \
5 gst-plugin-audioresample gst-plugin-typefindfunctions \
6 gst-plugin-videoscale gst-plugin-ffmpegcolorspace"
7PR = "r1"
5 8
6ALLOW_EMPTY = "1" 9ALLOW_EMPTY = "1"
diff --git a/meta/packages/gstreamer/gst-meta-video_0.10.bb b/meta/packages/gstreamer/gst-meta-video_0.10.bb
index c085582801..5ff9b58bbb 100644
--- a/meta/packages/gstreamer/gst-meta-video_0.10.bb
+++ b/meta/packages/gstreamer/gst-meta-video_0.10.bb
@@ -1,6 +1,9 @@
1DEPENDS = "gst-meta-base gst-plugins-good gst-plugins-bad gst-ffmpeg" 1DEPENDS = "gst-meta-base gst-plugins-good gst-fluendo-mpegdemux \
2RDEPENDS = "gst-meta-base gst-plugins-good gst-plugins-bad gst-plugin-avi \ 2 gst-plugins-ugly"
3 gst-plugin-matroska gst-plugin-ogg gst-ffmpeg" 3RDEPENDS = "gst-meta-base gst-plugins-good gst-plugins-ugly gst-plugin-avi \
4 gst-plugin-matroska gst-plugin-ogg \
5 gst-fluendo-mpegdemux gst-plugin-mpeg2dec"
4RRECOMMENDS = "gst-meta-audio" 6RRECOMMENDS = "gst-meta-audio"
7PR = "r1"
5 8
6ALLOW_EMPTY = "1" 9ALLOW_EMPTY = "1"
diff --git a/meta/packages/gstreamer/gst-plugins-base_0.10.9.bb b/meta/packages/gstreamer/gst-plugins-base_0.10.9.bb
index 973327e146..db947a3394 100644
--- a/meta/packages/gstreamer/gst-plugins-base_0.10.9.bb
+++ b/meta/packages/gstreamer/gst-plugins-base_0.10.9.bb
@@ -3,10 +3,9 @@ DEPENDS += "libx11 alsa-lib freetype gnome-vfs liboil libogg libvorbis tremor"
3RDEPENDS += "gnome-vfs-plugin-file gnome-vfs-plugin-http gnome-vfs-plugin-ftp \ 3RDEPENDS += "gnome-vfs-plugin-file gnome-vfs-plugin-http gnome-vfs-plugin-ftp \
4 gnome-vfs-plugin-sftp" 4 gnome-vfs-plugin-sftp"
5PROVIDES_${PN} += "gst-plugins" 5PROVIDES_${PN} += "gst-plugins"
6PR = "r1" 6PR = "r2"
7 7
8EXTRA_OECONF += "--with-plugins=ximagesink,alsa,gnomevfs,ogg,vorbis \ 8EXTRA_OECONF += "--disable-freetypetest --disable-pango --disable-theora"
9 --disable-freetypetest --disable-pango --disable-theora"
10 9
11do_stage() { 10do_stage() {
12 autotools_stage_all 11 autotools_stage_all
diff --git a/meta/packages/gstreamer/gst-plugins-good_0.10.4.bb b/meta/packages/gstreamer/gst-plugins-good_0.10.4.bb
index 836923b146..e0375cc8c0 100644
--- a/meta/packages/gstreamer/gst-plugins-good_0.10.4.bb
+++ b/meta/packages/gstreamer/gst-plugins-good_0.10.4.bb
@@ -1,7 +1,7 @@
1require gst-plugins.inc 1require gst-plugins.inc
2DEPENDS += "gst-plugins-base gconf cairo jpeg libpng gtk+ zlib libid3tag flac \ 2DEPENDS += "gst-plugins-base gconf cairo jpeg libpng gtk+ zlib libid3tag flac \
3 speex" 3 speex"
4PR = "r1" 4PR = "r2"
5 5
6EXTRA_OECONF += " --with-plugins=ximagesrc,cairo,flac,gconfelements,gdkpixbuf,jpeg,png,speex,taglib,avi,matroska,videofilter --disable-aalib --disable-esd --disable-shout2" 6EXTRA_OECONF += " --with-plugins=ximagesrc,cairo,flac,gconfelements,gdkpixbuf,jpeg,png,speex,taglib,avi,matroska,videofilter,autodetect,debug --disable-aalib --disable-esd --disable-shout2"
7 7
diff --git a/meta/packages/gstreamer/gst-plugins-ugly_0.10.4.bb b/meta/packages/gstreamer/gst-plugins-ugly_0.10.4.bb
index 022a0abcec..eb1bf8b57d 100644
--- a/meta/packages/gstreamer/gst-plugins-ugly_0.10.4.bb
+++ b/meta/packages/gstreamer/gst-plugins-ugly_0.10.4.bb
@@ -1,7 +1,7 @@
1require gst-plugins.inc 1require gst-plugins.inc
2DEPENDS += "gst-plugins-base libid3tag libmad mpeg2dec liba52 lame" 2DEPENDS += "gst-plugins-base libid3tag libmad mpeg2dec liba52 lame"
3PR = "r1" 3PR = "r2"
4 4
5SRC_URI += " file://lame-autoconf.patch;patch=1" 5SRC_URI += " file://lame-autoconf.patch;patch=1"
6EXTRA_OECONF += "--with-plugins=a52dec,lame,id3tag,mad,mpeg2dec" 6EXTRA_OECONF += "--with-plugins=a52dec,lame,id3tag,mad,mpeg2dec,mpegstream,mpegaudioparse,asfdemux,realmedia"
7 7
diff --git a/meta/packages/gstreamer/gstreamer_0.10.9.bb b/meta/packages/gstreamer/gstreamer_0.10.9.bb
index 66db827523..5c9444b1d2 100644
--- a/meta/packages/gstreamer/gstreamer_0.10.9.bb
+++ b/meta/packages/gstreamer/gstreamer_0.10.9.bb
@@ -5,19 +5,20 @@ PRIORITY = "optional"
5LICENSE = "LGPL" 5LICENSE = "LGPL"
6HOMEPAGE = "http://www.gstreamer.net/" 6HOMEPAGE = "http://www.gstreamer.net/"
7MAINTAINER = "Felix Domke <tmbinc@elitedvb.net>" 7MAINTAINER = "Felix Domke <tmbinc@elitedvb.net>"
8DEPENDS = "glib-2.0 gettext-native popt" 8DEPENDS = "glib-2.0 gettext-native popt libxml2"
9PR = "r1"
9 10
10inherit autotools pkgconfig 11inherit autotools pkgconfig
11 12
12SRC_URI = "http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-${PV}.tar.bz2 \ 13SRC_URI = "http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-${PV}.tar.bz2"
13 file://gstregistrybinary.c \ 14# file://gstregistrybinary.c \
14 file://gstregistrybinary.h \ 15# file://gstregistrybinary.h \
15 file://gstreamer-0.9-binary-registry.patch;patch=1" 16# file://gstreamer-0.9-binary-registry.patch;patch=1"
16EXTRA_OECONF = "--disable-docs-build --disable-dependency-tracking --with-check=no" 17EXTRA_OECONF = "--disable-docs-build --disable-dependency-tracking --with-check=no"
17 18
18do_compile_prepend () { 19#do_compile_prepend () {
19 mv ${WORKDIR}/gstregistrybinary.[ch] ${S}/gst/ 20# mv ${WORKDIR}/gstregistrybinary.[ch] ${S}/gst/
20} 21#}
21 22
22do_stage() { 23do_stage() {
23 oe_runmake install prefix=${STAGING_DIR} \ 24 oe_runmake install prefix=${STAGING_DIR} \