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/vgba/
Date: Sun, 29 Apr 2018 13:07:04
Message-Id: 1525007194.86312b411fdea7d3a55e6ff5d74d54b53c3508cd.pacho@gentoo
1 commit: 86312b411fdea7d3a55e6ff5d74d54b53c3508cd
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 29 12:21:46 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 29 13:06:34 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86312b41
7
8 games-emulation/vgba: Stop using games.eclass
9
10 Package-Manager: Portage-2.3.31, Repoman-2.3.9
11
12 games-emulation/vgba/vgba-4.8-r1.ebuild | 29 +++++++++++++++++++++++++++++
13 1 file changed, 29 insertions(+)
14
15 diff --git a/games-emulation/vgba/vgba-4.8-r1.ebuild b/games-emulation/vgba/vgba-4.8-r1.ebuild
16 new file mode 100644
17 index 00000000000..b3a974dbfd8
18 --- /dev/null
19 +++ b/games-emulation/vgba/vgba-4.8-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="Gameboy Advance (GBA) emulator for Linux"
27 +HOMEPAGE="http://www.komkon.org/fms/VGBA/"
28 +SRC_URI="http://fms.komkon.org/VGBA/VGBA${PV/.}-Linux-Ubuntu-bin.tgz"
29 +
30 +LICENSE="VGBA"
31 +SLOT="0"
32 +KEYWORDS="-* ~amd64 ~x86"
33 +RESTRICT="strip"
34 +IUSE=""
35 +
36 +RDEPEND="
37 + x11-libs/libXext
38 + sys-libs/zlib
39 +"
40 +
41 +QA_PREBUILT="/opt/bin/vgba"
42 +
43 +S="${WORKDIR}"
44 +
45 +src_install() {
46 + into /opt
47 + dobin vgba
48 + HTML_DOCS="VGBA.html" einstalldocs
49 +}