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

EAPI=5

inherit eutils

DESCRIPTION="Command line tools for developing high performance multi threaded programs"
HOMEPAGE="http://code.google.com/p/likwid/"
SRC_URI="http://likwid.googlecode.com/files/${P}.0.tar.gz"

SLOT="0"
LICENSE="GPL-3"
KEYWORDS="~amd64"
IUSE="+access-daemon"

src_prepare() {
	use access-daemon && epatch "${FILESDIR}/use_access_daemon.patch"
	epatch "${FILESDIR}/likwid.patch"
	sed -i -e "s:/usr/local:${D}/usr:" config.mk || die "Couldn't set prefix!"
}

src_compile() {
	default
	emake likwid-bench
}

src_install() {
	default
	use access-daemon && fperms 4755 /usr/bin/likwid-accessD
}