diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2012-10-02 16:30:16 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2012-10-02 16:30:16 +0000 |
commit | 8afe8d4490b8713f46481e0261c1fb03bf333527 (patch) | |
tree | c3ae0d7ef558339f50edb0204b1bfc7f1aaeb29e /games-engines | |
parent | Parallel installation hangs, adding -j1 to emake install. (diff) | |
download | gentoo-2-8afe8d4490b8713f46481e0261c1fb03bf333527.tar.gz gentoo-2-8afe8d4490b8713f46481e0261c1fb03bf333527.tar.bz2 gentoo-2-8afe8d4490b8713f46481e0261c1fb03bf333527.zip |
version bump
(Portage version: 2.1.11.9/cvs/Linux x86_64)
Diffstat (limited to 'games-engines')
-rw-r--r-- | games-engines/frobtads/ChangeLog | 8 | ||||
-rw-r--r-- | games-engines/frobtads/frobtads-1.2.2.ebuild | 49 |
2 files changed, 55 insertions, 2 deletions
diff --git a/games-engines/frobtads/ChangeLog b/games-engines/frobtads/ChangeLog index 26ebb303ac08..1a34fc32852b 100644 --- a/games-engines/frobtads/ChangeLog +++ b/games-engines/frobtads/ChangeLog @@ -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 <mr_bones_@gentoo.org> +frobtads-1.2.2.ebuild: + version bump *frobtads-1.2.1 (23 Aug 2012) @@ -35,4 +40,3 @@ 05 Sep 2008; Michael Sterrett <mr_bones_@gentoo.org> +metadata.xml, +frobtads-0.12.ebuild: initial commit - ebuild submitted by Nikos Chantziaras via bug #149764 - diff --git a/games-engines/frobtads/frobtads-1.2.2.ebuild b/games-engines/frobtads/frobtads-1.2.2.ebuild new file mode 100644 index 000000000000..1d6a50f16508 --- /dev/null +++ b/games-engines/frobtads/frobtads-1.2.2.ebuild @@ -0,0 +1,49 @@ +# 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 +} |