aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Stakenvicius <axs@gentoo.org>2016-04-27 17:23:24 -0400
committerIan Stakenvicius <axs@gentoo.org>2016-04-27 17:23:24 -0400
commit8f9f5e9c5e13ed61de409d2b60722f5dd8fa60a0 (patch)
treeb01dd3f7ecae5f20fa16a1b4bd4fc0cb8a33f67c
parentverify_distfiles.sh: fix bug related to esr distfile matches (diff)
downloadmozilla-8f9f5e9c.tar.gz
mozilla-8f9f5e9c.tar.bz2
mozilla-8f9f5e9c.zip
mozconfig-v6.45.eclass: do not require newer libvpx on thunderbird-45.0
-rw-r--r--eclass/mozconfig-v6.45.eclass10
1 files changed, 9 insertions, 1 deletions
diff --git a/eclass/mozconfig-v6.45.eclass b/eclass/mozconfig-v6.45.eclass
index 43478271..6d1586b2 100644
--- a/eclass/mozconfig-v6.45.eclass
+++ b/eclass/mozconfig-v6.45.eclass
@@ -120,10 +120,18 @@ RDEPEND=">=app-text/hunspell-1.2
system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 )
system-libevent? ( =dev-libs/libevent-2.0*:0= )
system-sqlite? ( >=dev-db/sqlite-3.9.1:3[secure-delete,debug=] )
- system-libvpx? ( >=media-libs/libvpx-1.5.0:0=[postproc,svc] )
system-harfbuzz? ( >=media-libs/harfbuzz-1.1.3:0=[graphite2,icu] >=media-gfx/graphite2-1.3.8 )
"
+if [[ ${PV} == "45.0" ]]; then
+ RDEPEND+="
+ system-libvpx? ( >=media-libs/libvpx-1.3.0:0=[postproc] )"
+else
+ # 45.1.0 and above bumped the libvpx requirement
+ RDEPEND+="
+ system-libvpx? ( >=media-libs/libvpx-1.5.0:0=[postproc] )"
+fi
+
if [[ -n ${MOZCONFIG_OPTIONAL_GTK3} ]]; then
if [[ ${MOZCONFIG_OPTIONAL_GTK3} = "enabled" ]]; then
IUSE+=" +gtk3"