You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-engines/frobtads/frobtads-1.2.2.ebuild

50 lines
1.2 KiB

# 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.3 2012/11/14 19:07:28 ago Exp $
EAPI=4
inherit 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
}