diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2014-08-09 14:46:29 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-08-11 10:59:19 +0200 |
commit | 36d29b40a0f708f6c11aa7e3552ee86703e7a146 (patch) | |
tree | a9bb2ff2b51f76fc68d78a8d0e9bbd338c8541f7 /meta-oe/recipes-multimedia | |
parent | 750e948236a3ea81bf96fad9338460a3f770e9e0 (diff) | |
download | meta-openembedded-36d29b40a0f708f6c11aa7e3552ee86703e7a146.tar.gz |
libwebp: fix wrong DEPENDS
* there is no such thing as packagespecific build-time DEPENDS
* RDEPENDS_${PN}-gif2web isn't needed, because it's detected
automatically by shlibs providers code
* fixes following floating dependencies:
WARN: libwebp: libwebp-gif2webp rdepends on giflib but it isn't a build dependency?
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-multimedia')
-rw-r--r-- | meta-oe/recipes-multimedia/webp/libwebp_0.4.0.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-oe/recipes-multimedia/webp/libwebp_0.4.0.bb b/meta-oe/recipes-multimedia/webp/libwebp_0.4.0.bb index a5a91697b..7663b3b0b 100644 --- a/meta-oe/recipes-multimedia/webp/libwebp_0.4.0.bb +++ b/meta-oe/recipes-multimedia/webp/libwebp_0.4.0.bb | |||
@@ -12,6 +12,8 @@ SECTION = "libs" | |||
12 | LICENSE = "BSD" | 12 | LICENSE = "BSD" |
13 | LIC_FILES_CHKSUM = "file://PATENTS;md5=7ec8a34de2073ea13ea2991006246d20" | 13 | LIC_FILES_CHKSUM = "file://PATENTS;md5=7ec8a34de2073ea13ea2991006246d20" |
14 | 14 | ||
15 | DEPENDS = "giflib" | ||
16 | |||
15 | SRC_URI = "https://webp.googlecode.com/files/${BP}.tar.gz" | 17 | SRC_URI = "https://webp.googlecode.com/files/${BP}.tar.gz" |
16 | SRC_URI[md5sum] = "c8dd1d26eb9566833aba269b86d97e68" | 18 | SRC_URI[md5sum] = "c8dd1d26eb9566833aba269b86d97e68" |
17 | SRC_URI[sha256sum] = "31913577e96386556855b41d210736449445fe96cfbe9289014e9b8afa944d69" | 19 | SRC_URI[sha256sum] = "31913577e96386556855b41d210736449445fe96cfbe9289014e9b8afa944d69" |
@@ -43,4 +45,3 @@ PACKAGES =+ "${PN}-gif2webp" | |||
43 | 45 | ||
44 | DESCRIPTION_${PN}-gif2webp = "Simple tool to convert animated GIFs to WebP" | 46 | DESCRIPTION_${PN}-gif2webp = "Simple tool to convert animated GIFs to WebP" |
45 | FILES_${PN}-gif2webp = "${bindir}/gif2webp" | 47 | FILES_${PN}-gif2webp = "${bindir}/gif2webp" |
46 | DEPENDS_${PN}-gif2webp += "giflib" | ||