sys-apps/i2c-tools: fix quoting on vars
[gentoo.git] / eclass / mozconfig-v6.60.eclass
1 # Copyright 1999-2018 Gentoo Foundation
2 # Distributed under the terms of the GNU General Public License v2
3 #
4 # @ECLASS: mozconfig-v6.60.eclass
5 # @MAINTAINER:
6 # mozilla team <mozilla@gentoo.org>
7 # @SUPPORTED_EAPIS: 5 6 7
8 # @BLURB: the new mozilla common configuration eclass for FF33 and newer, v6
9 # @DESCRIPTION:
10 # This eclass is used in mozilla ebuilds (firefox, thunderbird, seamonkey)
11 # to provide a single common place for the common mozilla engine compoments.
12 #
13 # The eclass provides all common dependencies as well as common use flags.
14 #
15 # Some use flags which may be optional in particular mozilla packages can be
16 # supported through setting eclass variables.
17 #
18 # This eclass inherits mozconfig helper functions as defined in mozcoreconf-v3,
19 # and so ebuilds inheriting this eclass do not need to inherit that.
20
21 case ${EAPI} in
22         0|1|2|3|4)
23                 die "EAPI=${EAPI} not supported"
24                 ;;
25         5)
26                 inherit multilib
27                 ;;
28 esac
29
30 inherit flag-o-matic toolchain-funcs mozcoreconf-v6
31
32 # @ECLASS-VARIABLE: MOZCONFIG_OPTIONAL_WIFI
33 # @DESCRIPTION:
34 # Set this variable before the inherit line, when an ebuild needs to provide
35 # optional necko-wifi support via IUSE="wifi".  Currently this would include
36 # ebuilds for firefox, and potentially seamonkey.
37 #
38 # Leave the variable UNSET if necko-wifi 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 # @ECLASS-VARIABLE: MOZCONFIG_OPTIONAL_JIT
43 # @DESCRIPTION:
44 # Set this variable before the inherit line, when an ebuild needs to provide
45 # deterministic jit support via IUSE="jit".  The upstream default will be used
46 # otherwise, which is generally to enable jit unless support for the platform
47 # is missing.
48 #
49 # Set the variable to "enabled" if the use flag should be enabled by default.
50 # Set the variable to any value if the use flag should exist but not be default-enabled.
51
52 # @ECLASS-VARIABLE: MOZCONFIG_OPTIONAL_GTK3
53 # @DESCRIPTION:
54 # Set this variable before the inherit line, when an ebuild can provide
55 # optional gtk3 support via IUSE="force-gtk3".  Currently this would include
56 # thunderbird and seamonkey in the future, once support is ready for testing.
57 #
58 # Leave the variable UNSET if gtk3 support should not be optionally available.
59 # Set the variable to "enabled" if the use flag should be enabled by default.
60 # Set the variable to any value if the use flag should exist but not be default-enabled.
61 # If gtk+:3 is to be the standard toolkit, do not use this and instead use
62 # MOZCONFIG_OPTIONAL_GTK2ONLY.
63
64 # @ECLASS-VARIABLE: MOZCONFIG_OPTIONAL_GTK2ONLY
65 # @DESCRIPTION:
66 # Set this variable before the inherit line, when an ebuild can provide
67 # optional gtk2-only support via IUSE="gtk2".
68 #
69 # Note that this option conflicts directly with MOZCONFIG_OPTIONAL_GTK3, both
70 # variables cannot be set at the same time and this variable will be ignored if
71 # MOZCONFIG_OPTIONAL_GTK3 is set.
72 #
73 # Leave the variable UNSET if gtk2-only support should not be available.
74 # Set the variable to "enabled" if the use flag should be enabled by default.
75 # Set the variable to any value if the use flag should exist but not be default-enabled.
76
77 # use-flags common among all mozilla ebuilds
78 IUSE="${IUSE} clang dbus debug neon pulseaudio selinux startup-notification system-harfbuzz
79  system-icu system-jpeg system-libevent system-sqlite system-libvpx"
80
81 # some notes on deps:
82 # gtk:2 minimum is technically 2.10 but gio support (enabled by default) needs 2.14
83 # media-libs/mesa needs to be 10.2 or above due to a bug with flash+vdpau
84
85 RDEPEND=">=app-text/hunspell-1.5.4:=
86         dev-libs/atk
87         dev-libs/expat
88         >=x11-libs/cairo-1.10[X]
89         >=x11-libs/gtk+-2.18:2
90         x11-libs/gdk-pixbuf
91         >=x11-libs/pango-1.22.0
92         >=media-libs/libpng-1.6.34:0=[apng]
93         >=media-libs/mesa-10.2:*
94         media-libs/fontconfig
95         >=media-libs/freetype-2.4.10
96         kernel_linux? ( !pulseaudio? ( media-libs/alsa-lib ) )
97         virtual/freedesktop-icon-theme
98         dbus? ( >=sys-apps/dbus-0.60
99                 >=dev-libs/dbus-glib-0.72 )
100         startup-notification? ( >=x11-libs/startup-notification-0.8 )
101         >=x11-libs/pixman-0.19.2
102         >=dev-libs/glib-2.26:2
103         >=sys-libs/zlib-1.2.3
104         >=virtual/libffi-3.0.10:=
105         virtual/ffmpeg
106         x11-libs/libX11
107         x11-libs/libXcomposite
108         x11-libs/libXdamage
109         x11-libs/libXext
110         x11-libs/libXfixes
111         x11-libs/libXrender
112         x11-libs/libXt
113         system-icu? ( >=dev-libs/icu-59.1:= )
114         system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 )
115         system-libevent? ( >=dev-libs/libevent-2.0:0= )
116         system-sqlite? ( >=dev-db/sqlite-3.23.1:3[secure-delete,debug=] )
117         system-libvpx? (
118                 >=media-libs/libvpx-1.5.0:0=[postproc]
119                 <media-libs/libvpx-1.8
120         )
121         system-harfbuzz? ( >=media-libs/harfbuzz-1.4.2:0= >=media-gfx/graphite2-1.3.9-r1 )
122 "
123
124 if [[ -n ${MOZCONFIG_OPTIONAL_GTK3} ]]; then
125         MOZCONFIG_OPTIONAL_GTK2ONLY=
126         if [[ ${MOZCONFIG_OPTIONAL_GTK3} = "enabled" ]]; then
127                 IUSE+=" +force-gtk3"
128         else
129                 IUSE+=" force-gtk3"
130         fi
131         RDEPEND+=" force-gtk3? ( >=x11-libs/gtk+-3.4.0:3 )"
132 elif [[ -n ${MOZCONFIG_OPTIONAL_GTK2ONLY} ]]; then
133         if [[ ${MOZCONFIG_OPTIONAL_GTK2ONLY} = "enabled" ]]; then
134                 IUSE+=" +gtk2"
135         else
136                 IUSE+=" gtk2"
137         fi
138         RDEPEND+=" !gtk2? ( >=x11-libs/gtk+-3.4.0:3 )"
139 else
140         # no gtk3 related dep set by optional use flags, force it
141         RDEPEND+="  >=x11-libs/gtk+-3.4.0:3"
142 fi
143 if [[ -n ${MOZCONFIG_OPTIONAL_WIFI} ]]; then
144         if [[ ${MOZCONFIG_OPTIONAL_WIFI} = "enabled" ]]; then
145                 IUSE+=" +wifi"
146         else
147                 IUSE+=" wifi"
148         fi
149         RDEPEND+="
150         wifi? (
151                 kernel_linux? ( >=sys-apps/dbus-0.60
152                         >=dev-libs/dbus-glib-0.72
153                         net-misc/networkmanager )
154         )"
155 fi
156
157 DEPEND="app-arch/zip
158         app-arch/unzip
159         >=sys-devel/binutils-2.30
160         sys-apps/findutils
161         clang? (
162                 >=sys-devel/llvm-4.0.1[gold]
163                 >=sys-devel/lld-4.0.1
164         )
165         pulseaudio? ( media-sound/pulseaudio )
166         elibc_glibc? (
167                 virtual/cargo
168                 virtual/rust
169         )
170         elibc_musl? (
171                 virtual/cargo
172                 virtual/rust
173         )
174         ${RDEPEND}"
175
176 RDEPEND+="
177         pulseaudio? ( || ( media-sound/pulseaudio
178                 >=media-sound/apulse-0.1.9 ) )
179         selinux? ( sec-policy/selinux-mozilla )"
180
181 # @FUNCTION: mozconfig_config
182 # @DESCRIPTION:
183 # Set common configure options for mozilla packages.
184 # Call this within src_configure() phase, after mozconfig_init
185 #
186 # Example:
187 #
188 # inherit mozconfig-v6.46
189 #
190 # src_configure() {
191 #       mozconfig_init
192 #       mozconfig_config
193 #       # ... misc ebuild-unique settings via calls to
194 #       # ... mozconfig_{annotate,use_with,use_enable}
195 #       mozconfig_final
196 # }
197
198 mozconfig_config() {
199         if use clang && ! tc-is-clang ; then
200                 # Force clang
201                 einfo "Enforcing the use of clang due to USE=clang ..."
202                 CC=${CHOST}-clang
203                 CXX=${CHOST}-clang++
204                 strip-unsupported-flags
205         elif ! use clang && ! tc-is-gcc ; then
206                 # Force gcc
207                 einfo "Enforcing the use of gcc due to USE=-clang ..."
208                 CC=${CHOST}-gcc
209                 CXX=${CHOST}-g++
210                 strip-unsupported-flags
211         fi
212
213         # Migrated from mozcoreconf-2
214         mozconfig_annotate 'system_libs' \
215                 --with-system-zlib \
216                 --with-system-bz2
217
218         # Stylo is horribly broken on arm, renders GUI unusable
219         use arm && mozconfig_annotate 'breaks UI on arm' --disable-stylo
220
221         # Must pass release in order to properly select linker
222         mozconfig_annotate 'Enable by Gentoo' --enable-release
223
224         # Set correct update channel, bug 677722
225         if [[ -n "${MOZ_ESR}" ]] ; then
226                 mozconfig_annotate 'set update channel to ESR' --enable-update-channel=esr
227         fi
228
229         # Avoid auto-magic on linker
230         if use clang ; then
231                 # This is upstream's default
232                 mozconfig_annotate "forcing ld=lld due to USE=clang" --enable-linker=lld
233         elif tc-ld-is-gold ; then
234                 mozconfig_annotate "linker is set to gold" --enable-linker=gold
235         else
236                 mozconfig_annotate "linker is set to bfd" --enable-linker=bfd
237         fi
238
239         if has bindist ${IUSE}; then
240                 mozconfig_use_enable !bindist official-branding
241                 if [[ ${PN} == firefox ]] && use bindist ; then
242                         mozconfig_annotate '' --with-branding=browser/branding/aurora
243                 fi
244         fi
245
246         # Enable position independent executables
247         mozconfig_annotate 'enabled by Gentoo' --enable-pie
248         mozconfig_use_enable debug
249         mozconfig_use_enable debug tests
250
251         if ! use debug ; then
252                 mozconfig_annotate 'disabled by Gentoo' --disable-debug-symbols
253         else
254                 mozconfig_annotate 'enabled by Gentoo' --enable-debug-symbols
255         fi
256
257         mozconfig_use_enable startup-notification
258
259         if [[ -n ${MOZCONFIG_OPTIONAL_WIFI} ]] ; then
260                 # wifi pulls in dbus so manage both here
261                 mozconfig_use_enable wifi necko-wifi
262                 if use kernel_linux && use wifi && ! use dbus; then
263                         echo "Enabling dbus support due to wifi request"
264                         mozconfig_annotate 'dbus required by necko-wifi on linux' --enable-dbus
265                 else
266                         mozconfig_use_enable dbus
267                 fi
268         else
269                 mozconfig_use_enable dbus
270                 mozconfig_annotate 'disabled' --disable-necko-wifi
271         fi
272
273         if [[ -n ${MOZCONFIG_OPTIONAL_JIT} ]]; then
274                 mozconfig_use_enable jit ion
275         fi
276
277         # These are enabled by default in all mozilla applications
278         mozconfig_annotate '' --with-system-nspr --with-nspr-prefix="${SYSROOT}${EPREFIX}"/usr
279         mozconfig_annotate '' --with-system-nss --with-nss-prefix="${SYSROOT}${EPREFIX}"/usr
280         mozconfig_annotate '' --x-includes="${SYSROOT}${EPREFIX}"/usr/include --x-libraries="${SYSROOT}${EPREFIX}"/usr/$(get_libdir)
281         if use system-libevent; then
282                 mozconfig_annotate '' --with-system-libevent="${SYSROOT}${EPREFIX}"/usr
283         fi
284         mozconfig_annotate '' --prefix="${EPREFIX}"/usr
285         mozconfig_annotate '' --libdir="${EPREFIX}"/usr/$(get_libdir)
286         mozconfig_annotate 'Gentoo default' --enable-system-hunspell
287         mozconfig_annotate '' --disable-crashreporter
288         mozconfig_annotate 'Gentoo default' --with-system-png
289         mozconfig_annotate '' --enable-system-ffi
290         mozconfig_annotate '' --disable-gconf
291         mozconfig_annotate '' --with-intl-api
292         mozconfig_annotate '' --enable-system-pixman
293
294         # skia has no support for big-endian platforms
295         if [[ $(tc-endian) == "big" ]]; then
296                 mozconfig_annotate 'big endian target' --disable-skia
297         else
298                 mozconfig_annotate '' --enable-skia
299         fi
300
301         # default toolkit is cairo-gtk3, optional use flags can change this
302         local toolkit="cairo-gtk3"
303         local toolkit_comment=""
304         if [[ -n ${MOZCONFIG_OPTIONAL_GTK3} ]]; then
305                 if ! use force-gtk3; then
306                         toolkit="cairo-gtk2"
307                         toolkit_comment="force-gtk3 use flag"
308                 fi
309         fi
310         if [[ -n ${MOZCONFIG_OPTIONAL_GTK2ONLY} ]]; then
311                 if use gtk2 ; then
312                         toolkit="cairo-gtk2"
313                 else
314                         toolkit_comment="gtk2 use flag"
315                 fi
316         fi
317         mozconfig_annotate "${toolkit_comment}" --enable-default-toolkit=${toolkit}
318
319         # Instead of the standard --build= and --host=, mozilla uses --host instead
320         # of --build, and --target intstead of --host.
321         # Note, mozilla also has --build but it does not do what you think it does.
322         # Set both --target and --host as mozilla uses python to guess values otherwise
323         mozconfig_annotate '' --target="${CHOST}"
324         mozconfig_annotate '' --host="${CBUILD:-${CHOST}}"
325
326         mozconfig_use_enable pulseaudio
327         # force the deprecated alsa sound code if pulseaudio is disabled
328         if use kernel_linux && ! use pulseaudio ; then
329                 mozconfig_annotate '-pulseaudio' --enable-alsa
330         fi
331
332         mozconfig_use_enable system-sqlite
333         mozconfig_use_with system-jpeg
334         mozconfig_use_with system-icu
335         mozconfig_use_with system-libvpx
336         mozconfig_use_with system-harfbuzz
337         mozconfig_use_with system-harfbuzz system-graphite2
338
339         if use clang ; then
340                 # https://bugzilla.mozilla.org/show_bug.cgi?id=1423822
341                 mozconfig_annotate 'elf-hack is broken when using Clang' --disable-elf-hack
342         elif use arm ; then
343                 mozconfig_annotate 'elf-hack is broken on arm' --disable-elf-hack
344         fi
345
346         # Modifications to better support ARM, bug 553364
347         if use neon ; then
348                 mozconfig_annotate '' --with-fpu=neon
349
350                 if ! tc-is-clang ; then
351                         # thumb options aren't supported when using clang, bug 666966
352                         mozconfig_annotate '' --with-thumb=yes
353                         mozconfig_annotate '' --with-thumb-interwork=no
354                 fi
355         fi
356         if [[ ${CHOST} == armv*h* ]] ; then
357                 mozconfig_annotate '' --with-float-abi=hard
358                 if ! use system-libvpx ; then
359                         sed -i -e "s|softfp|hard|" \
360                                 "${S}"/media/libvpx/moz.build
361                 fi
362         fi
363 }
364
365 # @FUNCTION: mozconfig_install_prefs
366 # @DESCRIPTION:
367 # Set preferences into the prefs.js file specified as a parameter to
368 # the function.  This sets both some common prefs to all mozilla
369 # packages, and any prefs that may relate to the use flags administered
370 # by mozconfig_config().
371 #
372 # Call this within src_install() phase, after copying the template
373 # prefs file (if any) from ${FILESDIR}
374 #
375 # Example:
376 #
377 # inherit mozconfig-v6.46
378 #
379 # src_install() {
380 #       cp "${FILESDIR}"/gentoo-default-prefs.js \
381 #       "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js"  \
382 #       || die
383 #
384 #       mozconfig_install_prefs \
385 #       "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js"
386 #
387 #       ...
388 # }
389
390 mozconfig_install_prefs() {
391         local prefs_file="${1}"
392
393         einfo "Adding prefs from mozconfig to ${prefs_file}"
394
395         # set dictionary path, to use system hunspell
396         echo "pref(\"spellchecker.dictionary_path\", \"${EPREFIX}/usr/share/myspell\");" \
397                 >>"${prefs_file}" || die
398
399         # force the graphite pref if system-harfbuzz is enabled, since the pref cant disable it
400         if use system-harfbuzz ; then
401                 echo "sticky_pref(\"gfx.font_rendering.graphite.enabled\",true);" \
402                         >>"${prefs_file}" || die
403         fi
404
405         # force cairo as the canvas renderer on platforms without skia support
406         if [[ $(tc-endian) == "big" ]] ; then
407                 echo "sticky_pref(\"gfx.canvas.azure.backends\",\"cairo\");" \
408                         >>"${prefs_file}" || die
409                 echo "sticky_pref(\"gfx.content.azure.backends\",\"cairo\");" \
410                         >>"${prefs_file}" || die
411         fi
412 }