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 CAFC81382C5 for ; Sat, 10 Apr 2021 13:31:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29D49E07AE; Sat, 10 Apr 2021 13:31:14 +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 138B6E07AE for ; Sat, 10 Apr 2021 13:31:14 +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 8CFBD340A3B for ; Sat, 10 Apr 2021 13:31:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E505E645 for ; Sat, 10 Apr 2021 13:31:08 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1618061438.016e5f1211fdc9956fac4eca30c23f96d3573ca2.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/zinc/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-emulation/zinc/zinc-1.1-r1.ebuild X-VCS-Directories: games-emulation/zinc/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 016e5f1211fdc9956fac4eca30c23f96d3573ca2 X-VCS-Branch: master Date: Sat, 10 Apr 2021 13:31:08 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 230408c4-1eb6-4635-9967-b7cbd9f70193 X-Archives-Hash: 6924e17a13feedf040ff551853885617 commit: 016e5f1211fdc9956fac4eca30c23f96d3573ca2 Author: Sam James gentoo org> AuthorDate: Sat Apr 10 13:11:31 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Apr 10 13:30:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=016e5f12 games-emulation/zinc: update EAPI 6 -> 7, add missing libstdc++ compat dep Closes: https://bugs.gentoo.org/739192 Signed-off-by: Sam James gentoo.org> games-emulation/zinc/zinc-1.1-r1.ebuild | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/games-emulation/zinc/zinc-1.1-r1.ebuild b/games-emulation/zinc/zinc-1.1-r1.ebuild index 69f75f4b58f..8bf3b3d76e4 100644 --- a/games-emulation/zinc/zinc-1.1-r1.ebuild +++ b/games-emulation/zinc/zinc-1.1-r1.ebuild @@ -1,29 +1,31 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 DESCRIPTION="An x86 binary-only emulator for Sony ZN-1, ZN-2, and Namco System 11 arcades" HOMEPAGE="http://caesar.logiqx.com/php/emulator.php?id=zinc_linux" SRC_URI="http://caesar.logiqx.com/zips/emus/linux/zinc_linux/${P//[-.]/}-lnx.tar.bz2" +S="${WORKDIR}/zinc" LICENSE="freedist" SLOT="0" KEYWORDS="-* ~amd64 ~x86" -IUSE="" RESTRICT="strip" + QA_PREBUILT="/opt/bin/zinc /usr/lib*/*.so" RDEPEND=" + sys-libs/libstdc++-v3[abi_x86_32(-)] + x11-libs/libX11[abi_x86_32(-)] x11-libs/libXext[abi_x86_32(-)] virtual/opengl[abi_x86_32(-)] " -S="${WORKDIR}/zinc" - src_install() { + default + exeinto /opt/bin doexe zinc dolib.so libcontrolznc.so librendererznc.so libsoundznc.so libs11player.so - einstalldocs }