From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 32E1D1395E2 for ; Fri, 11 Nov 2016 19:39:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4ACC6E09B9; Fri, 11 Nov 2016 19:39:10 +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 2D94EE09B9 for ; Fri, 11 Nov 2016 19:39:10 +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 0C87434169D for ; Fri, 11 Nov 2016 19:39:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6DD8D24BA for ; Fri, 11 Nov 2016 19:39:07 +0000 (UTC) From: "Austin English" 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" Message-ID: <1478893137.bea9a3f52477a99df8b4aaf5cf94c2606fecd11a.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-engines/nazghul/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-engines/nazghul/nazghul-0.7.1-r1.ebuild X-VCS-Directories: games-engines/nazghul/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: bea9a3f52477a99df8b4aaf5cf94c2606fecd11a X-VCS-Branch: master Date: Fri, 11 Nov 2016 19:39:07 +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: 081633b0-be30-4a91-8c4a-b9a6ed64cdf3 X-Archives-Hash: 3ee3fdbd26dfbca20191ad68d57a930d commit: bea9a3f52477a99df8b4aaf5cf94c2606fecd11a Author: Austin English gentoo org> AuthorDate: Thu Nov 10 23:25:26 2016 +0000 Commit: Austin English gentoo org> CommitDate: Fri Nov 11 19:38:57 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bea9a3f5 games-engines/nazghul: remove deprecated games eclass Also update to EAPI 6 Gentoo-Bug: https://bugs.gentoo.org/574082 Package-Manager: portage-2.3.2 games-engines/nazghul/nazghul-0.7.1-r1.ebuild | 44 +++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/games-engines/nazghul/nazghul-0.7.1-r1.ebuild b/games-engines/nazghul/nazghul-0.7.1-r1.ebuild new file mode 100644 index 00000000..3f50e12 --- /dev/null +++ b/games-engines/nazghul/nazghul-0.7.1-r1.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit eutils + +DESCRIPTION="A computer role-playing game (CRPG) engine with game called HaximA" +HOMEPAGE="http://myweb.cableone.net/gmcnutt/nazghul.html" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="media-libs/libpng:0 + >=media-libs/libsdl-1.2.3[X,sound,video] + media-libs/sdl-image[png] + media-libs/sdl-mixer[midi,vorbis,wav]" +RDEPEND="${DEPEND}" + +src_prepare() { + ecvs_clean + + default +} + +src_install() { + default + dodoc doc/{GAME_RULES,GHULSCRIPT,MAP_HACKERS_GUIDE,USERS_GUIDE} + + dodoc doc/*html + dodoc doc/*gif + + docinto engine_extension_and_design + dodoc doc/engine_extension_and_design/* + + docinto world_building + dodoc doc/world_building/* + + doicon icons/haxima.png + make_desktop_entry haxima.sh HaximA haxima +}