summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Tupone <tupone@gentoo.org>2007-12-03 22:33:34 +0000
committerAlfredo Tupone <tupone@gentoo.org>2007-12-03 22:33:34 +0000
commit6de887f590c99028c0bf3d5284ab96f0b2b35cae (patch)
treee4029635de96ffd65e50833a9cddbf15d5cb39ef /dev-games
parentUpdate some components, ebuild cleanup (diff)
downloadgentoo-2-6de887f590c99028c0bf3d5284ab96f0b2b35cae.tar.gz
gentoo-2-6de887f590c99028c0bf3d5284ab96f0b2b35cae.tar.bz2
gentoo-2-6de887f590c99028c0bf3d5284ab96f0b2b35cae.zip
Version bump to 0.3.7
(Portage version: 2.1.3.19)
Diffstat (limited to 'dev-games')
-rw-r--r--dev-games/wfmath/ChangeLog7
-rw-r--r--dev-games/wfmath/files/digest-wfmath-0.3.73
-rw-r--r--dev-games/wfmath/wfmath-0.3.7.ebuild32
3 files changed, 41 insertions, 1 deletions
diff --git a/dev-games/wfmath/ChangeLog b/dev-games/wfmath/ChangeLog
index 8c0a8fe586b3..73c3edd34a2d 100644
--- a/dev-games/wfmath/ChangeLog
+++ b/dev-games/wfmath/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-games/wfmath
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/ChangeLog,v 1.3 2007/07/21 23:28:59 nyhm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/ChangeLog,v 1.4 2007/12/03 22:33:34 tupone Exp $
+
+*wfmath-0.3.7 (03 Dec 2007)
+
+ 03 Dec 2007; Tupone Alfredo <tupone@gentoo.org> +wfmath-0.3.7.ebuild:
+ Version bump
*wfmath-0.3.6 (21 Jul 2007)
diff --git a/dev-games/wfmath/files/digest-wfmath-0.3.7 b/dev-games/wfmath/files/digest-wfmath-0.3.7
new file mode 100644
index 000000000000..07f70ed1496d
--- /dev/null
+++ b/dev-games/wfmath/files/digest-wfmath-0.3.7
@@ -0,0 +1,3 @@
+MD5 5aacc166ba647b7c58ae41afceb3b083 wfmath-0.3.7.tar.bz2 329426
+RMD160 1f1474bb93a83b7756f5ff4702727ad8b61b20c4 wfmath-0.3.7.tar.bz2 329426
+SHA256 4cc1c33e477149541b80c1d34dd6b6d05b4cd9b71113411e030ff48c3efc567f wfmath-0.3.7.tar.bz2 329426
diff --git a/dev-games/wfmath/wfmath-0.3.7.ebuild b/dev-games/wfmath/wfmath-0.3.7.ebuild
new file mode 100644
index 000000000000..272a9026c01e
--- /dev/null
+++ b/dev-games/wfmath/wfmath-0.3.7.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/wfmath-0.3.7.ebuild,v 1.1 2007/12/03 22:33:34 tupone Exp $
+
+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() {
+ econf || die
+ 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
+}