Gentoo Archives: gentoo-commits

From: Michael Sterrett <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-games/wfmath/
Date: Fri, 29 Jan 2016 20:06:15
Message-Id: 1454097942.26709eaa681749df1a390b233e8e719bc6373e47.mr_bones_@gentoo
1 commit: 26709eaa681749df1a390b233e8e719bc6373e47
2 Author: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 29 20:05:21 2016 +0000
4 Commit: Michael Sterrett <mr_bones_ <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 29 20:05:42 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26709eaa
7
8 dev-games/wfmath: version bump
9
10 Package-Manager: portage-2.2.26
11
12 dev-games/wfmath/Manifest | 1 +
13 dev-games/wfmath/wfmath-1.0.2.ebuild | 34 ++++++++++++++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/dev-games/wfmath/Manifest b/dev-games/wfmath/Manifest
17 index f864c99..e472e8a 100644
18 --- a/dev-games/wfmath/Manifest
19 +++ b/dev-games/wfmath/Manifest
20 @@ -1 +1,2 @@
21 DIST wfmath-1.0.1.tar.bz2 389227 SHA256 1503f0efaf9b27bf96547888062492c2412aebc32a0e407d58d50b84e3e2a506 SHA512 4017a572f946182c7aed4ffb8dfe139f85f5bb946a42bd593579030ee9f5617a07859f62b1169322d613919b37a0ff39079aa989f960d22b6cedfb9c3e7701bc WHIRLPOOL 3c3c78bed0d8d5c70cf4343b54e292bf92856b6629924f75c6c3fc769ae60d816f793c9cbe1fb3161491a90b06d52b1da58557c9ac99a9394fa61baef1946dcc
22 +DIST wfmath-1.0.2.tar.bz2 399987 SHA256 7072d640597bf102c6641e9237aaec6582849ef6c1cdc3062e369f070e20d883 SHA512 3506dbaed5db914b0be5483d5b589d95ed495b6375384e4b045844f8d76240f97b5c322ac432faf177f16da0fedd0b0e6006877a9b40e7f5d31d3324efa6de57 WHIRLPOOL fe10805d66707d9b99faa31aa6f048a8ec12c20b47d96ce2f72da253a5e152e069775d65c56da059ca74689eb44d5848dbbf4dd2d1a3f6001bd2b76ac9e8f378
23
24 diff --git a/dev-games/wfmath/wfmath-1.0.2.ebuild b/dev-games/wfmath/wfmath-1.0.2.ebuild
25 new file mode 100644
26 index 0000000..53fe04e
27 --- /dev/null
28 +++ b/dev-games/wfmath/wfmath-1.0.2.ebuild
29 @@ -0,0 +1,34 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +inherit eutils
36 +
37 +DESCRIPTION="Worldforge math library"
38 +HOMEPAGE="http://www.worldforge.org/dev/eng/libraries/wfmath"
39 +SRC_URI="mirror://sourceforge/worldforge/${P}.tar.bz2"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE="doc static-libs"
45 +
46 +RDEPEND=""
47 +DEPEND="doc? ( app-doc/doxygen )
48 + virtual/pkgconfig"
49 +
50 +src_configure() {
51 + econf $(use_enable static-libs static)
52 +}
53 +
54 +src_compile() {
55 + default
56 + use doc && emake -C doc docs
57 +}
58 +
59 +src_install() {
60 + default
61 + use doc && dohtml doc/html/*
62 + prune_libtool_files
63 +}