From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1141937-garchives=archives.gentoo.org@lists.gentoo.org> 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 5BFBE138350 for <garchives@archives.gentoo.org>; Sat, 1 Feb 2020 03:11:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99386E088A; Sat, 1 Feb 2020 03:11:13 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7CF9FE088A for <gentoo-commits@lists.gentoo.org>; Sat, 1 Feb 2020 03:11:13 +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 F15CA34E3A1 for <gentoo-commits@lists.gentoo.org>; Sat, 1 Feb 2020 03:11:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 64847109 for <gentoo-commits@lists.gentoo.org>; Sat, 1 Feb 2020 03:11:10 +0000 (UTC) From: "Lars Wendler" <polynomial-c@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" <polynomial-c@gentoo.org> Message-ID: <1580526661.e34e279d5d5dee9ab8661490a2ab6b881be0d9e7.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/mgba/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/mgba/metadata.xml games-emulation/mgba/mgba-0.8.0.ebuild games-emulation/mgba/mgba-9999.ebuild X-VCS-Directories: games-emulation/mgba/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: e34e279d5d5dee9ab8661490a2ab6b881be0d9e7 X-VCS-Branch: master Date: Sat, 1 Feb 2020 03:11:10 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fd33903e-d35a-4316-b8b5-e234f7b42e19 X-Archives-Hash: c618608f610ffe278906961c303b30cb commit: e34e279d5d5dee9ab8661490a2ab6b881be0d9e7 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org> AuthorDate: Sat Feb 1 03:08:53 2020 +0000 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org> CommitDate: Sat Feb 1 03:11:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e34e279d games-emulation/mgba: Added "discord" USE flag Thanks-to: Esteve Varela Colominas <esteve.varela <AT> gmail.com> Closes: https://bugs.gentoo.org/707576 Package-Manager: Portage-2.3.86, Repoman-2.3.20 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org> games-emulation/mgba/metadata.xml | 1 + games-emulation/mgba/mgba-0.8.0.ebuild | 3 ++- games-emulation/mgba/mgba-9999.ebuild | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/games-emulation/mgba/metadata.xml b/games-emulation/mgba/metadata.xml index ef2909f744e..d65ffa04f67 100644 --- a/games-emulation/mgba/metadata.xml +++ b/games-emulation/mgba/metadata.xml @@ -6,6 +6,7 @@ <name>Lars Wendler</name> </maintainer> <use> + <flag name="discord">Enable Discord RPC support</flag> <flag name="elf">Enable the use of elf utils via <pkg>dev-libs/elfutils</pkg></flag> </use> <upstream> diff --git a/games-emulation/mgba/mgba-0.8.0.ebuild b/games-emulation/mgba/mgba-0.8.0.ebuild index cc49129ae05..15a46f8a700 100644 --- a/games-emulation/mgba/mgba-0.8.0.ebuild +++ b/games-emulation/mgba/mgba-0.8.0.ebuild @@ -19,7 +19,7 @@ else fi LICENSE="MPL-2.0" SLOT="0" -IUSE="debug elf ffmpeg libav opengl qt5 +sdl sqlite" +IUSE="debug discord elf ffmpeg libav opengl qt5 +sdl sqlite" REQUIRED_USE="|| ( qt5 sdl ) qt5? ( opengl )" @@ -72,6 +72,7 @@ src_configure() { -DM_CORE_GB=ON -DM_CORE_GBA=ON -DUSE_DEBUGGERS="$(usex debug)" + -DUSE_DISCORD_RPC="$(usex discord)" -DUSE_EDITLINE="$(usex debug)" -DUSE_ELF="$(usex elf)" -DUSE_EPOXY=OFF diff --git a/games-emulation/mgba/mgba-9999.ebuild b/games-emulation/mgba/mgba-9999.ebuild index 3543aa68ebf..1200fa57ed4 100644 --- a/games-emulation/mgba/mgba-9999.ebuild +++ b/games-emulation/mgba/mgba-9999.ebuild @@ -19,7 +19,7 @@ else fi LICENSE="MPL-2.0" SLOT="0" -IUSE="debug elf ffmpeg libav opengl qt5 +sdl sqlite" +IUSE="debug discord elf ffmpeg libav opengl qt5 +sdl sqlite" REQUIRED_USE="|| ( qt5 sdl ) qt5? ( opengl )" @@ -68,6 +68,7 @@ src_configure() { -DM_CORE_GB=ON -DM_CORE_GBA=ON -DUSE_DEBUGGERS="$(usex debug)" + -DUSE_DISCORD_RPC="$(usex discord)" -DUSE_EDITLINE="$(usex debug)" -DUSE_ELF="$(usex elf)" -DUSE_EPOXY=OFF