From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-908414-garchives=archives.gentoo.org@lists.gentoo.org>
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 59E61139404
	for <garchives@archives.gentoo.org>; Thu, 27 Oct 2016 18:55:19 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 052C3E0B03;
	Thu, 27 Oct 2016 18:55:17 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id DAEEEE0B02
	for <gentoo-commits@lists.gentoo.org>; Thu, 27 Oct 2016 18:55:16 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id C7242341643
	for <gentoo-commits@lists.gentoo.org>; Thu, 27 Oct 2016 18:55:14 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 3042E244E
	for <gentoo-commits@lists.gentoo.org>; Thu, 27 Oct 2016 18:55:13 +0000 (UTC)
From: "Austin English" <wizardedit@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Austin English" <wizardedit@gentoo.org>
Message-ID: <1477594501.a9ad9aca0eadec6dc64e418d7e2c446854a3dd10.wizardedit@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: games-rpg/wastesedge/
X-VCS-Repository: repo/gentoo
X-VCS-Files: games-rpg/wastesedge/wastesedge-0.3.5-r1.ebuild
X-VCS-Directories: games-rpg/wastesedge/
X-VCS-Committer: wizardedit
X-VCS-Committer-Name: Austin English
X-VCS-Revision: a9ad9aca0eadec6dc64e418d7e2c446854a3dd10
X-VCS-Branch: master
Date: Thu, 27 Oct 2016 18:55:13 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 0a143d44-6103-4a8f-8872-bfcb5a0024d8
X-Archives-Hash: 31dc709092a181b15b66a6bb363bb600

commit:     a9ad9aca0eadec6dc64e418d7e2c446854a3dd10
Author:     Austin English <wizardedit <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 27 18:47:19 2016 +0000
Commit:     Austin English <wizardedit <AT> gentoo <DOT> org>
CommitDate: Thu Oct 27 18:55:01 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9ad9aca

games-rpg/wastesedge: remove deprecated games eclass

Also update to EAPI 6

Gentoo-Bug: https://bugs.gentoo.org/574082

Package-Manager: portage-2.3.2

 games-rpg/wastesedge/wastesedge-0.3.5-r1.ebuild | 39 +++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/games-rpg/wastesedge/wastesedge-0.3.5-r1.ebuild b/games-rpg/wastesedge/wastesedge-0.3.5-r1.ebuild
new file mode 100644
index 00000000..bf6b95b
--- /dev/null
+++ b/games-rpg/wastesedge/wastesedge-0.3.5-r1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+inherit eutils python-single-r1
+
+DESCRIPTION="role playing game to showcase the adonthell engine"
+HOMEPAGE="http://adonthell.linuxgames.com/"
+SRC_URI="https://savannah.nongnu.org/download/adonthell/${PN}-src-${PV}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="nls"
+RESTRICT="userpriv"
+
+RDEPEND="${PYTHON_DEPS}
+	>=games-rpg/adonthell-0.3.5-r2[${PYTHON_USEDEP}]
+	nls? ( virtual/libintl )"
+DEPEND="${RDEPEND}
+	nls? ( sys-devel/gettext )"
+
+pkg_setup() {
+	python-single-r1_pkg_setup
+}
+
+src_configure(){
+	econf \
+		$(use_enable nls) \
+		--with-adonthell-binary="/usr/bin/adonthell"
+}
+
+src_install(){
+	emake DESTDIR="${D}" pixmapdir=/usr/share/pixmaps install
+	dodoc AUTHORS ChangeLog NEWS PLAYING README
+	make_desktop_entry adonthell-wastesedge "Waste's Edge" wastesedge_32x32
+}