blob: 6270e7fa08f6ba10faa4f1cf4111ad2bf444f92f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="Curses-based interpreter and dev tools for TADS 2 and TADS 3 text adventures"
HOMEPAGE="http://www.tads.org/frobtads.htm"
SRC_URI="https://github.com/realnc/${PN}/releases/download/${PV}/${P}.tar.bz2"
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} )
PATCHES=(
"${FILESDIR}"/${PN}-1.2.4-tinfo.patch #602446
)
src_prepare() {
default
# bug #602446
eautoreconf
}
src_configure() {
local myeconfargs=(
$(use_enable debug error-checking)
$(use_enable debug t3debug)
$(use_enable tads2compiler t2-compiler)
$(use_enable tads3compiler t3-compiler)
)
econf "${myeconfargs[@]}"
}
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"
}
|