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 67C6C138DB0 for ; Sat, 15 Oct 2016 11:08:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B726FE0B31; Sat, 15 Oct 2016 11:08:37 +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 9A30AE0B31 for ; Sat, 15 Oct 2016 11:08:37 +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 3A44F341229 for ; Sat, 15 Oct 2016 11:08:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 02B5E2FC for ; Sat, 15 Oct 2016 11:08:35 +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: <1476529695.8e0b4113b8d8532fadfeb203da7ccddf663ea3aa.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-rpg/kqlives/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-rpg/kqlives/kqlives-0.99-r1.ebuild X-VCS-Directories: games-rpg/kqlives/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: 8e0b4113b8d8532fadfeb203da7ccddf663ea3aa X-VCS-Branch: master Date: Sat, 15 Oct 2016 11:08:35 +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: 57819e13-909a-4a8b-a598-4036728c8130 X-Archives-Hash: b657ca325f87031986971c58d089763b commit: 8e0b4113b8d8532fadfeb203da7ccddf663ea3aa Author: Austin English gentoo org> AuthorDate: Sat Oct 15 10:24:36 2016 +0000 Commit: Austin English gentoo org> CommitDate: Sat Oct 15 11:08:15 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e0b4113 games-rpg/kqlives: remove deprecated games eclass Also update to EAPI 6 Gentoo-Bug: https://bugs.gentoo.org/574082 Package-Manager: portage-2.3.0 games-rpg/kqlives/kqlives-0.99-r1.ebuild | 48 ++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/games-rpg/kqlives/kqlives-0.99-r1.ebuild b/games-rpg/kqlives/kqlives-0.99-r1.ebuild new file mode 100644 index 00000000..21db6f6 --- /dev/null +++ b/games-rpg/kqlives/kqlives-0.99-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit eutils + +MY_P=${P/lives} + +DESCRIPTION="A console-style role playing game" +HOMEPAGE="http://kqlives.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="cheats nls" + +RDEPEND=" + dev-lang/lua:0 + >=gnome-base/libglade-2.4 + media-libs/aldumb + media-libs/allegro:0 + >=x11-libs/gtk+-2.8:2 + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} + virtual/pkgconfig + nls? ( sys-devel/gettext )" + +S=${WORKDIR}/${MY_P} + +src_configure() { + econf \ + $(use_enable cheats) \ + $(use_enable nls) +} + +src_install() { + default + + local x + for x in diff draw draw2 dump; do + mv -vf "${D}/etc"/map${x} "${D}/etc"/kq-map${x} + done + + doicon "${FILESDIR}"/${PN}.xpm + make_desktop_entry kq KqLives ${PN} +}