From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 752AA139083 for ; Fri, 24 Feb 2017 05:59:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B676AE0C03; Fri, 24 Feb 2017 05:59:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 94761E0C03 for ; Fri, 24 Feb 2017 05:59:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B5A3F34164D for ; Fri, 24 Feb 2017 05:59:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 167B152A1 for ; Fri, 24 Feb 2017 05:59:24 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1487915951.01ad330e6ab3f5548b80862a5c6d7adc9c21cd62.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/qhull/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/qhull/qhull-2012.1-r3.ebuild X-VCS-Directories: media-libs/qhull/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 01ad330e6ab3f5548b80862a5c6d7adc9c21cd62 X-VCS-Branch: master Date: Fri, 24 Feb 2017 05:59:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e60e3257-a084-4b50-a5a7-2e4fdd090a2f X-Archives-Hash: bdd3a5c7cf5ab726f400511d78f40976 commit: 01ad330e6ab3f5548b80862a5c6d7adc9c21cd62 Author: Johannes Huber gentoo org> AuthorDate: Fri Feb 24 05:59:11 2017 +0000 Commit: Johannes Huber gentoo org> CommitDate: Fri Feb 24 05:59:11 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01ad330e media-libs/qhull: Remove 2012.1-r3 Package-Manager: Portage-2.3.3, Repoman-2.3.1 media-libs/qhull/qhull-2012.1-r3.ebuild | 50 --------------------------------- 1 file changed, 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 9e6bf928df..0000000000 --- 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 -}