Lines 1-12
Link Here
|
1 |
# Copyright 1999-2018 Gentoo Foundation |
1 |
# Copyright 1999-2019 Gentoo Authors |
2 |
# Distributed under the terms of the GNU General Public License v2 |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
|
3 |
|
4 |
EAPI=6 |
4 |
EAPI=6 |
5 |
|
5 |
|
|
|
6 |
MULTILIB_COMPAT=( abi_x86_{32,64} ) |
6 |
PYTHON_COMPAT=( python2_7 ) |
7 |
PYTHON_COMPAT=( python2_7 ) |
7 |
CMAKE_BUILD_TYPE=Release |
8 |
CMAKE_BUILD_TYPE=Release |
8 |
|
9 |
|
9 |
inherit cmake-utils linux-info python-single-r1 |
10 |
inherit cmake-utils linux-info multilib-build python-single-r1 |
10 |
|
11 |
|
11 |
DESCRIPTION="Record and Replay Framework" |
12 |
DESCRIPTION="Record and Replay Framework" |
12 |
HOMEPAGE="https://rr-project.org/" |
13 |
HOMEPAGE="https://rr-project.org/" |
Lines 53-58
Link Here
|
53 |
src_configure() { |
54 |
src_configure() { |
54 |
local mycmakeargs=( |
55 |
local mycmakeargs=( |
55 |
-DBUILD_TESTS=$(usex test) |
56 |
-DBUILD_TESTS=$(usex test) |
|
|
57 |
-Ddisable32bit=$(usex abi_x86_32 no yes) |
56 |
) |
58 |
) |
57 |
|
59 |
|
58 |
cmake-utils_src_configure |
60 |
cmake-utils_src_configure |