aboutsummaryrefslogtreecommitdiff
blob: 9112d6658edac0b711c31bb61db45cb8bbf2ec64 (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
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=5

inherit eutils

DESCRIPTION="The Berkeley UPC-to-C translator"
HOMEPAGE="http://upc.lbl.gov/"
SRC_URI="http://upc.lbl.gov/download/release/${P}.tar.gz"
LICENSE="BSD-4"

SLOT="0"
KEYWORDS="~x86"
IUSE=""

DEPEND="app-shells/tcsh"

src_prepare() {
	epatch "${FILESDIR}"/${P}-stackoverflow.patch
}

src_compile() {
	emake -j1
}

src_install() {
	emake install PREFIX="${D}/usr/libexec/${P}"
}