aboutsummaryrefslogtreecommitdiff
blob: d0f96decbe816f4370bc1352176b5f4a838ea471 (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 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"

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

src_prepare() {
	if use access-daemon ; then
		epatch "${FILESDIR}/use_access_daemon.patch"
	fi
	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
}

pkg_preinst() {
	if use access-daemon ; then
		fperms 4755 /usr/bin/likwid-accessD
	fi
}