diff options
author | Johannes Huber <johu@gentoo.org> | 2017-02-24 06:59:11 +0100 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2017-02-24 06:59:11 +0100 |
commit | 01ad330e6ab3f5548b80862a5c6d7adc9c21cd62 (patch) | |
tree | 57005b5535e554b66b7b2c896ffd72645c2d4a6e /media-libs/qhull | |
parent | media-libs/qhull: Remove 2012.1-r1 (diff) | |
download | gentoo-01ad330e6ab3f5548b80862a5c6d7adc9c21cd62.tar.gz gentoo-01ad330e6ab3f5548b80862a5c6d7adc9c21cd62.tar.bz2 gentoo-01ad330e6ab3f5548b80862a5c6d7adc9c21cd62.zip |
media-libs/qhull: Remove 2012.1-r3
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'media-libs/qhull')
-rw-r--r-- | media-libs/qhull/qhull-2012.1-r3.ebuild | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/media-libs/qhull/qhull-2012.1-r3.ebuild b/media-libs/qhull/qhull-2012.1-r3.ebuild deleted file mode 100644 index 9e6bf928df37..000000000000 --- a/media-libs/qhull/qhull-2012.1-r3.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -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 ~arm ~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}-64bit.patch ) - -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 -} - -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 "${EROOT}"usr/include/qhull || die -} - -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/${PF}/html || die - fi - if ! use static-libs; then - rm -f "${ED}"/usr/$(get_libdir)/lib*.a || die - fi -} |