Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Thu, 27 Sep 2018 16:23:56
Message-Id: 1538065145.2b5d25609dfe7a6dd1caab7d6e73a7ddf3e5f354.whissi@gentoo
1 commit: 2b5d25609dfe7a6dd1caab7d6e73a7ddf3e5f354
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 27 14:42:26 2018 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 27 16:19:05 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b5d2560
7
8 mozconfig-v6.60.eclass: Remove dead code
9
10 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
11
12 eclass/mozconfig-v6.60.eclass | 27 +--------------------------
13 1 file changed, 1 insertion(+), 26 deletions(-)
14
15 diff --git a/eclass/mozconfig-v6.60.eclass b/eclass/mozconfig-v6.60.eclass
16 index 101db58a81f..f8b6b65811f 100644
17 --- a/eclass/mozconfig-v6.60.eclass
18 +++ b/eclass/mozconfig-v6.60.eclass
19 @@ -1,7 +1,7 @@
20 # Copyright 1999-2018 Gentoo Foundation
21 # Distributed under the terms of the GNU General Public License v2
22 #
23 -# @ECLASS: mozconfig-v6.58.eclass
24 +# @ECLASS: mozconfig-v6.60.eclass
25 # @MAINTAINER:
26 # mozilla team <mozilla@g.o>
27 # @SUPPORTED_EAPIS: 5 6 7
28 @@ -74,16 +74,6 @@ inherit flag-o-matic toolchain-funcs mozcoreconf-v6
29 # Set the variable to "enabled" if the use flag should be enabled by default.
30 # Set the variable to any value if the use flag should exist but not be default-enabled.
31
32 -# @ECLASS-VARIABLE: MOZCONFIG_OPTIONAL_QT5
33 -# @DESCRIPTION:
34 -# Set this variable before the inherit line, when an ebuild can provide
35 -# optional qt5 support via IUSE="qt5". Currently this would include
36 -# ebuilds for firefox, but thunderbird and seamonkey could follow in the future.
37 -#
38 -# Leave the variable UNSET if qt5 support should not be available.
39 -# Set the variable to "enabled" if the use flag should be enabled by default.
40 -# Set the variable to any value if the use flag should exist but not be default-enabled.
41 -
42 # use-flags common among all mozilla ebuilds
43 IUSE="${IUSE} dbus debug neon pulseaudio selinux startup-notification system-harfbuzz
44 system-icu system-jpeg system-libevent system-sqlite system-libvpx"
45 @@ -295,21 +285,6 @@ mozconfig_config() {
46 toolkit_comment="gtk2 use flag"
47 fi
48 fi
49 - if [[ -n ${MOZCONFIG_OPTIONAL_QT5} ]]; then
50 - if use qt5; then
51 - toolkit="cairo-qt"
52 - toolkit_comment="qt5 use flag"
53 - # need to specify these vars because the qt5 versions are not found otherwise,
54 - # and setting --with-qtdir overrides the pkg-config include dirs
55 - local i
56 - for i in qmake moc rcc; do
57 - echo "export HOST_${i^^}=\"$(qt5_get_bindir)/${i}\"" \
58 - >> "${S}"/.mozconfig || die
59 - done
60 - echo 'unset QTDIR' >> "${S}"/.mozconfig || die
61 - mozconfig_annotate '+qt5' --disable-gio
62 - fi
63 - fi
64 mozconfig_annotate "${toolkit_comment}" --enable-default-toolkit=${toolkit}
65
66 # Instead of the standard --build= and --host=, mozilla uses --host instead