blob: 79e296fa57a6dc969739595ec297f4d4fc4e57f5 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/qhull/qhull-2010.1-r2.ebuild,v 1.11 2013/01/02 11:44:32 jer Exp $
EAPI=3
inherit cmake-utils flag-o-matic
MY_P="${PN}${PV}"
DESCRIPTION="Geometry library"
HOMEPAGE="http://www.qhull.org"
SRC_URI="${HOMEPAGE}/download/${P}-src.tgz"
SLOT="0"
LICENSE="BSD"
KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="doc static-libs"
DOCS="Announce.txt File_id.diz README.txt REGISTER.txt"
PATCHES=( "${FILESDIR}/${P}-cmake-install.patch" "${FILESDIR}/${P}-overflows.patch" )
src_configure() {
append-flags -fno-strict-aliasing
mycmakeargs="
-DLIB_INSTALL_DIR="${EPREFIX}"/usr/$(get_libdir)
-DDOC_INSTALL_DIR="${EPREFIX}"/usr/share/doc/${PF}
$(cmake-utils_use_with static-libs STATIC_LIBS)
$(cmake-utils_use_with doc DOCS)"
cmake-utils_src_configure
}
pkg_preinst() {
# remove potential symlink to avoid triggering collision-protect or
# protect-owned (https://bugs.gentoo.org/show_bug.cgi?id=435006)
rm "${ROOT}"/usr/include/qhull
}
|