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 C59861382C5 for ; Thu, 19 Apr 2018 19:29:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A9DEE0A9B; Thu, 19 Apr 2018 19:29:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 E108EE0A9B for ; Thu, 19 Apr 2018 19:29:25 +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 D9FA4335C60 for ; Thu, 19 Apr 2018 19:29:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA6D9243 for ; Thu, 19 Apr 2018 19:29:22 +0000 (UTC) From: "Lars Wendler" 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" Message-ID: <1524166156.19342050b6d040d4f5b08aaf2b8d64a9cf7caefc.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/mgba-0.6.3.ebuild X-VCS-Directories: games-emulation/mgba/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 19342050b6d040d4f5b08aaf2b8d64a9cf7caefc X-VCS-Branch: master Date: Thu, 19 Apr 2018 19:29:22 +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: c5ce43fa-508c-4bc2-a4ac-86ae37b5a22f X-Archives-Hash: 22889cd30cd3356f4b4120f7ecd7ab72 commit: 19342050b6d040d4f5b08aaf2b8d64a9cf7caefc Author: Lars Wendler gentoo org> AuthorDate: Thu Apr 19 19:28:58 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Thu Apr 19 19:29:16 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19342050 games-emulation/mgba: Fixed several QA issues Thanks to Soap for reporting these issues. Closes: https://bugs.gentoo.org/653556 Package-Manager: Portage-2.3.31, Repoman-2.3.9 games-emulation/mgba/mgba-0.6.3.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/games-emulation/mgba/mgba-0.6.3.ebuild b/games-emulation/mgba/mgba-0.6.3.ebuild index b1c0a8b0b0a..6674579a2fc 100644 --- a/games-emulation/mgba/mgba-0.6.3.ebuild +++ b/games-emulation/mgba/mgba-0.6.3.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/${PN}-emu/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MPL-2.0" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="debug ffmpeg imagemagick opengl qt5 +sdl" +IUSE="debug ffmpeg imagemagick libav opengl qt5 +sdl" REQUIRED_USE="|| ( qt5 sdl ) qt5? ( opengl )" @@ -20,7 +20,10 @@ RDEPEND=" dev-db/sqlite:3 media-libs/libpng:0= sys-libs/zlib[minizip] - ffmpeg? ( virtual/ffmpeg ) + ffmpeg? ( + libav? ( media-video/libav:= ) + !libav? ( media-video/ffmpeg:= ) + ) imagemagick? ( media-gfx/imagemagick:= ) opengl? ( virtual/opengl ) qt5? ( @@ -45,8 +48,8 @@ src_prepare() { src_configure() { local mycmakeargs=( + -DCMAKE_SKIP_RPATH=ON -DBUILD_GL="$(usex opengl)" - -DBUILD_GLES=OFF -DBUILD_PYTHON=OFF -DBUILD_QT="$(usex qt5)" -DBUILD_SDL="$(usex sdl)"