Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-engines/qtads: qtads-1.9.ebuild ChangeLog
Date: Tue, 30 Jun 2009 05:37:57
Message-Id: E1MLW2V-0004UX-Ec@stork.gentoo.org
1 mr_bones_ 09/06/30 05:37:55
2
3 Modified: ChangeLog
4 Added: qtads-1.9.ebuild
5 Log:
6 version bump (bug #217341)
7 (Portage version: 2.1.6.13/cvs/Linux i686)
8
9 Revision Changes Path
10 1.7 games-engines/qtads/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/qtads/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/qtads/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/qtads/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-engines/qtads/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 27 Jul 2008 21:22:22 -0000 1.6
23 +++ ChangeLog 30 Jun 2009 05:37:55 -0000 1.7
24 @@ -1,6 +1,11 @@
25 # ChangeLog for games-engines/qtads
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-engines/qtads/ChangeLog,v 1.6 2008/07/27 21:22:22 carlo Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-engines/qtads/ChangeLog,v 1.7 2009/06/30 05:37:55 mr_bones_ Exp $
30 +
31 +*qtads-1.9 (30 Jun 2009)
32 +
33 + 30 Jun 2009; Michael Sterrett <mr_bones_@g.o> +qtads-1.9.ebuild:
34 + version bump (bug #217341)
35
36 27 Jul 2008; Carsten Lohrke <carlo@g.o> qtads-1.6c.ebuild:
37 QA: Get rid of deprecated qt_min_version().
38
39
40
41 1.1 games-engines/qtads/qtads-1.9.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/qtads/qtads-1.9.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-engines/qtads/qtads-1.9.ebuild?rev=1.1&content-type=text/plain
45
46 Index: qtads-1.9.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-engines/qtads/qtads-1.9.ebuild,v 1.1 2009/06/30 05:37:55 mr_bones_ Exp $
51
52 EAPI=2
53 inherit flag-o-matic qt3 games
54
55 DESCRIPTION="Qt3-based GUI interpreter for TADS 2 and TADS 3 text adventures"
56 HOMEPAGE="http://qtads.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/qtads/${P}.tar.bz2"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~x86"
62 IUSE=""
63
64 DEPEND="x11-libs/qt:3"
65
66 src_prepare() {
67 gunzip qtads.6.gz || die "gunzip qtads.6.gz failed"
68 }
69
70 src_configure() {
71 # Work-around for a bug when compiling with some versions of g++;
72 # strict-aliasing will break the Tads 3 VM.
73 append-cxxflags -fno-strict-aliasing
74 eqmake3 qtads.pro \
75 BIN_INSTALL="${GAMES_BINDIR}" DATA_INSTALL="${GAMES_DATADIR}"
76 }
77
78 src_install() {
79 emake INSTALL_ROOT="${D}" install_{target,charmaps,i18n} \
80 || die "emake install failed"
81 # install documentation manually to comply with Gentoo guidelines.
82 dodoc \
83 AUTHORS BUGS CREDITS INSTALL NEWS PORTABILITY README \
84 SOURCE_README TIPS TODO
85 doman qtads.6
86 make_desktop_entry qtads QTads
87 prepgamesdirs
88 }