Gentoo Archives: gentoo-commits

From: Marcel Unbehaun <frostworks@×××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gamerlay:master commit in: app-emulation/fs-uae-launcher/
Date: Sun, 08 Dec 2013 11:44:14
Message-Id: 1386503091.3da7e0a163677865bf5b3a2009a83b21dbd8adca.frostwork@gentoo
1 commit: 3da7e0a163677865bf5b3a2009a83b21dbd8adca
2 Author: Marcel Unbehaun <marcel <AT> frostworx <DOT> de>
3 AuthorDate: Sun Dec 8 11:44:51 2013 +0000
4 Commit: Marcel Unbehaun <frostworks <AT> gmx <DOT> de>
5 CommitDate: Sun Dec 8 11:44:51 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=3da7e0a1
7
8 [app-emulation/fs-uae-launcher] initial fs-uae-launcher-2.3.11.ebuild
9
10 ---
11 .../fs-uae-launcher/fs-uae-launcher-2.3.11.ebuild | 31 ++++++++++++++++++++++
12 1 file changed, 31 insertions(+)
13
14 diff --git a/app-emulation/fs-uae-launcher/fs-uae-launcher-2.3.11.ebuild b/app-emulation/fs-uae-launcher/fs-uae-launcher-2.3.11.ebuild
15 new file mode 100644
16 index 0000000..dcc5626
17 --- /dev/null
18 +++ b/app-emulation/fs-uae-launcher/fs-uae-launcher-2.3.11.ebuild
19 @@ -0,0 +1,31 @@
20 +# Copyright 1999-2013 Gentoo Foundation
21 +# Distributed under the terms of the GNU General Public License v2
22 +# $Header: $
23 +
24 +EAPI=5
25 +
26 +PYTHON_COMPAT=( python{2_6,2_7} )
27 +
28 +inherit eutils games distutils-r1
29 +
30 +DESCRIPTION="WxPython launcher for FS-UAE"
31 +HOMEPAGE="http://fs-uae.net/"
32 +SRC_URI="http://fs-uae.net/fs-uae/devel/${PV}dev/${P}dev.tar.gz"
33 +
34 +LICENSE="GPL-2"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~x86"
37 +IUSE=""
38 +
39 +DEPEND="dev-python/wxpython
40 + dev-python/pygame
41 + dev-python/pyside"
42 +RDEPEND="${DEPEND}"
43 +
44 +S="${WORKDIR}/${P}dev"
45 +
46 +
47 +src_install() {
48 + distutils-r1_src_install
49 + make_desktop_entry ${PN} "FS-UAE Launcher" fs-uae
50 +}