Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-emulation/zinc/
Date: Sun, 29 Apr 2018 13:07:04
Message-Id: 1525007198.76ff05cfc4ef5c014a46c55ad9c803acacce72f9.pacho@gentoo
1 commit: 76ff05cfc4ef5c014a46c55ad9c803acacce72f9
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 29 12:26:49 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 29 13:06:38 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76ff05cf
7
8 games-emulation/zinc: Stop using games.eclass
9
10 Package-Manager: Portage-2.3.31, Repoman-2.3.9
11
12 games-emulation/zinc/zinc-1.1-r1.ebuild | 29 +++++++++++++++++++++++++++++
13 1 file changed, 29 insertions(+)
14
15 diff --git a/games-emulation/zinc/zinc-1.1-r1.ebuild b/games-emulation/zinc/zinc-1.1-r1.ebuild
16 new file mode 100644
17 index 00000000000..69f75f4b58f
18 --- /dev/null
19 +++ b/games-emulation/zinc/zinc-1.1-r1.ebuild
20 @@ -0,0 +1,29 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +DESCRIPTION="An x86 binary-only emulator for Sony ZN-1, ZN-2, and Namco System 11 arcades"
27 +HOMEPAGE="http://caesar.logiqx.com/php/emulator.php?id=zinc_linux"
28 +SRC_URI="http://caesar.logiqx.com/zips/emus/linux/zinc_linux/${P//[-.]/}-lnx.tar.bz2"
29 +
30 +LICENSE="freedist"
31 +SLOT="0"
32 +KEYWORDS="-* ~amd64 ~x86"
33 +IUSE=""
34 +RESTRICT="strip"
35 +QA_PREBUILT="/opt/bin/zinc /usr/lib*/*.so"
36 +
37 +RDEPEND="
38 + x11-libs/libXext[abi_x86_32(-)]
39 + virtual/opengl[abi_x86_32(-)]
40 +"
41 +
42 +S="${WORKDIR}/zinc"
43 +
44 +src_install() {
45 + exeinto /opt/bin
46 + doexe zinc
47 + dolib.so libcontrolznc.so librendererznc.so libsoundznc.so libs11player.so
48 + einstalldocs
49 +}