From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id AE5F113827E for ; Sun, 8 Dec 2013 11:44:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 07EF9E0822; Sun, 8 Dec 2013 11:44:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8FBC1E0822 for ; Sun, 8 Dec 2013 11:44:08 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6E96233F49C for ; Sun, 8 Dec 2013 11:44:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 19F60E55A6 for ; Sun, 8 Dec 2013 11:44:06 +0000 (UTC) From: "Marcel Unbehaun" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marcel Unbehaun" Message-ID: <1386503091.3da7e0a163677865bf5b3a2009a83b21dbd8adca.frostwork@gentoo> Subject: [gentoo-commits] proj/gamerlay:master commit in: app-emulation/fs-uae-launcher/ X-VCS-Repository: proj/gamerlay X-VCS-Files: app-emulation/fs-uae-launcher/fs-uae-launcher-2.3.11.ebuild X-VCS-Directories: app-emulation/fs-uae-launcher/ X-VCS-Committer: frostwork X-VCS-Committer-Name: Marcel Unbehaun X-VCS-Revision: 3da7e0a163677865bf5b3a2009a83b21dbd8adca X-VCS-Branch: master Date: Sun, 8 Dec 2013 11:44:06 +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: d7c24a05-0396-4dcb-ad34-3aee62c0abb7 X-Archives-Hash: fcd9cedcf26957d99ecda5050c563b0c commit: 3da7e0a163677865bf5b3a2009a83b21dbd8adca Author: Marcel Unbehaun frostworx de> AuthorDate: Sun Dec 8 11:44:51 2013 +0000 Commit: Marcel Unbehaun gmx de> CommitDate: Sun Dec 8 11:44:51 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=3da7e0a1 [app-emulation/fs-uae-launcher] initial fs-uae-launcher-2.3.11.ebuild --- .../fs-uae-launcher/fs-uae-launcher-2.3.11.ebuild | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) 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 new file mode 100644 index 0000000..dcc5626 --- /dev/null +++ b/app-emulation/fs-uae-launcher/fs-uae-launcher-2.3.11.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_6,2_7} ) + +inherit eutils games distutils-r1 + +DESCRIPTION="WxPython launcher for FS-UAE" +HOMEPAGE="http://fs-uae.net/" +SRC_URI="http://fs-uae.net/fs-uae/devel/${PV}dev/${P}dev.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-python/wxpython + dev-python/pygame + dev-python/pyside" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${P}dev" + + +src_install() { + distutils-r1_src_install + make_desktop_entry ${PN} "FS-UAE Launcher" fs-uae +}