blob: 76a05283c51038576185320981c0c90949cf115f (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit cmake-utils
DESCRIPTION="Architecture independent C API for reading /proc/cpuinfo"
HOMEPAGE="https://savannah.nongnu.org/projects/proccpuinfo/"
SRC_URI="http://download.savannah.nongnu.org/releases/proccpuinfo/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="alpha amd64 ~hppa ~mips x86"
IUSE=""
DEPEND=">=sys-devel/flex-2.5.33"
RDEPEND=""
DOCS="AUTHORS ChangeLog HACKING README THANKS TODO"
CMAKE_IN_SOURCE_BUILD="yes"
src_prepare() {
sed -i \
-e "s#DESTINATION lib#DESTINATION $(get_libdir)#" \
CMakeLists.txt || die
}
|