diff options
author | Ryan Hill <rhill@gentoo.org> | 2010-05-06 04:55:36 +0000 |
---|---|---|
committer | Ryan Hill <rhill@gentoo.org> | 2010-05-06 04:55:36 +0000 |
commit | d5da60a34f8ef12950dc7be1f538d45702721e0d (patch) | |
tree | e15d4c80c42802f711293ac967186e57f9bee7b7 /dev-libs/cloog-ppl/cloog-ppl-0.15.9.ebuild | |
parent | Version bump (diff) | |
download | historical-d5da60a34f8ef12950dc7be1f538d45702721e0d.tar.gz historical-d5da60a34f8ef12950dc7be1f538d45702721e0d.tar.bz2 historical-d5da60a34f8ef12950dc7be1f538d45702721e0d.zip |
Version bump, bug #318645.
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'dev-libs/cloog-ppl/cloog-ppl-0.15.9.ebuild')
-rw-r--r-- | dev-libs/cloog-ppl/cloog-ppl-0.15.9.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/dev-libs/cloog-ppl/cloog-ppl-0.15.9.ebuild b/dev-libs/cloog-ppl/cloog-ppl-0.15.9.ebuild new file mode 100644 index 000000000000..9f37dc5587c4 --- /dev/null +++ b/dev-libs/cloog-ppl/cloog-ppl-0.15.9.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/cloog-ppl/cloog-ppl-0.15.9.ebuild,v 1.1 2010/05/06 04:55:36 dirtyepic Exp $ + +inherit autotools + +DESCRIPTION="Port of CLooG (Chunky LOOp Generator) to PPL (Parma Polyhedra Library)" +HOMEPAGE="http://repo.or.cz/w/cloog-ppl.git" +SRC_URI="ftp://gcc.gnu.org/pub/gcc/infrastructure/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd" +IUSE="" + +RDEPEND=">=dev-libs/ppl-0.10 + dev-libs/gmp" +DEPEND="${RDEPEND}" + +src_compile() { + econf --with-ppl || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" +} |