# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Integer Matrix Library" HOMEPAGE="http://www.cs.uwaterloo.ca/~z4chen/iml.html" SRC_URI="http://www.cs.uwaterloo.ca/~z4chen/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~ppc ~amd64 ~ppc64" RESTRICT="mirror" IUSE="" DEPEND=">=dev-libs/gmp-4.2.1 virtual/cblas virtual/lapack" RDEPEND="${DEPEND}" src_compile() { cd ${S} econf "--enable-shared" || die "configuration failed" emake || die "make failed" } src_install() { emake DESTDIR="${D}" install || die "install failed" dodoc README AUTHORS }