diff options
author | Tristan Heaven <nyhm@gentoo.org> | 2007-07-21 23:28:59 +0000 |
---|---|---|
committer | Tristan Heaven <nyhm@gentoo.org> | 2007-07-21 23:28:59 +0000 |
commit | 5941e4b3bc54918a7e3867b8268bc3e1a737945e (patch) | |
tree | bc7927254a014942cf764d02e5ff100fd0c2bfd9 /dev-games/wfmath | |
parent | doxygen dep is conditional (diff) | |
download | gentoo-2-5941e4b3bc54918a7e3867b8268bc3e1a737945e.tar.gz gentoo-2-5941e4b3bc54918a7e3867b8268bc3e1a737945e.tar.bz2 gentoo-2-5941e4b3bc54918a7e3867b8268bc3e1a737945e.zip |
Version bump
(Portage version: 2.1.3_rc8)
Diffstat (limited to 'dev-games/wfmath')
-rw-r--r-- | dev-games/wfmath/ChangeLog | 7 | ||||
-rw-r--r-- | dev-games/wfmath/files/digest-wfmath-0.3.6 | 3 | ||||
-rw-r--r-- | dev-games/wfmath/wfmath-0.3.6.ebuild | 32 |
3 files changed, 41 insertions, 1 deletions
diff --git a/dev-games/wfmath/ChangeLog b/dev-games/wfmath/ChangeLog index 900d19916851..8c0a8fe586b3 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.2 2007/05/07 22:01:26 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/ChangeLog,v 1.3 2007/07/21 23:28:59 nyhm Exp $ + +*wfmath-0.3.6 (21 Jul 2007) + + 21 Jul 2007; Tristan Heaven <nyhm@gentoo.org> +wfmath-0.3.6.ebuild: + Version bump 07 May 2007; Tupone Alfredo <tupone@gentoo.org> wfmath-0.3.5.ebuild: Added ~amd64 keyword diff --git a/dev-games/wfmath/files/digest-wfmath-0.3.6 b/dev-games/wfmath/files/digest-wfmath-0.3.6 new file mode 100644 index 000000000000..a1c108d26dcc --- /dev/null +++ b/dev-games/wfmath/files/digest-wfmath-0.3.6 @@ -0,0 +1,3 @@ +MD5 df2e747a8808edd199a1c37d8f2545c5 wfmath-0.3.6.tar.bz2 329023 +RMD160 c6d5801416ba91fc83ebb75c7a57331ab3d7d027 wfmath-0.3.6.tar.bz2 329023 +SHA256 67d8f3249f456dab9b418c6ebadbc674c872696695398b8d474065610afea66b wfmath-0.3.6.tar.bz2 329023 diff --git a/dev-games/wfmath/wfmath-0.3.6.ebuild b/dev-games/wfmath/wfmath-0.3.6.ebuild new file mode 100644 index 000000000000..5ca7fe2d4750 --- /dev/null +++ b/dev-games/wfmath/wfmath-0.3.6.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.6.ebuild,v 1.1 2007/07/21 23:28:59 nyhm 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 +} |