blob: d2bb5550a9489706411713d79ccad8e3744e87e6 (
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
44
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="ANSI C command-line parsing library based on getopt"
HOMEPAGE="https://www.argtable.org/"
SRC_URI="https://github.com/argtable/${PN}/releases/download/v${PV}/argtable-v${PV}.tar.gz"
S="${WORKDIR}/argtable-v${PV}"
# Their LICENSE file is a concatenation; thus is our variable:
#
# * argtable3 itself: BSD
# * FreeBSD getopt: BSD-2
# * TCL/TK: tcltk
# * Hash table: BSD
# * Better string: BSD
#
LICENSE="BSD BSD-2 tcltk"
SLOT="0"
KEYWORDS="~amd64 ~riscv"
IUSE="examples test"
RESTRICT="!test? ( test )"
src_configure() {
local mycmakeargs=(
-DARGTABLE3_ENABLE_TESTS=$(usex test)
-DARGTABLE3_ENABLE_EXAMPLES=OFF # don't _build_ the examples
)
cmake_src_configure
}
src_install() {
cmake_src_install
if use examples; then
docinto examples
dodoc examples/*.c
dodoc -r examples/multicmd
fi
}
|