diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2010-03-07 15:21:59 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2010-03-07 15:21:59 +0000 |
commit | c0c2f1913e5e33ac1fbd63523e3dc75b9b7b334f (patch) | |
tree | e7d5ff8661fc98365600175d36c8026f35888531 | |
parent | amd64 stable, bug #307001 (diff) | |
download | gentoo-2-c0c2f1913e5e33ac1fbd63523e3dc75b9b7b334f.tar.gz gentoo-2-c0c2f1913e5e33ac1fbd63523e3dc75b9b7b334f.tar.bz2 gentoo-2-c0c2f1913e5e33ac1fbd63523e3dc75b9b7b334f.zip |
version bump (bug #308167)
(Portage version: 2.1.7.17/cvs/Linux i686)
-rw-r--r-- | dev-games/wfmath/ChangeLog | 8 | ||||
-rw-r--r-- | dev-games/wfmath/wfmath-0.3.10.ebuild | 32 |
2 files changed, 39 insertions, 1 deletions
diff --git a/dev-games/wfmath/ChangeLog b/dev-games/wfmath/ChangeLog index 5a1d216309a6..bf6d83676bf3 100644 --- a/dev-games/wfmath/ChangeLog +++ b/dev-games/wfmath/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-games/wfmath # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/ChangeLog,v 1.11 2010/01/02 15:58:04 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/ChangeLog,v 1.12 2010/03/07 15:21:59 mr_bones_ Exp $ + +*wfmath-0.3.10 (07 Mar 2010) + + 07 Mar 2010; Michael Sterrett <mr_bones_@gentoo.org> + +wfmath-0.3.10.ebuild: + version bump (bug #308167) 02 Jan 2010; Markus Meier <maekke@gentoo.org> wfmath-0.3.9.ebuild: amd64 stable, bug #297122 diff --git a/dev-games/wfmath/wfmath-0.3.10.ebuild b/dev-games/wfmath/wfmath-0.3.10.ebuild new file mode 100644 index 000000000000..4072b7dfbedc --- /dev/null +++ b/dev-games/wfmath/wfmath-0.3.10.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-games/wfmath/wfmath-0.3.10.ebuild,v 1.1 2010/03/07 15:21:59 mr_bones_ 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 + emake -C doc docs || 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 +} |