summaryrefslogtreecommitdiff
path: root/media-libs/qhull/qhull-2019.1.ebuild
blob: 57c776373b80df1915d30382050e08e0f941200d (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
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
 
EAPI=6
 
inherit cmake-utils flag-o-matic
 
DESCRIPTION="Geometry library"
HOMEPAGE="http://www.qhull.org"
SRC_URI="http://www.qhull.org/download/${PN}-2019-src-7.3.2.tgz -> ${P}.tar.gz"
 
SLOT="0"
LICENSE="BSD"
KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
IUSE="doc"
 
DOCS=( Announce.txt File_id.diz README.txt REGISTER.txt )
 
src_configure() {
append-flags -fno-strict-aliasing
mycmakeargs+=(
-DLIB_INSTALL_DIR="${EPREFIX}"/usr/$(get_libdir)
-DDOC_INSTALL_DIR="${EPREFIX}"/usr/share/doc/${P}/html
)
cmake-utils_src_configure
}
 
src_install() {
cmake-utils_src_install
# compatibility with previous installs
dosym libqhull /usr/include/qhull
if ! use doc; then
rm -rf "${ED}"/usr/share/doc/${P}/html || die
fi
}