blob: da767a46edaa3952c771f4b005085508bfd45e9e (
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
36
37
38
39
40
41
42
43
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Set of C headers containing macros and static functions"
HOMEPAGE="https://www.shlomifish.org/open-source/projects/ https://github.com/shlomif/rinutils"
SRC_URI="https://github.com/shlomif/${PN}/releases/download/${PV}/${P}.tar.xz"
LICENSE="MIT"
SLOT="0"
IUSE="test"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc64 ~riscv ~sparc ~x86"
RESTRICT="!test? ( test )"
BDEPEND="
test? (
dev-perl/Env-Path
dev-perl/Path-Tiny
dev-perl/Inline
dev-perl/Inline-C
dev-perl/Test-TrailingSpace
dev-perl/Test-Differences
dev-perl/IO-All
dev-perl/Perl-Critic
dev-perl/Perl-Tidy
dev-perl/Test-Pod
dev-perl/Test-Pod-Coverage
dev-perl/Test-Trap
dev-util/cmocka
)
"
src_configure() {
local mycmakeargs=(
-DDISABLE_APPLYING_RPATH=OFF
-DWITH_TEST_SUITE=$(usex test ON OFF)
)
cmake_src_configure
}
|