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: wfmath-0.3.11.ebuild ChangeLog
Date: Mon, 26 Sep 2011 08:11:31
Message-Id: 20110926081119.114CE20036@flycatcher.gentoo.org
1 tupone 11/09/26 08:11:19
2
3 Modified: ChangeLog
4 Added: wfmath-0.3.11.ebuild
5 Log:
6 Version bump to 0.3.11 Bug #383413
7
8 (Portage version: 2.1.10.19/cvs/Linux i686)
9
10 Revision Changes Path
11 1.17 dev-games/wfmath/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/wfmath/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/wfmath/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/wfmath/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-games/wfmath/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 16 Jan 2011 04:11:53 -0000 1.16
24 +++ ChangeLog 26 Sep 2011 08:11:18 -0000 1.17
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-games/wfmath
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/ChangeLog,v 1.16 2011/01/16 04:11:53 mr_bones_ Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/ChangeLog,v 1.17 2011/09/26 08:11:18 tupone Exp $
30 +
31 +*wfmath-0.3.11 (26 Sep 2011)
32 +
33 + 26 Sep 2011; Tupone Alfredo <tupone@g.o> +wfmath-0.3.11.ebuild:
34 + Version bump to 0.3.11 Bug #383413 by Mr. Anderson
35
36 16 Jan 2011; Michael Sterrett <mr_bones_@g.o> wfmath-0.3.10.ebuild:
37 add static-libs support
38
39
40
41 1.1 dev-games/wfmath/wfmath-0.3.11.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/wfmath/wfmath-0.3.11.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/wfmath/wfmath-0.3.11.ebuild?rev=1.1&content-type=text/plain
45
46 Index: wfmath-0.3.11.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/wfmath-0.3.11.ebuild,v 1.1 2011/09/26 08:11:18 tupone Exp $
51
52 EAPI=2
53 DESCRIPTION="Worldforge math library"
54 HOMEPAGE="http://www.worldforge.org/dev/eng/libraries/wfmath"
55 SRC_URI="mirror://sourceforge/worldforge/${P}.tar.bz2"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~amd64 ~x86"
60 IUSE="doc static-libs"
61
62 RDEPEND=""
63 DEPEND="doc? ( app-doc/doxygen )"
64
65 src_configure() {
66 econf \
67 --disable-dependency-tracking \
68 $(use_enable static-libs static)
69 }
70
71 src_compile() {
72 emake || die "emake failed"
73 if use doc; then
74 emake -C doc docs || die "emake doc failed"
75 fi
76 }
77
78 src_install() {
79 emake DESTDIR="${D}" install || die "emake install failed"
80 dodoc AUTHORS ChangeLog NEWS README TODO
81 if use doc; then
82 dohtml doc/html/*
83 fi
84 if ! use static-libs ; then
85 find "${D}" -type f -name '*.la' -exec rm {} + \
86 || die "la removal failed"
87 fi
88 }