Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-engines/frobtads: ChangeLog frobtads-1.2.1.ebuild
Date: Thu, 23 Aug 2012 19:48:55
Message-Id: 20120823194806.3B06C204B8@flycatcher.gentoo.org
1 hasufell 12/08/23 19:48:06
2
3 Modified: ChangeLog
4 Added: frobtads-1.2.1.ebuild
5 Log:
6 version bump wrt #396449
7
8 (Portage version: 2.2.0_alpha122/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.7 games-engines/frobtads/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/frobtads/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/frobtads/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/frobtads/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-engines/frobtads/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 4 Sep 2011 17:46:48 -0000 1.6
24 +++ ChangeLog 23 Aug 2012 19:48:06 -0000 1.7
25 @@ -1,6 +1,12 @@
26 # ChangeLog for games-engines/frobtads
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-engines/frobtads/ChangeLog,v 1.6 2011/09/04 17:46:48 phajdan.jr Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/games-engines/frobtads/ChangeLog,v 1.7 2012/08/23 19:48:06 hasufell Exp $
31 +
32 +*frobtads-1.2.1 (23 Aug 2012)
33 +
34 + 23 Aug 2012; Julian Ospald <hasufell@g.o> +frobtads-1.2.1.ebuild,
35 + +files/frobtads-1.2.1-underlinking.patch:
36 + version bump wrt #396449
37
38 04 Sep 2011; Pawel Hajdan jr <phajdan.jr@g.o> frobtads-1.0.ebuild:
39 x86 stable wrt bug #381499
40
41
42
43 1.1 games-engines/frobtads/frobtads-1.2.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/frobtads/frobtads-1.2.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-engines/frobtads/frobtads-1.2.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: frobtads-1.2.1.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/games-engines/frobtads/frobtads-1.2.1.ebuild,v 1.1 2012/08/23 19:48:06 hasufell Exp $
53
54 EAPI=4
55 inherit autotools eutils flag-o-matic games
56
57 DESCRIPTION="Curses-based interpreter and development tools for TADS 2 and TADS 3 text adventures"
58 HOMEPAGE="http://www.tads.org/frobtads.htm"
59 SRC_URI="http://www.tads.org/frobtads/${P}.tar.gz"
60
61 LICENSE="TADS2 TADS3"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="debug tads2compiler tads3compiler"
65
66 RESTRICT="!tads3compiler? ( test )"
67
68 RDEPEND="net-misc/curl
69 sys-libs/ncurses"
70 DEPEND="${RDEPEND}"
71
72 DOCS=( doc/{AUTHORS,BUGS,ChangeLog.old,NEWS,README,SRC_GUIDELINES,THANKS} )
73
74 src_prepare() {
75 epatch "${FILESDIR}"/${P}-underlinking.patch
76 eautoreconf
77 }
78
79 src_configure() {
80 append-cxxflags -fno-strict-aliasing -fpermissive
81 append-cflags -fno-strict-aliasing
82 egamesconf \
83 --disable-silent-rules \
84 $(use_enable debug t3debug) \
85 $(use_enable debug error-checking) \
86 $(use_enable tads2compiler t2-compiler) \
87 $(use_enable tads3compiler t3-compiler)
88 }
89
90 src_test() {
91 # FIXME: make check broken
92 # if use debug; then
93 # emake -j1 check
94 # fi
95
96 emake -j1 sample
97 ./frob -i plain -p samples/sample.t3 <<- END_FROB_TEST
98 save
99 testsave.sav
100 restore
101 testsave.sav
102 END_FROB_TEST
103 [[ $? -eq 0 ]] || die "Failed to run test game"
104 }
105
106 src_install() {
107 default
108 prepgamesdirs
109 }