diff options
author | Matthias Maier <tamiko@gentoo.org> | 2024-10-15 11:35:25 -0500 |
---|---|---|
committer | Matthias Maier <tamiko@gentoo.org> | 2024-10-15 14:04:52 -0500 |
commit | e239f265272edd9f975e0adf60b7ddde7eb96781 (patch) | |
tree | fc55ca3117b001d554bcc0c00c632e5bbef62461 /sci-mathematics/cgal/cgal-6.0.ebuild | |
parent | dev-ada/VSS: enable gcc_14 (diff) | |
download | gentoo-e239f265272edd9f975e0adf60b7ddde7eb96781.tar.gz gentoo-e239f265272edd9f975e0adf60b7ddde7eb96781.tar.bz2 gentoo-e239f265272edd9f975e0adf60b7ddde7eb96781.zip |
sci-mathematics/cgal: add 6.0, drop 6.0_beta1
Signed-off-by: Matthias Maier <tamiko@gentoo.org>
Diffstat (limited to 'sci-mathematics/cgal/cgal-6.0.ebuild')
-rw-r--r-- | sci-mathematics/cgal/cgal-6.0.ebuild | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/sci-mathematics/cgal/cgal-6.0.ebuild b/sci-mathematics/cgal/cgal-6.0.ebuild new file mode 100644 index 000000000000..99f0659b8999 --- /dev/null +++ b/sci-mathematics/cgal/cgal-6.0.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# Modules provided by dev-cpp/eigen +CMAKE_REMOVE_MODULES_LIST=( FindEigen3 ) +inherit cmake + +MY_PV="${PV/_/-}" +MY_P="CGAL-${PV/_/-}" +DESCRIPTION="C++ library for geometric algorithms and data structures" +HOMEPAGE="https://www.cgal.org/" +SRC_URI=" + https://github.com/CGAL/cgal/releases/download/v${MY_PV}/${MY_P}.tar.xz + doc? ( https://github.com/CGAL/cgal/releases/download/v${MY_PV}/${MY_P}-doc_html.tar.xz )" +S="${WORKDIR}/${MY_P}" + +LICENSE="LGPL-3 GPL-3 Boost-1.0" +SLOT="0/14" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc examples" + +RDEPEND=" + dev-cpp/eigen + dev-libs/boost:= + dev-libs/gmp:=[cxx] + dev-libs/mpfr:= + sys-libs/zlib + x11-libs/libX11:= + virtual/glu:= + virtual/opengl:= +" +DEPEND="${RDEPEND}" +BDEPEND=" + app-arch/xz-utils + virtual/pkgconfig +" + +PATCHES=( + "${FILESDIR}"/${PN}-4.11.1-fix-buildsystem.patch +) + +src_configure() { + local mycmakeargs=( + -DCGAL_INSTALL_LIB_DIR="$(get_libdir)" + -DCGAL_INSTALL_CMAKE_DIR="$(get_libdir)/cmake/CGAL" + ) + + cmake_src_configure +} + +src_install() { + use doc && local HTML_DOCS=( "${WORKDIR}"/doc_html/. ) + + cmake_src_install + + if use examples; then + dodoc -r examples demo + fi +} |