diff options
author | Andreas Oberritter <obi@opendreambox.org> | 2013-03-12 22:09:21 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-03-13 17:22:07 +0100 |
commit | 44c440e2b9a5930f66cc05541f4a5bf99df8f355 (patch) | |
tree | aff8f2fc1a73e6e9e0ca530c0bec7d9ffdc0686c | |
parent | d23978011c1a0ff8eaba0b24bb6cf38bff67a865 (diff) | |
download | meta-openembedded-44c440e2b9a5930f66cc05541f4a5bf99df8f355.tar.gz |
libav: library packages shouldn't rdepend on libav package
Otherwise the libav executables (avplay, ffmpeg etc.) get dragged
into the image, along with all their dependencies (e.g. SDL).
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Acked-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-multimedia/libav/libav.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-oe/recipes-multimedia/libav/libav.inc b/meta-oe/recipes-multimedia/libav/libav.inc index 388a56716..54307afda 100644 --- a/meta-oe/recipes-multimedia/libav/libav.inc +++ b/meta-oe/recipes-multimedia/libav/libav.inc | |||
@@ -11,7 +11,7 @@ ARM_INSTRUCTION_SET = "arm" | |||
11 | # faac faad2 lame schroedinger libgsm | 11 | # faac faad2 lame schroedinger libgsm |
12 | DEPENDS = "x264 virtual/libsdl zlib libogg libvorbis libvpx libtheora ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'liba52', d)}" | 12 | DEPENDS = "x264 virtual/libsdl zlib libogg libvorbis libvpx libtheora ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'liba52', d)}" |
13 | 13 | ||
14 | INC_PR = "r7" | 14 | INC_PR = "r8" |
15 | 15 | ||
16 | inherit autotools pkgconfig | 16 | inherit autotools pkgconfig |
17 | 17 | ||
@@ -96,6 +96,7 @@ python populate_packages_prepend() { | |||
96 | do_split_packages(d, av_libdir, '^lib(.*)\.so\..*', | 96 | do_split_packages(d, av_libdir, '^lib(.*)\.so\..*', |
97 | output_pattern='lib%s', | 97 | output_pattern='lib%s', |
98 | description='libav %s library', | 98 | description='libav %s library', |
99 | extra_depends='', | ||
99 | prepend=True, | 100 | prepend=True, |
100 | allow_links=True) | 101 | allow_links=True) |
101 | 102 | ||