From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7A097138010 for ; Tue, 2 Oct 2012 16:30:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C6A7E011E; Tue, 2 Oct 2012 16:30:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 2374EE011E for ; Tue, 2 Oct 2012 16:30:19 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3715933C6EF for ; Tue, 2 Oct 2012 16:30:18 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 665) id F23AA21600; Tue, 2 Oct 2012 16:30:16 +0000 (UTC) From: "Michael Sterrett (mr_bones_)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, mr_bones_@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in games-engines/frobtads: frobtads-1.2.2.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: frobtads-1.2.2.ebuild ChangeLog X-VCS-Directories: games-engines/frobtads X-VCS-Committer: mr_bones_ X-VCS-Committer-Name: Michael Sterrett Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20121002163016.F23AA21600@flycatcher.gentoo.org> Date: Tue, 2 Oct 2012 16:30:16 +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: 675549cc-470b-4a5a-95cf-ede4d9e7da0c X-Archives-Hash: c793e48a6ce598327b819dc0208d2e37 mr_bones_ 12/10/02 16:30:16 Modified: ChangeLog Added: frobtads-1.2.2.ebuild Log: version bump (Portage version: 2.1.11.9/cvs/Linux x86_64) Revision Changes Path 1.8 games-engines/frobtads/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/frobtads/ChangeLog?rev=1.8&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/frobtads/ChangeLog?rev=1.8&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/frobtads/ChangeLog?r1=1.7&r2=1.8 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/games-engines/frobtads/ChangeLog,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ChangeLog 23 Aug 2012 19:48:06 -0000 1.7 +++ ChangeLog 2 Oct 2012 16:30:16 -0000 1.8 @@ -1,6 +1,11 @@ # ChangeLog for games-engines/frobtads # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/frobtads/ChangeLog,v 1.7 2012/08/23 19:48:06 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/frobtads/ChangeLog,v 1.8 2012/10/02 16:30:16 mr_bones_ Exp $ + +*frobtads-1.2.2 (02 Oct 2012) + + 02 Oct 2012; Michael Sterrett +frobtads-1.2.2.ebuild: + version bump *frobtads-1.2.1 (23 Aug 2012) @@ -35,4 +40,3 @@ 05 Sep 2008; Michael Sterrett +metadata.xml, +frobtads-0.12.ebuild: initial commit - ebuild submitted by Nikos Chantziaras via bug #149764 - 1.1 games-engines/frobtads/frobtads-1.2.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/frobtads/frobtads-1.2.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/frobtads/frobtads-1.2.2.ebuild?rev=1.1&content-type=text/plain Index: frobtads-1.2.2.ebuild =================================================================== # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/games-engines/frobtads/frobtads-1.2.2.ebuild,v 1.1 2012/10/02 16:30:16 mr_bones_ Exp $ EAPI=4 inherit autotools eutils flag-o-matic games 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" DEPEND="${RDEPEND}" DOCS=( doc/{AUTHORS,BUGS,ChangeLog.old,NEWS,README,SRC_GUIDELINES,THANKS} ) src_configure() { append-cxxflags -fpermissive egamesconf \ --disable-silent-rules \ $(use_enable debug t3debug) \ $(use_enable debug error-checking) \ $(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 prepgamesdirs }