summaryrefslogtreecommitdiff
blob: 641fa40316441734de9bcc12831d5857258926b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/cilk/cilk-5.4.6.ebuild,v 1.2 2011/01/22 03:35:44 bicatali Exp $

EAPI=2
inherit flag-o-matic

DESCRIPTION="Language for multithreaded parallel programming based on ANSI C."
HOMEPAGE="http://supertech.csail.mit.edu/${PN}/"
SRC_URI="http://supertech.csail.mit.edu/${PN}/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples static-libs"

src_prepare() {
	# cilk compiler doesn't like this flags...
	filter-flags "-pipe"
	filter-flags "-ggdb"
	append-cppflags -D_XOPEN_SOURCE=500
}

src_configure() {
	econf $(use_enable static-libs static)
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed."
	dodoc NEWS README THANKS

	insinto /usr/share/doc/${PF}
	use doc && doins doc/manual.pdf
	use examples && doins -r examples
}