net-libs/webkit-gtk: arm64 stable
[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=[threads] )
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:0=[postproc]
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         || (
162                 (
163                         sys-devel/clang:8
164                         !clang? ( sys-devel/llvm:8 )
165                         clang? (
166                                 =sys-devel/lld-8*
167                                 sys-devel/llvm:8[gold]
168                         )
169                 )
170                 (
171                         sys-devel/clang:7
172                         !clang? ( sys-devel/llvm:7 )
173                         clang? (
174                                 =sys-devel/lld-7*
175                                 sys-devel/llvm:7[gold]
176                         )
177                 )
178                 (
179                         sys-devel/clang:6
180                         !clang? ( sys-devel/llvm:6 )
181                         clang? (
182                                 =sys-devel/lld-6*
183                                 sys-devel/llvm:6[gold]
184                         )
185                 )
186         )
187         pulseaudio? ( media-sound/pulseaudio )
188         elibc_glibc? (
189                 virtual/cargo
190                 virtual/rust
191         )
192         elibc_musl? (
193                 virtual/cargo
194                 virtual/rust
195         )
196         ${RDEPEND}"
197
198 RDEPEND+="
199         pulseaudio? ( || ( media-sound/pulseaudio
200                 >=media-sound/apulse-0.1.9 ) )
201         selinux? ( sec-policy/selinux-mozilla )"
202
203 # @FUNCTION: mozconfig_config
204 # @DESCRIPTION:
205 # Set common configure options for mozilla packages.
206 # Call this within src_configure() phase, after mozconfig_init
207 #
208 # Example:
209 #
210 # inherit mozconfig-v6.46
211 #
212 # src_configure() {
213 #       mozconfig_init
214 #       mozconfig_config
215 #       # ... misc ebuild-unique settings via calls to
216 #       # ... mozconfig_{annotate,use_with,use_enable}
217 #       mozconfig_final
218 # }
219
220 mozconfig_config() {
221         if use clang && ! tc-is-clang ; then
222                 # Force clang
223                 einfo "Enforcing the use of clang due to USE=clang ..."
224                 CC=${CHOST}-clang
225                 CXX=${CHOST}-clang++
226                 strip-unsupported-flags
227         elif ! use clang && ! tc-is-gcc ; then
228                 # Force gcc
229                 einfo "Enforcing the use of gcc due to USE=-clang ..."
230                 CC=${CHOST}-gcc
231                 CXX=${CHOST}-g++
232                 strip-unsupported-flags
233         fi
234
235         # Migrated from mozcoreconf-2
236         mozconfig_annotate 'system_libs' \
237                 --with-system-zlib \
238                 --with-system-bz2
239
240         # Stylo is horribly broken on arm, renders GUI unusable
241         use arm && mozconfig_annotate 'breaks UI on arm' --disable-stylo
242
243         # Must pass release in order to properly select linker
244         mozconfig_annotate 'Enable by Gentoo' --enable-release
245
246         # Set correct update channel, bug 677722
247         if [[ -n "${MOZ_ESR}" ]] ; then
248                 mozconfig_annotate 'set update channel to ESR' --enable-update-channel=esr
249         fi
250
251         # Avoid auto-magic on linker
252         if use clang ; then
253                 # This is upstream's default
254                 mozconfig_annotate "forcing ld=lld due to USE=clang" --enable-linker=lld
255         elif tc-ld-is-gold ; then
256                 mozconfig_annotate "linker is set to gold" --enable-linker=gold
257         else
258                 mozconfig_annotate "linker is set to bfd" --enable-linker=bfd
259         fi
260
261         if has bindist ${IUSE}; then
262                 mozconfig_use_enable !bindist official-branding
263                 if [[ ${PN} == firefox ]] && use bindist ; then
264                         mozconfig_annotate '' --with-branding=browser/branding/aurora
265                 fi
266         fi
267
268         # Enable position independent executables
269         mozconfig_annotate 'enabled by Gentoo' --enable-pie
270         mozconfig_use_enable debug
271         mozconfig_use_enable debug tests
272
273         if ! use debug ; then
274                 mozconfig_annotate 'disabled by Gentoo' --disable-debug-symbols
275         else
276                 mozconfig_annotate 'enabled by Gentoo' --enable-debug-symbols
277         fi
278
279         mozconfig_use_enable startup-notification
280
281         if [[ -n ${MOZCONFIG_OPTIONAL_WIFI} ]] ; then
282                 # wifi pulls in dbus so manage both here
283                 mozconfig_use_enable wifi necko-wifi
284                 if use kernel_linux && use wifi && ! use dbus; then
285                         echo "Enabling dbus support due to wifi request"
286                         mozconfig_annotate 'dbus required by necko-wifi on linux' --enable-dbus
287                 else
288                         mozconfig_use_enable dbus
289                 fi
290         else
291                 mozconfig_use_enable dbus
292                 mozconfig_annotate 'disabled' --disable-necko-wifi
293         fi
294
295         if [[ -n ${MOZCONFIG_OPTIONAL_JIT} ]]; then
296                 mozconfig_use_enable jit ion
297         fi
298
299         # These are enabled by default in all mozilla applications
300         mozconfig_annotate '' --with-system-nspr --with-nspr-prefix="${SYSROOT}${EPREFIX}"/usr
301         mozconfig_annotate '' --with-system-nss --with-nss-prefix="${SYSROOT}${EPREFIX}"/usr
302         mozconfig_annotate '' --x-includes="${SYSROOT}${EPREFIX}"/usr/include --x-libraries="${SYSROOT}${EPREFIX}"/usr/$(get_libdir)
303         if use system-libevent; then
304                 mozconfig_annotate '' --with-system-libevent="${SYSROOT}${EPREFIX}"/usr
305         fi
306         mozconfig_annotate '' --prefix="${EPREFIX}"/usr
307         mozconfig_annotate '' --libdir="${EPREFIX}"/usr/$(get_libdir)
308         mozconfig_annotate 'Gentoo default' --enable-system-hunspell
309         mozconfig_annotate '' --disable-crashreporter
310         mozconfig_annotate 'Gentoo default' --with-system-png
311         mozconfig_annotate '' --enable-system-ffi
312         mozconfig_annotate '' --disable-gconf
313         mozconfig_annotate '' --with-intl-api
314         mozconfig_annotate '' --enable-system-pixman
315
316         # skia has no support for big-endian platforms
317         if [[ $(tc-endian) == "big" ]]; then
318                 mozconfig_annotate 'big endian target' --disable-skia
319         else
320                 mozconfig_annotate '' --enable-skia
321         fi
322
323         # default toolkit is cairo-gtk3, optional use flags can change this
324         local toolkit="cairo-gtk3"
325         local toolkit_comment=""
326         if [[ -n ${MOZCONFIG_OPTIONAL_GTK3} ]]; then
327                 if ! use force-gtk3; then
328                         toolkit="cairo-gtk2"
329                         toolkit_comment="force-gtk3 use flag"
330                 fi
331         fi
332         if [[ -n ${MOZCONFIG_OPTIONAL_GTK2ONLY} ]]; then
333                 if use gtk2 ; then
334                         toolkit="cairo-gtk2"
335                 else
336                         toolkit_comment="gtk2 use flag"
337                 fi
338         fi
339         mozconfig_annotate "${toolkit_comment}" --enable-default-toolkit=${toolkit}
340
341         # Instead of the standard --build= and --host=, mozilla uses --host instead
342         # of --build, and --target intstead of --host.
343         # Note, mozilla also has --build but it does not do what you think it does.
344         # Set both --target and --host as mozilla uses python to guess values otherwise
345         mozconfig_annotate '' --target="${CHOST}"
346         mozconfig_annotate '' --host="${CBUILD:-${CHOST}}"
347
348         mozconfig_use_enable pulseaudio
349         # force the deprecated alsa sound code if pulseaudio is disabled
350         if use kernel_linux && ! use pulseaudio ; then
351                 mozconfig_annotate '-pulseaudio' --enable-alsa
352         fi
353
354         mozconfig_use_enable system-sqlite
355         mozconfig_use_with system-jpeg
356         mozconfig_use_with system-icu
357         mozconfig_use_with system-libvpx
358         mozconfig_use_with system-harfbuzz
359         mozconfig_use_with system-harfbuzz system-graphite2
360
361         if use clang ; then
362                 # https://bugzilla.mozilla.org/show_bug.cgi?id=1423822
363                 mozconfig_annotate 'elf-hack is broken when using Clang' --disable-elf-hack
364         fi
365
366         # Modifications to better support ARM, bug 553364
367         if use neon ; then
368                 mozconfig_annotate '' --with-fpu=neon
369
370                 if ! tc-is-clang ; then
371                         # thumb options aren't supported when using clang, bug 666966
372                         mozconfig_annotate '' --with-thumb=yes
373                         mozconfig_annotate '' --with-thumb-interwork=no
374                 fi
375         fi
376         if [[ ${CHOST} == armv*h* ]] ; then
377                 mozconfig_annotate '' --with-float-abi=hard
378                 if ! use system-libvpx ; then
379                         sed -i -e "s|softfp|hard|" \
380                                 "${S}"/media/libvpx/moz.build
381                 fi
382         fi
383 }
384
385 # @FUNCTION: mozconfig_install_prefs
386 # @DESCRIPTION:
387 # Set preferences into the prefs.js file specified as a parameter to
388 # the function.  This sets both some common prefs to all mozilla
389 # packages, and any prefs that may relate to the use flags administered
390 # by mozconfig_config().
391 #
392 # Call this within src_install() phase, after copying the template
393 # prefs file (if any) from ${FILESDIR}
394 #
395 # Example:
396 #
397 # inherit mozconfig-v6.46
398 #
399 # src_install() {
400 #       cp "${FILESDIR}"/gentoo-default-prefs.js \
401 #       "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js"  \
402 #       || die
403 #
404 #       mozconfig_install_prefs \
405 #       "${BUILD_OBJ_DIR}/dist/bin/browser/defaults/preferences/all-gentoo.js"
406 #
407 #       ...
408 # }
409
410 mozconfig_install_prefs() {
411         local prefs_file="${1}"
412
413         einfo "Adding prefs from mozconfig to ${prefs_file}"
414
415         # set dictionary path, to use system hunspell
416         echo "pref(\"spellchecker.dictionary_path\", \"${EPREFIX}/usr/share/myspell\");" \
417                 >>"${prefs_file}" || die
418
419         # force the graphite pref if system-harfbuzz is enabled, since the pref cant disable it
420         if use system-harfbuzz ; then
421                 echo "sticky_pref(\"gfx.font_rendering.graphite.enabled\",true);" \
422                         >>"${prefs_file}" || die
423         fi
424
425         # force cairo as the canvas renderer on platforms without skia support
426         if [[ $(tc-endian) == "big" ]] ; then
427                 echo "sticky_pref(\"gfx.canvas.azure.backends\",\"cairo\");" \
428                         >>"${prefs_file}" || die
429                 echo "sticky_pref(\"gfx.content.azure.backends\",\"cairo\");" \
430                         >>"${prefs_file}" || die
431         fi
432 }