diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2016-01-18 17:32:02 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-24 09:40:23 +0000 |
commit | 69bcd338d6cb295e0dffaafac005190b6a184ce7 (patch) | |
tree | 55fcee8c5ee7a01bb40a3039bf7770580354538c /meta/recipes-multimedia/gstreamer/gstreamer1.0-libav.inc | |
parent | 1d6e61a85688a06edaa54a1c7f81da22896a47ba (diff) | |
download | poky-69bcd338d6cb295e0dffaafac005190b6a184ce7.tar.gz |
gstreamer1.0-libav: minor formatting improvements + update HOMEPAGE
(From OE-Core rev: a38b5c3ae8cce8870aa7276feaeefdd52dbcda8c)
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0-libav.inc')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0-libav.inc | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav.inc index 3948b401c5..c3c7d5bc06 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav.inc +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav.inc | |||
@@ -1,8 +1,10 @@ | |||
1 | SUMMARY = "Libav-based GStreamer 1.x plugin" | 1 | SUMMARY = "Libav-based GStreamer 1.x plugin" |
2 | HOMEPAGE = "http://gstreamer.freedesktop.org/" | ||
2 | SECTION = "multimedia" | 3 | SECTION = "multimedia" |
4 | |||
3 | LICENSE = "GPLv2+ & LGPLv2+ & ( (GPLv2+ & LGPLv2.1+) | (GPLv3+ & LGPLv3+) )" | 5 | LICENSE = "GPLv2+ & LGPLv2+ & ( (GPLv2+ & LGPLv2.1+) | (GPLv3+ & LGPLv3+) )" |
4 | LICENSE_FLAGS = "commercial" | 6 | LICENSE_FLAGS = "commercial" |
5 | HOMEPAGE = "http://www.gstreamer.net/" | 7 | |
6 | DEPENDS = "gstreamer1.0 gstreamer1.0-plugins-base zlib bzip2 xz" | 8 | DEPENDS = "gstreamer1.0 gstreamer1.0-plugins-base zlib bzip2 xz" |
7 | 9 | ||
8 | inherit autotools pkgconfig upstream-version-is-even | 10 | inherit autotools pkgconfig upstream-version-is-even |
@@ -10,12 +12,12 @@ inherit autotools pkgconfig upstream-version-is-even | |||
10 | # CAUTION: Using the system libav is not recommended. Since the libav API is changing all the time, | 12 | # CAUTION: Using the system libav is not recommended. Since the libav API is changing all the time, |
11 | # compilation errors (and other, more subtle bugs) can happen. It is usually better to rely on the | 13 | # compilation errors (and other, more subtle bugs) can happen. It is usually better to rely on the |
12 | # libav copy included in the gst-libav package. | 14 | # libav copy included in the gst-libav package. |
13 | PACKAGECONFIG ??= " orc yasm " | 15 | PACKAGECONFIG ??= "orc yasm" |
14 | PACKAGECONFIG[libav] = "--with-system-libav,,libav" | ||
15 | PACKAGECONFIG[gpl] = "--enable-gpl,--disable-gpl," | ||
16 | PACKAGECONFIG[yasm] = "--enable-yasm,--disable-yasm,yasm-native" | ||
17 | PACKAGECONFIG[orc] = "--enable-orc,--disable-orc,orc" | ||
18 | 16 | ||
17 | PACKAGECONFIG[gpl] = "--enable-gpl,--disable-gpl," | ||
18 | PACKAGECONFIG[libav] = "--with-system-libav,,libav" | ||
19 | PACKAGECONFIG[orc] = "--enable-orc,--disable-orc,orc" | ||
20 | PACKAGECONFIG[yasm] = "--enable-yasm,--disable-yasm,yasm-native" | ||
19 | 21 | ||
20 | GSTREAMER_1_0_DEBUG ?= "--disable-debug" | 22 | GSTREAMER_1_0_DEBUG ?= "--disable-debug" |
21 | 23 | ||
@@ -28,4 +30,3 @@ EXTRA_OECONF = "${LIBAV_EXTRA_CONFIGURE_COMMON}" | |||
28 | FILES_${PN} += "${libdir}/gstreamer-1.0/*.so" | 30 | FILES_${PN} += "${libdir}/gstreamer-1.0/*.so" |
29 | FILES_${PN}-dev += "${libdir}/gstreamer-1.0/*.la" | 31 | FILES_${PN}-dev += "${libdir}/gstreamer-1.0/*.la" |
30 | FILES_${PN}-staticdev += "${libdir}/gstreamer-1.0/*.a" | 32 | FILES_${PN}-staticdev += "${libdir}/gstreamer-1.0/*.a" |
31 | |||