2013-01-02 20:28:06 +04:00
|
|
|
# Copyright 1999-2013 Gentoo Foundation
|
2012-05-24 09:47:58 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2013-01-07 17:10:51 +04:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/media-libs/qhull/qhull-2012.1-r1.ebuild,v 1.9 2013/01/06 20:14:27 tove Exp $
|
2012-05-24 09:47:58 +04:00
|
|
|
|
|
|
|
EAPI=4
|
|
|
|
|
|
|
|
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"
|
2013-01-07 17:10:51 +04:00
|
|
|
KEYWORDS="amd64 ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
|
2012-05-24 09:47:58 +04:00
|
|
|
IUSE="doc static-libs"
|
|
|
|
|
|
|
|
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/${PF}/html
|
|
|
|
)
|
|
|
|
cmake-utils_src_configure
|
|
|
|
}
|
|
|
|
|
2012-09-19 14:56:16 +04:00
|
|
|
pkg_preinst() {
|
|
|
|
# See https://bugs.gentoo.org/show_bug.cgi?id=435006
|
|
|
|
# If qhull-2010 is installed we need to remove its include dir so
|
|
|
|
# that it can be replaced with a symlink in this version.
|
|
|
|
rm -rf "${ROOT}"usr/include/qhull
|
2013-01-02 20:28:06 +04:00
|
|
|
}
|
2012-09-19 14:56:16 +04:00
|
|
|
|
2012-05-24 09:47:58 +04:00
|
|
|
src_install() {
|
|
|
|
cmake-utils_src_install
|
2012-06-18 18:12:02 +04:00
|
|
|
# compatibility with previous installs
|
|
|
|
dosym libqhull /usr/include/qhull
|
2012-05-24 09:47:58 +04:00
|
|
|
use doc || rm -rf "${ED}"/usr/share/doc/${PF}/html
|
|
|
|
use static-libs || rm -f "${ED}"/usr/$(get_libdir)/lib*.a
|
|
|
|
}
|