Portage is a package management system used by Gentoo Linux
# 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.4 2007/12/03 22:33:34 tupone Exp $
*wfmath-0.3.7 (03 Dec 2007)
03 Dec 2007; Tupone Alfredo
Version bump
*wfmath-0.3.6 (21 Jul 2007)
21 Jul 2007; Tristan Heaven
Version bump
07 May 2007; Tupone Alfredo
Added ~amd64 keyword
*wfmath-0.3.5 (01 Feb 2007)
01 Feb 2007;
Initial ebuild, version 0.3.6 Bug #58213 by Boris Smus
DIST wfmath-0.3.7.tar.bz2 329426 RMD160 1f1474bb93a83b7756f5ff4702727ad8b61b20c4 SHA1 89bac663f34288f4952d09a03111a3e03da6780c SHA256 4cc1c33e477149541b80c1d34dd6b6d05b4cd9b71113411e030ff48c3efc567f
EBUILD wfmath-0.3.7.ebuild 797 RMD160 84557deb66789d8205843c1c621522afde20a889 SHA1 cb682bfee046ec39dd2529c9d9086e22463ca594 SHA256 43419c05b8997c7626950b03050fcee13a78c99e0014dd339bb0b041b38840df
MISC ChangeLog 691 RMD160 84badf580754a325ced30ddbb865be64f960900d SHA1 01314066c58585ae018a20fd77750c0beea43769 SHA256 439321b813c59f3ee564cd291d31ef973c799fe265ad45624c71e9a6336221d6
MISC metadata.xml 658 RMD160 8609fd3d4f9198c283fbc9909b0429b3a48a24f4 SHA1 23325061c9d35ee1bf99a64c6017d88a6745fe8e SHA256 9d39c987c2c288a78ead2f054bdd5071287a58a10b2b566e7dc59c4844dc1966
The primary focus of WFMath is geometric objects. Thus, it includes several
shapes (boxes, balls, lines), in addition to the basic math objects that are
used to build these shapes (points, vectors, matricies).
Most of the library classes can be divided into two sorts. The first kind are
basic mathematical objects, whose members are all fundamental types. The second
kind are shapes, which implement the shape class interface described in
doc/shape.h.
# 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
}