From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BF828139694 for ; Mon, 10 Apr 2017 17:23:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 389D821C0CA; Mon, 10 Apr 2017 17:23:07 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1694D21C0CA for ; Mon, 10 Apr 2017 17:23:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 203D533BEBE for ; Mon, 10 Apr 2017 17:23:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B18A37438 for ; Mon, 10 Apr 2017 17:22:57 +0000 (UTC) From: "NP Hardass" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "NP Hardass" Message-ID: <1491844923.7b5333121b0b41b08f94c88d8da3e9eba41cfd2e.np-hardass@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: virtual/wine/ X-VCS-Repository: repo/gentoo X-VCS-Files: virtual/wine/metadata.xml virtual/wine/wine-0-r4.ebuild X-VCS-Directories: virtual/wine/ X-VCS-Committer: np-hardass X-VCS-Committer-Name: NP Hardass X-VCS-Revision: 7b5333121b0b41b08f94c88d8da3e9eba41cfd2e X-VCS-Branch: master Date: Mon, 10 Apr 2017 17:22:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: d9fcdeef-784c-4745-b08d-673776ca6263 X-Archives-Hash: 8e8c2ad4aa22659c0e039ed062e840dd commit: 7b5333121b0b41b08f94c88d8da3e9eba41cfd2e Author: NP-Hardass gentoo org> AuthorDate: Mon Apr 10 17:20:27 2017 +0000 Commit: NP Hardass gentoo org> CommitDate: Mon Apr 10 17:22:03 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b533312 virtual/wine: Virtual for multislot/split wine. Thanks to eroen for his help with laying the groundwork. Thanks to bobwya, chiitoo, eroen, sarnex, slackner, and wizardedit for their feedback and testing. Imported from wine-a-holics overlay Package-Manager: Portage-2.3.3, Repoman-2.3.1 virtual/wine/metadata.xml | 16 ++++++++++++++++ virtual/wine/wine-0-r4.ebuild | 31 +++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) diff --git a/virtual/wine/metadata.xml b/virtual/wine/metadata.xml new file mode 100644 index 00000000000..640696b8ae1 --- /dev/null +++ b/virtual/wine/metadata.xml @@ -0,0 +1,16 @@ + + + + + wine@gentoo.org + Wine + + + Enable Ixit's Gallium Nine Patchset + Enable Wine-Staging's Patchset + + + Allows for any variant of WINE, regardless of slotting to fulfill the dependencies + traditionally fulfilled by the non-slotted, pre-variant, app-emulation/wine. + + diff --git a/virtual/wine/wine-0-r4.ebuild b/virtual/wine/wine-0-r4.ebuild new file mode 100644 index 00000000000..37b7a7f5477 --- /dev/null +++ b/virtual/wine/wine-0-r4.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Virtual for WINE that supports multiple variants and slotting" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="staging d3d9" + +# Note, the ordering here is intentional, to take advantage of the short-circuit +# logic of portage, to enforce wine-vanilla as default for new users. The idea +# behind this is that some USE flags may pull in 3rd-party patchsets, so default +# of vanilla prevents that. +RDEPEND=" + staging? ( || ( + app-emulation/wine-staging[staging] + app-emulation/wine-any[staging] + ) ) + d3d9? ( || ( + app-emulation/wine-d3d9[d3d9] + app-emulation/wine-any[d3d9] + ) ) + || ( + app-emulation/wine-vanilla + app-emulation/wine-staging + app-emulation/wine-d3d9 + app-emulation/wine-any + ) + !app-emulation/wine:0"