# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit flag-o-matic games DESCRIPTION="A curses interpreter for TADS v2 and v3 interactive fiction" HOMEPAGE="http://www.tads.org/frobtads.htm" SRC_URI="http://www.tads.org/frobtads/${P}.tar.gz" LICENSE="TADS3" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND="sys-libs/ncurses" src_compile() { append-flags -fno-strict-aliasing # per documentation econf --bindir=${GAMES_BINDIR} \ --datadir=${GAMES_DATADIR} \ --disable-dependency-tracking || die "econf failed" emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "install failed" dodoc doc/{AUTHORS,BUGS,ChangeLog,NEWS,README,THANKS} prepgamesdirs }