Diff cgal-6.0 with a cgal-6.0.1
/usr/portage/sci-mathematics/cgal/cgal-6.0.1.ebuild 2025-07-29 16:22:17.340467776 +0300 | ||
---|---|---|
1 |
# Copyright 1999-2024 Gentoo Authors |
|
1 |
# Copyright 1999-2025 Gentoo Authors |
|
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 | 4 |
EAPI=8 |
... | ... | |
19 | 19 |
LICENSE="LGPL-3 GPL-3 Boost-1.0" |
20 | 20 |
SLOT="0/14" |
21 | 21 |
KEYWORDS="amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" |
22 |
IUSE="doc examples" |
|
22 |
IUSE="doc examples test" |
|
23 |
RESTRICT="!test? ( test )" |
|
23 | 24 | |
24 | 25 |
RDEPEND=" |
25 | 26 |
dev-cpp/eigen |
... | ... | |
45 | 46 |
local mycmakeargs=( |
46 | 47 |
-DCGAL_INSTALL_LIB_DIR="$(get_libdir)" |
47 | 48 |
-DCGAL_INSTALL_CMAKE_DIR="$(get_libdir)/cmake/CGAL" |
49 | ||
50 |
# https://github.com/CGAL/cgal/wiki/Testing#using-ctest |
|
51 |
-DCGAL_ENABLE_TESTING="$(usex test)" |
|
52 |
-DCGAL_TEST_SUITE="$(usex test)" |
|
53 |
-DBUILD_TESTING="$(usex test)" |
|
54 |
-DWITH_examples="$(usex test)" |
|
48 | 55 |
) |
49 | 56 | |
50 | 57 |
cmake_src_configure |