Gentoo Archives: gentoo-commits

From: "Alfredo Tupone (tupone)" <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-games/wfmath: ChangeLog wfmath-0.3.9.ebuild
Date: Fri, 05 Jun 2009 12:49:31
Message-Id: E1MCYrR-0000Vp-35@stork.gentoo.org
1 tupone 09/06/05 12:49:29
2
3 Modified: ChangeLog
4 Added: wfmath-0.3.9.ebuild
5 Log:
6 Version bump to 0.3.9
7 (Portage version: 2.1.6.11/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.8 dev-games/wfmath/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/wfmath/ChangeLog?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/wfmath/ChangeLog?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/wfmath/ChangeLog?r1=1.7&r2=1.8
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-games/wfmath/ChangeLog,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- ChangeLog 11 Jan 2009 13:46:19 -0000 1.7
23 +++ ChangeLog 5 Jun 2009 12:49:29 -0000 1.8
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-games/wfmath
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/ChangeLog,v 1.7 2009/01/11 13:46:19 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/ChangeLog,v 1.8 2009/06/05 12:49:29 tupone Exp $
29 +
30 +*wfmath-0.3.9 (05 Jun 2009)
31 +
32 + 05 Jun 2009; Alfredo Tupone <tupone@g.o> +wfmath-0.3.9.ebuild:
33 + Version bump to 0.3.9
34
35 11 Jan 2009; Markus Meier <maekke@g.o> wfmath-0.3.8.ebuild:
36 amd64/x86 stable, bug #254107
37
38
39
40 1.1 dev-games/wfmath/wfmath-0.3.9.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/wfmath/wfmath-0.3.9.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-games/wfmath/wfmath-0.3.9.ebuild?rev=1.1&content-type=text/plain
44
45 Index: wfmath-0.3.9.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/wfmath-0.3.9.ebuild,v 1.1 2009/06/05 12:49:29 tupone Exp $
50 EAPI=2
51
52 DESCRIPTION="Worldforge math library"
53 HOMEPAGE="http://www.worldforge.org/dev/eng/libraries/wfmath"
54 SRC_URI="mirror://sourceforge/worldforge/${P}.tar.bz2"
55
56 LICENSE="GPL-2"
57 SLOT="0"
58 KEYWORDS="~amd64 ~x86"
59 IUSE="doc"
60
61 RDEPEND=""
62 DEPEND="doc? ( app-doc/doxygen )
63 media-libs/atlas-c++"
64
65 src_compile() {
66 emake || die "emake failed"
67 if use doc; then
68 cd doc && emake doc || die "emake doc failed"
69 fi
70 }
71
72 src_install() {
73 emake DESTDIR="${D}" install || die "emake install failed"
74 dodoc AUTHORS ChangeLog NEWS README TODO
75 if use doc; then
76 dohtml doc/html/*
77 fi
78 }