summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Tupone <tupone@gentoo.org>2009-06-05 12:49:29 +0000
committerAlfredo Tupone <tupone@gentoo.org>2009-06-05 12:49:29 +0000
commit215cb5ab601d803b45587914c37abd4ba3174f9e (patch)
treed940773d9a91d75be2190358c49eb95873d8c256 /dev-games/wfmath
parentVersion bump. (diff)
downloadgentoo-2-215cb5ab601d803b45587914c37abd4ba3174f9e.tar.gz
gentoo-2-215cb5ab601d803b45587914c37abd4ba3174f9e.tar.bz2
gentoo-2-215cb5ab601d803b45587914c37abd4ba3174f9e.zip
Version bump to 0.3.9
(Portage version: 2.1.6.11/cvs/Linux x86_64)
Diffstat (limited to 'dev-games/wfmath')
-rw-r--r--dev-games/wfmath/ChangeLog7
-rw-r--r--dev-games/wfmath/wfmath-0.3.9.ebuild32
2 files changed, 38 insertions, 1 deletions
diff --git a/dev-games/wfmath/ChangeLog b/dev-games/wfmath/ChangeLog
index aa36683b69f8..1a29a5330a7c 100644
--- a/dev-games/wfmath/ChangeLog
+++ b/dev-games/wfmath/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-games/wfmath
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/ChangeLog,v 1.7 2009/01/11 13:46:19 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/ChangeLog,v 1.8 2009/06/05 12:49:29 tupone Exp $
+
+*wfmath-0.3.9 (05 Jun 2009)
+
+ 05 Jun 2009; Alfredo Tupone <tupone@gentoo.org> +wfmath-0.3.9.ebuild:
+ Version bump to 0.3.9
11 Jan 2009; Markus Meier <maekke@gentoo.org> wfmath-0.3.8.ebuild:
amd64/x86 stable, bug #254107
diff --git a/dev-games/wfmath/wfmath-0.3.9.ebuild b/dev-games/wfmath/wfmath-0.3.9.ebuild
new file mode 100644
index 000000000000..c45e395e06ed
--- /dev/null
+++ b/dev-games/wfmath/wfmath-0.3.9.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2009 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/wfmath-0.3.9.ebuild,v 1.1 2009/06/05 12:49:29 tupone Exp $
+EAPI=2
+
+DESCRIPTION="Worldforge math library"
+HOMEPAGE="http://www.worldforge.org/dev/eng/libraries/wfmath"
+SRC_URI="mirror://sourceforge/worldforge/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+RDEPEND=""
+DEPEND="doc? ( app-doc/doxygen )
+ media-libs/atlas-c++"
+
+src_compile() {
+ emake || die "emake failed"
+ if use doc; then
+ cd doc && emake doc || die "emake doc failed"
+ fi
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die "emake install failed"
+ dodoc AUTHORS ChangeLog NEWS README TODO
+ if use doc; then
+ dohtml doc/html/*
+ fi
+}