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: virtual/wine/
Date: Sun, 22 Dec 2019 19:58:28
Message-Id: 1577044681.40a064074c4e6508341fef697c86da1d1c5b959d.sarnex@gentoo
1 commit: 40a064074c4e6508341fef697c86da1d1c5b959d
2 Author: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 22 19:58:01 2019 +0000
4 Commit: Nick Sarnie <sarnex <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 22 19:58:01 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/wine.git/commit/?id=40a06407
7
8 virtual/wine: Add 0-r7
9
10 Package-Manager: Portage-2.3.82, Repoman-2.3.20
11 Signed-off-by: Nick Sarnie <sarnex <AT> gentoo.org>
12
13 virtual/wine/wine-0-r7.ebuild | 26 ++++++++++++++++++++++++++
14 1 file changed, 26 insertions(+)
15
16 diff --git a/virtual/wine/wine-0-r7.ebuild b/virtual/wine/wine-0-r7.ebuild
17 new file mode 100644
18 index 0000000..18cacfa
19 --- /dev/null
20 +++ b/virtual/wine/wine-0-r7.ebuild
21 @@ -0,0 +1,26 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +DESCRIPTION="Virtual for Wine that supports multiple variants and slotting"
28 +
29 +SLOT="0"
30 +KEYWORDS="amd64 x86"
31 +IUSE="+abi_x86_32 +abi_x86_64 staging"
32 +
33 +REQUIRED_USE="|| ( abi_x86_32 abi_x86_64 )"
34 +
35 +# Note, the ordering here is intentional, to take advantage of the short-circuit
36 +# logic of portage, to enforce wine-vanilla as default for new users. The idea
37 +# behind this is that some USE flags may pull in 3rd-party patchsets, so default
38 +# of vanilla prevents that.
39 +RDEPEND="
40 + staging? ( || (
41 + app-emulation/wine-staging[staging]
42 + ) )
43 + || (
44 + app-emulation/wine-vanilla[abi_x86_32=,abi_x86_64=]
45 + app-emulation/wine-staging[abi_x86_32=,abi_x86_64=]
46 + )
47 + !app-emulation/wine:0"