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 9E0B113832E for ; Fri, 5 Aug 2016 19:43:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DAF0121C0A2; Fri, 5 Aug 2016 19:43:34 +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 152FB21C0A2 for ; Fri, 5 Aug 2016 19:43:33 +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 2EB81340BF6 for ; Fri, 5 Aug 2016 19:43:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A8472452 for ; Fri, 5 Aug 2016 19:43:28 +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: <1470426197.d9816d84236c26c3a86a8f34d542edb35061e87d.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-mud/trebuchet/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-mud/trebuchet/trebuchet-1.075-r1.ebuild X-VCS-Directories: games-mud/trebuchet/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: d9816d84236c26c3a86a8f34d542edb35061e87d X-VCS-Branch: master Date: Fri, 5 Aug 2016 19:43:28 +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: 7e3d1d22-8160-4bb9-af4f-ef1091968ffd X-Archives-Hash: e93ffcc67dad15e99ca6bdfa4f68d743 commit: d9816d84236c26c3a86a8f34d542edb35061e87d Author: Austin English gentoo org> AuthorDate: Fri Aug 5 19:42:18 2016 +0000 Commit: Austin English gentoo org> CommitDate: Fri Aug 5 19:43:17 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9816d84 games-mud/trebuchet: remove deprecated games eclass Also update to EAPI 6 Gentoo-Bug: https://bugs.gentoo.org/574082 Package-Manager: portage-2.3.0 games-mud/trebuchet/trebuchet-1.075-r1.ebuild | 38 +++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/games-mud/trebuchet/trebuchet-1.075-r1.ebuild b/games-mud/trebuchet/trebuchet-1.075-r1.ebuild new file mode 100644 index 0000000..b8c40d8 --- /dev/null +++ b/games-mud/trebuchet/trebuchet-1.075-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="A crossplatform TCL/TK based MUD client" +HOMEPAGE="http://belfry.com/fuzzball/trebuchet/" +SRC_URI="mirror://sourceforge/trebuchet/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" +RESTRICT="test" + +RDEPEND=" + dev-lang/tcl:0= + >=dev-lang/tk-8.3.3:0= +" + +src_prepare() { + default + + sed -i \ + -e "/Nothing/d" \ + -e "/LN/ s:../libexec:/usr/share:" \ + Makefile || die +} + +src_install() { + emake prefix="${D}/usr" \ + ROOT="${D}/usr/share/${PN}" install + + insinto /usr/share/${PN} + doins COPYING + dodoc changes.txt readme.txt trebtodo.txt +}