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