Gentoo Archives: gentoo-commits

From: Nick Sarnie <sarnex@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/wine:master commit in: app-emulation/wine-vanilla/
Date: Mon, 30 Apr 2018 01:34:01
Message-Id: 1525051879.9522a4e1efc4cfaa154bf7c644380ce0817dfa8a.sarnex@gentoo
1 commit: 9522a4e1efc4cfaa154bf7c644380ce0817dfa8a
2 Author: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 28 18:52:02 2018 +0000
4 Commit: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 30 01:31:19 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=9522a4e1
7
8 app-emulation/wine-vanilla: Bump to 3.5
9
10 Bug: https://bugs.gentoo.org/652696
11 Package-Manager: Portage-2.3.31, Repoman-2.3.9
12
13 app-emulation/wine-vanilla/Manifest | 1 +
14 app-emulation/wine-vanilla/wine-vanilla-3.5.ebuild | 529 +++++++++++++++++++++
15 2 files changed, 530 insertions(+)
16
17 diff --git a/app-emulation/wine-vanilla/Manifest b/app-emulation/wine-vanilla/Manifest
18 index ad9a2c7..067d894 100644
19 --- a/app-emulation/wine-vanilla/Manifest
20 +++ b/app-emulation/wine-vanilla/Manifest
21 @@ -31,3 +31,4 @@ DIST wine-3.1.tar.xz 19730700 BLAKE2B 287cc42474a9cc57eb7f4b5db2ba79ac5ec8742dff
22 DIST wine-3.2.tar.xz 19793180 BLAKE2B 014256734f4c1d70c81115ba6c470f8264746b57be663d81f7e54593fb328a548da00c5e52438af75d923a3c6c5d3997097bd76cf1856b99f0f921f36e5151da SHA512 94b4903d628bf7aacd712a2bf566b53161880bf28311611106776df222222f592edb212d491f02e4c1b0c60d88e4b4a126981d445d1e18018238ff993c6c3092
23 DIST wine-3.3.tar.xz 19891048 BLAKE2B be77224e7add585f6bba77f436faa8bc9da4f4416d07e2fc67e29d5f9553b03ae8cef12fcb8dee917d84bb5a1c66af16d3140b17b195f2db58464ffe86ff7d9e SHA512 c9e4c75e94d745837208bf877b19c4e4e46df1e78082d21e716f52c9f9d93eaabbec8bf34783cda68e4275f53e37929b81ac128e5b8a13c1e5035223b2621d6a
24 DIST wine-3.4.tar.xz 19932472 BLAKE2B 8cac5d2c8b3cfb7377f8c3b0aaac6326afd1bda5a9203c9705ea473c43483475d80b23a53e40f2c17af256f523ad759525701b20ac8d600b662b34845ea9414b SHA512 5787bf3fa13d363302ee26f86b96ed728b2b06184572021efdbb00b2c8ebd088056c6d9e22c6c78f0edc0a0b12e26facccc51f08970c8c5eaab4309e86b4286c
25 +DIST wine-3.5.tar.xz 19963436 BLAKE2B 83d7c0719a088f8c705f7a9d8a6df6b9ee5e0a5ffa57c0a921875097be29298bebb9025222039432c65da32359e187a93413e04a5bb73171f0033911595baf9f SHA512 c1e36f3db862fdedd00c3ac20c84c6eb799b53fe32e959b481a6168baf7d9725ed9bd0a97e7f9b651e3ccfba4f8fb623445369be03fde5010ed0fcb0a53e7d3f
26
27 diff --git a/app-emulation/wine-vanilla/wine-vanilla-3.5.ebuild b/app-emulation/wine-vanilla/wine-vanilla-3.5.ebuild
28 new file mode 100644
29 index 0000000..9bebca2
30 --- /dev/null
31 +++ b/app-emulation/wine-vanilla/wine-vanilla-3.5.ebuild
32 @@ -0,0 +1,529 @@
33 +# Copyright 1999-2018 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +PLOCALES="ar bg ca cs da de el en en_US eo es fa fi fr he hi hr hu it ja ko lt ml nb_NO nl or pa pl pt_BR pt_PT rm ro ru sk sl sr_RS@cyrillic sr_RS@latin sv te th tr uk wa zh_CN zh_TW"
39 +PLOCALE_BACKUP="en"
40 +
41 +inherit autotools estack eutils flag-o-matic gnome2-utils l10n multilib multilib-minimal pax-utils toolchain-funcs virtualx versionator xdg-utils
42 +
43 +MY_PN="${PN%%-*}"
44 +MY_P="${MY_PN}-${PV}"
45 +
46 +if [[ ${PV} == "9999" ]] ; then
47 + EGIT_REPO_URI="https://source.winehq.org/git/wine.git"
48 + EGIT_BRANCH="master"
49 + inherit git-r3
50 + SRC_URI=""
51 + #KEYWORDS=""
52 +else
53 + MAJOR_V=$(get_version_component_range 1)
54 + SRC_URI="https://dl.winehq.org/wine/source/${MAJOR_V}.x/${MY_P}.tar.xz"
55 + KEYWORDS="-* ~amd64 ~x86 ~x86-fbsd"
56 +fi
57 +S="${WORKDIR}/${MY_P}"
58 +
59 +GWP_V="20180120"
60 +PATCHDIR="${WORKDIR}/gentoo-wine-patches"
61 +
62 +DESCRIPTION="Free implementation of Windows(tm) on Unix, without external patchsets"
63 +HOMEPAGE="https://www.winehq.org/"
64 +SRC_URI="${SRC_URI}
65 + https://dev.gentoo.org/~np-hardass/distfiles/wine/gentoo-wine-patches-${GWP_V}.tar.xz
66 +"
67 +
68 +LICENSE="LGPL-2.1"
69 +SLOT="${PV}"
70 +IUSE="+abi_x86_32 +abi_x86_64 +alsa capi cups custom-cflags dos elibc_glibc +fontconfig +gecko gphoto2 gsm gssapi gstreamer +jpeg kerberos kernel_FreeBSD +lcms ldap +mono mp3 ncurses netapi nls odbc openal opencl +opengl osmesa oss +perl pcap +png prelink pulseaudio +realtime +run-exes samba scanner sdl selinux +ssl test +threads +truetype udev +udisks v4l vulkan +X +xcomposite xinerama +xml"
71 +REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )
72 + X? ( truetype )
73 + elibc_glibc? ( threads )
74 + osmesa? ( opengl )
75 + test? ( abi_x86_32 )" # osmesa-opengl #286560 # X-truetype #551124
76 +
77 +# FIXME: the test suite is unsuitable for us; many tests require net access
78 +# or fail due to Xvfb's opengl limitations.
79 +RESTRICT="test"
80 +
81 +COMMON_DEPEND="
82 + X? (
83 + x11-libs/libXcursor[${MULTILIB_USEDEP}]
84 + x11-libs/libXext[${MULTILIB_USEDEP}]
85 + x11-libs/libXfixes[${MULTILIB_USEDEP}]
86 + x11-libs/libXrandr[${MULTILIB_USEDEP}]
87 + x11-libs/libXi[${MULTILIB_USEDEP}]
88 + x11-libs/libXxf86vm[${MULTILIB_USEDEP}]
89 + )
90 + alsa? ( media-libs/alsa-lib[${MULTILIB_USEDEP}] )
91 + capi? ( net-libs/libcapi[${MULTILIB_USEDEP}] )
92 + cups? ( net-print/cups:=[${MULTILIB_USEDEP}] )
93 + fontconfig? ( media-libs/fontconfig:=[${MULTILIB_USEDEP}] )
94 + gphoto2? ( media-libs/libgphoto2:=[${MULTILIB_USEDEP}] )
95 + gsm? ( media-sound/gsm:=[${MULTILIB_USEDEP}] )
96 + gssapi? ( virtual/krb5[${MULTILIB_USEDEP}] )
97 + gstreamer? (
98 + media-libs/gstreamer:1.0[${MULTILIB_USEDEP}]
99 + media-plugins/gst-plugins-meta:1.0[${MULTILIB_USEDEP}]
100 + )
101 + jpeg? ( virtual/jpeg:0=[${MULTILIB_USEDEP}] )
102 + kerberos? ( virtual/krb5[${MULTILIB_USEDEP}] )
103 + lcms? ( media-libs/lcms:2=[${MULTILIB_USEDEP}] )
104 + ldap? ( net-nds/openldap:=[${MULTILIB_USEDEP}] )
105 + mp3? ( >=media-sound/mpg123-1.5.0[${MULTILIB_USEDEP}] )
106 + ncurses? ( >=sys-libs/ncurses-5.2:0=[${MULTILIB_USEDEP}] )
107 + netapi? ( net-fs/samba[netapi(+),${MULTILIB_USEDEP}] )
108 + nls? ( sys-devel/gettext[${MULTILIB_USEDEP}] )
109 + odbc? ( dev-db/unixODBC:=[${MULTILIB_USEDEP}] )
110 + openal? ( media-libs/openal:=[${MULTILIB_USEDEP}] )
111 + opencl? ( virtual/opencl[${MULTILIB_USEDEP}] )
112 + opengl? (
113 + virtual/glu[${MULTILIB_USEDEP}]
114 + virtual/opengl[${MULTILIB_USEDEP}]
115 + )
116 + osmesa? ( >=media-libs/mesa-13[osmesa,${MULTILIB_USEDEP}] )
117 + pcap? ( net-libs/libpcap[${MULTILIB_USEDEP}] )
118 + png? ( media-libs/libpng:0=[${MULTILIB_USEDEP}] )
119 + pulseaudio? ( media-sound/pulseaudio[${MULTILIB_USEDEP}] )
120 + scanner? ( media-gfx/sane-backends:=[${MULTILIB_USEDEP}] )
121 + sdl? ( media-libs/libsdl2:=[haptic,joystick,${MULTILIB_USEDEP}] )
122 + ssl? ( net-libs/gnutls:=[${MULTILIB_USEDEP}] )
123 + truetype? ( >=media-libs/freetype-2.0.0[${MULTILIB_USEDEP}] )
124 + udev? ( virtual/libudev:=[${MULTILIB_USEDEP}] )
125 + udisks? ( sys-apps/dbus[${MULTILIB_USEDEP}] )
126 + v4l? ( media-libs/libv4l[${MULTILIB_USEDEP}] )
127 + vulkan? ( media-libs/vulkan-loader[${MULTILIB_USEDEP}] )
128 + xcomposite? ( x11-libs/libXcomposite[${MULTILIB_USEDEP}] )
129 + xinerama? ( x11-libs/libXinerama[${MULTILIB_USEDEP}] )
130 + xml? (
131 + dev-libs/libxml2[${MULTILIB_USEDEP}]
132 + dev-libs/libxslt[${MULTILIB_USEDEP}]
133 + )"
134 +
135 +RDEPEND="${COMMON_DEPEND}
136 + app-emulation/wine-desktop-common
137 + >app-eselect/eselect-wine-0.3
138 + !app-emulation/wine:0
139 + dos? ( >=games-emulation/dosbox-0.74_p20160629 )
140 + gecko? ( app-emulation/wine-gecko:2.47[abi_x86_32?,abi_x86_64?] )
141 + mono? ( app-emulation/wine-mono:4.7.1 )
142 + perl? (
143 + dev-lang/perl
144 + dev-perl/XML-Simple
145 + )
146 + pulseaudio? (
147 + realtime? ( sys-auth/rtkit )
148 + )
149 + samba? ( >=net-fs/samba-3.0.25[winbind] )
150 + selinux? ( sec-policy/selinux-wine )
151 + udisks? ( sys-fs/udisks:2 )"
152 +
153 +# tools/make_requests requires perl
154 +DEPEND="${COMMON_DEPEND}
155 + sys-devel/flex
156 + >=sys-kernel/linux-headers-2.6
157 + virtual/pkgconfig
158 + virtual/yacc
159 + X? ( x11-base/xorg-proto )
160 + prelink? ( sys-devel/prelink )
161 + xinerama? ( x11-base/xorg-proto )"
162 +
163 +# These use a non-standard "Wine" category, which is provided by
164 +# /etc/xdg/applications-merged/wine.menu
165 +QA_DESKTOP_FILE="usr/share/applications/wine-browsedrive.desktop
166 +usr/share/applications/wine-notepad.desktop
167 +usr/share/applications/wine-uninstaller.desktop
168 +usr/share/applications/wine-winecfg.desktop"
169 +
170 +PATCHES=(
171 + "${PATCHDIR}/patches/${MY_PN}-1.5.26-winegcc.patch" #260726
172 + "${PATCHDIR}/patches/${MY_PN}-1.9.5-multilib-portage.patch" #395615
173 + "${PATCHDIR}/patches/${MY_PN}-1.6-memset-O3.patch" #480508
174 + "${PATCHDIR}/patches/${MY_PN}-2.0-multislot-apploader.patch" #310611
175 +)
176 +PATCHES_BIN=()
177 +
178 +# https://bugs.gentoo.org/show_bug.cgi?id=635222
179 +if [[ ${#PATCHES_BIN[@]} -ge 1 ]] || [[ ${PV} == 9999 ]]; then
180 + DEPEND+=" dev-util/patchbin"
181 +fi
182 +
183 +wine_compiler_check() {
184 + [[ ${MERGE_TYPE} = "binary" ]] && return 0
185 +
186 + # GCC-specific bugs
187 + if tc-is-gcc; then
188 + # bug #549768
189 + if use abi_x86_64 && [[ $(gcc-major-version) = 5 && $(gcc-minor-version) -le 2 ]]; then
190 + ebegin "Checking for gcc-5 ms_abi compiler bug"
191 + $(tc-getCC) -O2 "${PATCHDIR}/files/pr66838.c" -o "${T}"/pr66838 || die
192 + # Run in subshell to prevent "Aborted" message
193 + ( "${T}"/pr66838 || false ) >/dev/null 2>&1
194 + if ! eend $?; then
195 + eerror "64-bit wine cannot be built with gcc-5.1 or initial patchset of 5.2.0"
196 + eerror "due to compiler bugs; please re-emerge the latest gcc-5.2.x ebuild,"
197 + eerror "or use gcc-config to select a different compiler version."
198 + eerror "See https://bugs.gentoo.org/549768"
199 + eerror
200 + return 1
201 + fi
202 + fi
203 + # bug #574044
204 + if use abi_x86_64 && [[ $(gcc-major-version) = 5 && $(gcc-minor-version) = 3 ]]; then
205 + ebegin "Checking for gcc-5-3 stack realignment compiler bug"
206 + # Compile in subshell to prevent "Aborted" message
207 + ( $(tc-getCC) -O2 -mincoming-stack-boundary=3 "${PATCHDIR}/files/pr69140.c" -o "${T}"/pr69140 ) >/dev/null 2>&1
208 + if ! eend $?; then
209 + eerror "Wine cannot be built with this version of gcc-5.3"
210 + eerror "due to compiler bugs; please re-emerge the latest gcc-5.3.x ebuild,"
211 + eerror "or use gcc-config to select a different compiler version."
212 + eerror "See https://bugs.gentoo.org/574044"
213 + eerror
214 + return 1
215 + fi
216 + fi
217 + fi
218 +
219 + # Ensure compiler support
220 + if use abi_x86_64; then
221 + ebegin "Checking for 64-bit compiler with builtin_ms_va_list support"
222 + # Compile in subshell to prevent "Aborted" message
223 + ( $(tc-getCC) -O2 "${PATCHDIR}/files/builtin_ms_va_list.c" -o "${T}"/builtin_ms_va_list >/dev/null 2>&1)
224 + if ! eend $?; then
225 + eerror "This version of $(tc-getCC) does not support builtin_ms_va_list, can't enable 64-bit wine"
226 + eerror
227 + eerror "You need gcc-4.4+ or clang 3.8+ to build 64-bit wine"
228 + eerror
229 + return 1
230 + fi
231 + fi
232 +}
233 +
234 +wine_build_environment_check() {
235 + [[ ${MERGE_TYPE} = "binary" ]] && return 0
236 +
237 + if use abi_x86_64; then
238 + if tc-is-gcc && [[ $(gcc-major-version) -lt 4 || ( $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 4 ) ]]; then
239 + eerror "You need gcc-4.4+ to compile 64-bit wine"
240 + die
241 + elif tc-is-clang && [[ $(clang-major-version) -lt 3 || ( $(clang-major-version) -eq 3 && $(clang-minor-version) -lt 8 ) ]]; then
242 + eerror "You need clang-3.8+ to compile 64-bit wine"
243 + die
244 + fi
245 + fi
246 + if tc-is-gcc && [[ $(gcc-major-version) -eq 5 && $(gcc-minor-version) -le 3 ]]; then
247 + ewarn "GCC-5.0-5.3 suffered from compiler bugs and are no longer supported by"
248 + ewarn "Gentoo's Toolchain Team. If your ebuild fails the compiler checks in"
249 + ewarn "the configure phase, either update your compiler or switch to <5.0 || >=5.4"
250 + fi
251 + if tc-is-gcc && [[ $(gcc-major-version) -eq 5 && $(gcc-minor-version) -eq 4 ]]; then
252 + if has "-march=i686" ${CFLAGS} && ! has "-mtune=generic" ${CFLAGS}; then
253 + ewarn "Compilation can hang with CFLAGS=\"-march=i686\". You can temporarily work"
254 + ewarn "around this by adding \"-mtune=generic\" to your CFLAGS for wine."
255 + ewarn "See package.env in man 5 portage for more information on how to do this."
256 + ewarn "See https://bugs.gentoo.org/show_bug.cgi?id=613128 for more details"
257 + fi
258 + fi
259 +
260 + if use abi_x86_32 && use opencl && [[ "$(eselect opencl show 2> /dev/null)" == "intel" ]]; then
261 + eerror "You cannot build wine with USE=opencl because intel-ocl-sdk is 64-bit only."
262 + eerror "See https://bugs.gentoo.org/487864 for more details."
263 + eerror
264 + return 1
265 + fi
266 +}
267 +
268 +wine_env_vcs_vars() {
269 + local pn_live_var="${PN//[-+]/_}_LIVE_COMMIT"
270 + local pn_live_val="${pn_live_var}"
271 + eval pn_live_val='$'${pn_live_val}
272 + if [[ ! -z ${EGIT_COMMIT} ]]; then
273 + eerror "Commits must now be specified using the environmental variables"
274 + eerror "WINE_COMMIT"
275 + eerror
276 + return 1
277 + fi
278 +}
279 +
280 +pkg_pretend() {
281 + wine_build_environment_check || die
282 +
283 + # Verify OSS support
284 + if use oss && ! use kernel_FreeBSD; then
285 + if ! has_version ">=media-sound/oss-4"; then
286 + eerror "You cannot build wine with USE=oss without having support from a"
287 + eerror "FreeBSD kernel or >=media-sound/oss-4 (only available through external repos)"
288 + eerror
289 + die
290 + fi
291 + fi
292 +}
293 +
294 +pkg_setup() {
295 + wine_build_environment_check || die
296 + wine_env_vcs_vars || die
297 +
298 + WINE_VARIANT="${PN#wine}-${PV}"
299 + WINE_VARIANT="${WINE_VARIANT#-}"
300 +
301 + MY_PREFIX="${EPREFIX}/usr/lib/wine-${WINE_VARIANT}"
302 + MY_DATAROOTDIR="${EPREFIX}/usr/share/wine-${WINE_VARIANT}"
303 + MY_DATADIR="${MY_DATAROOTDIR}"
304 + MY_DOCDIR="${EPREFIX}/usr/share/doc/${PF}"
305 + MY_INCLUDEDIR="${EPREFIX}/usr/include/wine-${WINE_VARIANT}"
306 + MY_LIBEXECDIR="${EPREFIX}/usr/libexec/wine-${WINE_VARIANT}"
307 + MY_LOCALSTATEDIR="${EPREFIX}/var/wine-${WINE_VARIANT}"
308 + MY_MANDIR="${MY_DATADIR}/man"
309 +}
310 +
311 +src_unpack() {
312 + if [[ ${PV} == "9999" ]] ; then
313 + EGIT_CHECKOUT_DIR="${S}" EGIT_COMMIT="${WINE_COMMIT}" git-r3_src_unpack
314 + fi
315 +
316 + default
317 +
318 + l10n_find_plocales_changes "${S}/po" "" ".po"
319 +}
320 +
321 +src_prepare() {
322 +
323 + eapply_bin(){
324 + local patch
325 + for patch in ${PATCHES_BIN[@]}; do
326 + patchbin --nogit < "${patch}" || die
327 + done
328 + }
329 +
330 + local md5="$(md5sum server/protocol.def)"
331 +
332 + default
333 + eapply_bin
334 + eautoreconf
335 +
336 + # Modification of the server protocol requires regenerating the server requests
337 + if [[ "$(md5sum server/protocol.def)" != "${md5}" ]]; then
338 + einfo "server/protocol.def was patched; running tools/make_requests"
339 + tools/make_requests || die #432348
340 + fi
341 + sed -i '/^UPDATE_DESKTOP_DATABASE/s:=.*:=true:' tools/Makefile.in || die
342 + if ! use run-exes; then
343 + sed -i '/^MimeType/d' loader/wine.desktop || die #117785
344 + fi
345 +
346 + # Edit wine.desktop to work for specific variant
347 + sed -e "/^Exec=/s/wine /wine-${WINE_VARIANT} /" -i loader/wine.desktop || die
348 +
349 + # hi-res default icon, #472990, https://bugs.winehq.org/show_bug.cgi?id=24652
350 + cp "${PATCHDIR}/files/oic_winlogo.ico" dlls/user32/resources/ || die
351 +
352 + l10n_get_locales > po/LINGUAS || die # otherwise wine doesn't respect LINGUAS
353 +
354 + # Fix manpage generation for locales #469418 and abi_x86_64 #617864
355 +
356 + # Duplicate manpages input files for wine64
357 + local f
358 + for f in loader/*.man.in; do
359 + cp ${f} ${f/wine/wine64} || die
360 + done
361 + # Add wine64 manpages to Makefile
362 + if use abi_x86_64; then
363 + sed -i "/wine.man.in/i \
364 + \\\twine64.man.in \\\\" loader/Makefile.in || die
365 + sed -i -E 's/(.*wine)(.*\.UTF-8\.man\.in.*)/&\
366 +\164\2/' loader/Makefile.in || die
367 + fi
368 +
369 + rm_man_file(){
370 + local file="${1}"
371 + loc=${2}
372 + sed -i "/${loc}\.UTF-8\.man\.in/d" "${file}" || die
373 + }
374 +
375 + while read f; do
376 + l10n_for_each_disabled_locale_do rm_man_file "${f}"
377 + done < <(find -name "Makefile.in" -exec grep -q "UTF-8.man.in" "{}" \; -print)
378 +}
379 +
380 +src_configure() {
381 + wine_compiler_check || die
382 +
383 + export LDCONFIG=/bin/true
384 + use custom-cflags || strip-flags
385 +
386 + multilib-minimal_src_configure
387 +}
388 +
389 +multilib_src_configure() {
390 + local myconf=(
391 + --prefix="${MY_PREFIX}"
392 + --datarootdir="${MY_DATAROOTDIR}"
393 + --datadir="${MY_DATADIR}"
394 + --docdir="${MY_DOCDIR}"
395 + --includedir="${MY_INCLUDEDIR}"
396 + --libdir="${EPREFIX}/usr/$(get_libdir)/wine-${WINE_VARIANT}"
397 + --libexecdir="${MY_LIBEXECDIR}"
398 + --localstatedir="${MY_LOCALSTATEDIR}"
399 + --mandir="${MY_MANDIR}"
400 + --sysconfdir=/etc/wine
401 + $(use_with alsa)
402 + $(use_with capi)
403 + $(use_with lcms cms)
404 + $(use_with cups)
405 + $(use_with ncurses curses)
406 + $(use_with udisks dbus)
407 + $(use_with fontconfig)
408 + $(use_with ssl gnutls)
409 + $(use_enable gecko mshtml)
410 + $(use_with gphoto2 gphoto)
411 + $(use_with gsm)
412 + $(use_with gssapi)
413 + $(use_with gstreamer)
414 + --without-hal
415 + $(use_with jpeg)
416 + $(use_with kerberos krb5)
417 + $(use_with ldap)
418 + $(use_enable mono mscoree)
419 + $(use_with mp3 mpg123)
420 + $(use_with netapi)
421 + $(use_with nls gettext)
422 + $(use_with openal)
423 + $(use_with opencl)
424 + $(use_with opengl)
425 + $(use_with osmesa)
426 + $(use_with oss)
427 + $(use_with pcap)
428 + $(use_with png)
429 + $(use_with pulseaudio pulse)
430 + $(use_with threads pthread)
431 + $(use_with scanner sane)
432 + $(use_with sdl)
433 + $(use_enable test tests)
434 + $(use_with truetype freetype)
435 + $(use_with udev)
436 + $(use_with v4l)
437 + $(use_with vulkan)
438 + $(use_with X x)
439 + $(use_with X xfixes)
440 + $(use_with xcomposite)
441 + $(use_with xinerama)
442 + $(use_with xml)
443 + $(use_with xml xslt)
444 + )
445 +
446 + local PKG_CONFIG AR RANLIB
447 + # Avoid crossdev's i686-pc-linux-gnu-pkg-config if building wine32 on amd64; #472038
448 + # set AR and RANLIB to make QA scripts happy; #483342
449 + tc-export PKG_CONFIG AR RANLIB
450 +
451 + if use amd64; then
452 + if [[ ${ABI} == amd64 ]]; then
453 + myconf+=( --enable-win64 )
454 + else
455 + myconf+=( --disable-win64 )
456 + fi
457 +
458 + # Note: using --with-wine64 results in problems with multilib.eclass
459 + # CC/LD hackery. We're using separate tools instead.
460 + fi
461 +
462 + ECONF_SOURCE=${S} \
463 + econf "${myconf[@]}"
464 + emake depend
465 +}
466 +
467 +multilib_src_test() {
468 + # FIXME: win32-only; wine64 tests fail with "could not find the Wine loader"
469 + if [[ ${ABI} == x86 ]]; then
470 + if [[ $(id -u) == 0 ]]; then
471 + ewarn "Skipping tests since they cannot be run under the root user."
472 + ewarn "To run the test ${MY_PN} suite, add userpriv to FEATURES in make.conf"
473 + return
474 + fi
475 +
476 + WINEPREFIX="${T}/.wine-${ABI}" \
477 + Xemake test
478 + fi
479 +}
480 +
481 +multilib_src_install_all() {
482 + local DOCS=( ANNOUNCE AUTHORS README )
483 + add_locale_docs() {
484 + local locale_doc="documentation/README.$1"
485 + [[ ! -e ${locale_doc} ]] || DOCS+=( ${locale_doc} )
486 + }
487 + l10n_for_each_locale_do add_locale_docs
488 +
489 + einstalldocs
490 + prune_libtool_files --all
491 +
492 + if ! use perl ; then # winedump calls function_grep.pl, and winemaker is a perl script
493 + rm "${D%/}${MY_PREFIX}"/bin/{wine{dump,maker},function_grep.pl} \
494 + "${D%/}${MY_MANDIR}"/man1/wine{dump,maker}.1 || die
495 + fi
496 +
497 + # Remove wineconsole if neither backend is installed #551124
498 + if ! use X && ! use ncurses; then
499 + rm "${D%/}${MY_PREFIX}"/bin/wineconsole* || die
500 + rm "${D%/}${MY_MANDIR}"/man1/wineconsole* || die
501 + rm_wineconsole() {
502 + rm "${D%/}${MY_PREFIX}/$(get_libdir)"/wine/{,fakedlls/}wineconsole.exe* || die
503 + }
504 + multilib_foreach_abi rm_wineconsole
505 + fi
506 +
507 + use abi_x86_32 && pax-mark psmr "${D%/}${MY_PREFIX}"/bin/wine{,-preloader} #255055
508 + use abi_x86_64 && pax-mark psmr "${D%/}${MY_PREFIX}"/bin/wine64{,-preloader}
509 +
510 + if use abi_x86_64 && ! use abi_x86_32; then
511 + dosym wine64 "${MY_PREFIX}"/bin/wine # 404331
512 + dosym wine64-preloader "${MY_PREFIX}"/bin/wine-preloader
513 + fi
514 +
515 + # Failglob for binloops, shouldn't be necessary, but including to stay safe
516 + eshopts_push -s failglob #615218
517 + # Make wrappers for binaries for handling multiple variants
518 + # Note: wrappers instead of symlinks because some are shell which use basename
519 + local b
520 + for b in "${D%/}${MY_PREFIX}"/bin/*; do
521 + make_wrapper "${b##*/}-${WINE_VARIANT}" "${MY_PREFIX}/bin/${b##*/}"
522 + done
523 + eshopts_pop
524 +}
525 +
526 +pkg_postinst() {
527 + eselect wine register ${P}
528 + if [[ ${PN} == "wine-vanilla" ]]; then
529 + eselect wine register --vanilla ${P} || die
530 + fi
531 +
532 + eselect wine update --all --if-unset || die
533 +
534 + xdg_desktop_database_update
535 +
536 + if ! use gecko; then
537 + ewarn "Without Wine Gecko, wine prefixes will not have a default"
538 + ewarn "implementation of iexplore. Many older windows applications"
539 + ewarn "rely upon the existence of an iexplore implementation, so"
540 + ewarn "you will likely need to install an external one, like via winetricks"
541 + fi
542 + if ! use mono; then
543 + ewarn "Without Wine Mono, wine prefixes will not have a default"
544 + ewarn "implementation of .NET. Many windows applications rely upon"
545 + ewarn "the existence of a .NET implementation, so you will likely need"
546 + ewarn "to install an external one, like via winetricks"
547 + fi
548 +}
549 +
550 +pkg_prerm() {
551 + eselect wine deregister ${P}
552 + if [[ ${PN} == "wine-vanilla" ]]; then
553 + eselect wine deregister --vanilla ${P} || die
554 + fi
555 +
556 + eselect wine update --all --if-unset || die
557 +}
558 +
559 +pkg_postrm() {
560 + xdg_desktop_database_update
561 +}