diff options
Diffstat (limited to 'sci-libs/cxsparse/cxsparse-2.2.2.ebuild')
-rw-r--r-- | sci-libs/cxsparse/cxsparse-2.2.2.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/sci-libs/cxsparse/cxsparse-2.2.2.ebuild b/sci-libs/cxsparse/cxsparse-2.2.2.ebuild new file mode 100644 index 000000000000..45a0246bc3cd --- /dev/null +++ b/sci-libs/cxsparse/cxsparse-2.2.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/cxsparse/cxsparse-2.2.2.ebuild,v 1.1 2009/03/09 14:39:47 bicatali Exp $ + +EAPI=2 +inherit autotools eutils + +MY_PN=CXSparse +DESCRIPTION="Extended sparse matrix package." +HOMEPAGE="http://www.cise.ufl.edu/research/sparse/CXSparse/" +SRC_URI="http://www.cise.ufl.edu/research/sparse/${MY_PN}/versions/${MY_PN}-${PV}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="" +DEPEND="sci-libs/ufconfig" + +S="${WORKDIR}/${MY_PN}" + +src_prepare() { + epatch "${FILESDIR}"/${P}-autotools.patch + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc README.txt Doc/ChangeLog || die "dodoc failed" +} |