summaryrefslogtreecommitdiff
path: root/sci-mathematics/primesieve/primesieve-7.9.ebuild
blob: 65d0b3d3e93afff82714adbd938570f0e7bea9ad (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
45
46
47
48
49
50
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit cmake

DESCRIPTION="CLI and library for quickly generating prime numbers"
HOMEPAGE="https://github.com/kimwalisch/primesieve"
SRC_URI="https://github.com/kimwalisch/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0/9"  # subslot is first component of libprimesieve.so version
KEYWORDS="amd64"
IUSE="doc +executable test"
RESTRICT="!test? ( test )"

BDEPEND="doc? ( app-doc/doxygen app-text/texlive media-gfx/graphviz )"
DEPEND=""
RDEPEND=""

DOCS=(
	ChangeLog
	README.md
	doc/ALGORITHMS.md
	doc/CPP_Examples.md
	doc/C_Examples.md
)

src_configure() {
	local mycmakeargs=(
		-DBUILD_DOC="$(usex doc)"
		-DBUILD_PRIMESIEVE="$(usex executable)"
		-DBUILD_STATIC_LIBS="OFF"
		-DBUILD_TESTS="$(usex test)"
	)

	if use doc; then
		DOCS+=(
			"${BUILD_DIR}/doc/html"
			"${BUILD_DIR}/doc/latex/refman.pdf"
		)
	fi

	cmake_src_configure
}

src_compile() {
	cmake_src_compile
	use doc && cmake_build doc
}