diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2008-11-20 14:54:13 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2008-11-20 14:54:13 +0000 |
commit | 4521884814bca6e262506c3d011177b5be1331cc (patch) | |
tree | 42f29c2f3b24b30c86f66e80548d489890073324 /dev-games/wfmath | |
parent | stable ppc64, bug 247072 (diff) | |
download | gentoo-2-4521884814bca6e262506c3d011177b5be1331cc.tar.gz gentoo-2-4521884814bca6e262506c3d011177b5be1331cc.tar.bz2 gentoo-2-4521884814bca6e262506c3d011177b5be1331cc.zip |
Version bump to 0.3.8
(Portage version: 2.1.4.5)
Diffstat (limited to 'dev-games/wfmath')
-rw-r--r-- | dev-games/wfmath/ChangeLog | 7 | ||||
-rw-r--r-- | dev-games/wfmath/wfmath-0.3.8.ebuild | 32 |
2 files changed, 38 insertions, 1 deletions
diff --git a/dev-games/wfmath/ChangeLog b/dev-games/wfmath/ChangeLog index ccf924005ddf..72bd8bb73bc5 100644 --- a/dev-games/wfmath/ChangeLog +++ b/dev-games/wfmath/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-games/wfmath # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/ChangeLog,v 1.5 2008/08/20 18:56:34 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/ChangeLog,v 1.6 2008/11/20 14:54:13 tupone Exp $ + +*wfmath-0.3.8 (20 Nov 2008) + + 20 Nov 2008; Alfredo Tupone <tupone@gentoo.org> +wfmath-0.3.8.ebuild: + Version bump to 0.3.8 20 Aug 2008; Markus Meier <maekke@gentoo.org> wfmath-0.3.7.ebuild: amd64/x86 stable, bug #235167 diff --git a/dev-games/wfmath/wfmath-0.3.8.ebuild b/dev-games/wfmath/wfmath-0.3.8.ebuild new file mode 100644 index 000000000000..cc6cb12dac56 --- /dev/null +++ b/dev-games/wfmath/wfmath-0.3.8.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/wfmath-0.3.8.ebuild,v 1.1 2008/11/20 14:54:13 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 +} |