# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/scipy-0.7.1.ebuild,v 1.3 2009/09/04 21:31:22 arfrever Exp $ EAPI="2" inherit eutils distutils flag-o-matic toolchain-funcs SRC_URI="http://downloads.forked.de/${PN}/${P}.tar.bz2" DESCRIPTION="Graph analysis and manipulation for Python" HOMEPAGE="http://graph-tool.forked.de/" LICENSE="GPL-3" SLOT="0" IUSE="openmp" KEYWORDS="~amd64 ~x86" DEPEND=">=sys-devel/gcc-4.4 >=dev-lang/python-2.5 dev-libs/boost sci-libs/scipy sci-mathematics/cgal" RDEPEND="${CDEPEND} media-gfx/graphviz[python] dev-python/matplotlib" DOCS="README NEWS COPYING Changelog" # most people won't have enough ram for parallel build MAKEOPTS="-j1" src_compile() { econf $(use_enable openmp) emake || die "emake failed" }