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 E5D041395E2 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 4FBA8E0AEE; 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 38096E0AEE 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 E0E7D341698 for ; Fri, 11 Nov 2016 19:39:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 38DF586E 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.d0b0de80d631027926a8dab52d7f60a2e0f57f88.wizardedit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-engines/frobtads/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-engines/frobtads/frobtads-1.2.3-r1.ebuild X-VCS-Directories: games-engines/frobtads/ X-VCS-Committer: wizardedit X-VCS-Committer-Name: Austin English X-VCS-Revision: d0b0de80d631027926a8dab52d7f60a2e0f57f88 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: 9af51e41-b7cd-4f03-ad7e-98f362dc25a1 X-Archives-Hash: b0e36e0225be029719a2eab84cc494c9 commit: d0b0de80d631027926a8dab52d7f60a2e0f57f88 Author: Austin English gentoo org> AuthorDate: Wed Nov 2 22:02:45 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=d0b0de80 games-engines/frobtads: remove deprecated games eclass Also update to EAPI 6 Gentoo-Bug: https://bugs.gentoo.org/574082 Package-Manager: portage-2.3.2 games-engines/frobtads/frobtads-1.2.3-r1.ebuild | 48 +++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/games-engines/frobtads/frobtads-1.2.3-r1.ebuild b/games-engines/frobtads/frobtads-1.2.3-r1.ebuild new file mode 100644 index 00000000..b0bbc2a --- /dev/null +++ b/games-engines/frobtads/frobtads-1.2.3-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 flag-o-matic + +DESCRIPTION="Curses-based interpreter and development tools for TADS 2 and TADS 3 text adventures" +HOMEPAGE="http://www.tads.org/frobtads.htm" +SRC_URI="http://www.tads.org/frobtads/${P}.tar.gz" + +LICENSE="TADS2 TADS3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug tads2compiler tads3compiler" + +RESTRICT="!tads3compiler? ( test )" + +RDEPEND="net-misc/curl + sys-libs/ncurses:0" +DEPEND=${RDEPEND} + +DOCS=( doc/{AUTHORS,BUGS,ChangeLog.old,NEWS,README,SRC_GUIDELINES,THANKS} ) + +src_configure() { + append-cxxflags -fpermissive + append-libs $(curl-config --libs) + econf \ + $(use_enable debug error-checking) \ + $(use_enable debug t3debug) \ + $(use_enable tads2compiler t2-compiler) \ + $(use_enable tads3compiler t3-compiler) +} + +src_test() { + emake -j1 sample + ./frob -i plain -p samples/sample.t3 <<- END_FROB_TEST + save + testsave.sav + restore + testsave.sav + END_FROB_TEST + [[ $? -eq 0 ]] || die "Failed to run test game" +} + +src_install() { + default +}