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 3F2A61382C5 for ; Tue, 5 Jan 2021 11:19:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70F03E085A; Tue, 5 Jan 2021 11:19:19 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5A94EE085A for ; Tue, 5 Jan 2021 11:19:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0F1FD3411C9 for ; Tue, 5 Jan 2021 11:19:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A397C2A9 for ; Tue, 5 Jan 2021 11:19:16 +0000 (UTC) From: "Dennis Lamm" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Dennis Lamm" Message-ID: <1609845552.cd21f130fb8cfad454a207e682a60897ab7a3eaf.expeditioneer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/qhull/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/qhull/Manifest media-libs/qhull/qhull-2020.2.ebuild X-VCS-Directories: media-libs/qhull/ X-VCS-Committer: expeditioneer X-VCS-Committer-Name: Dennis Lamm X-VCS-Revision: cd21f130fb8cfad454a207e682a60897ab7a3eaf X-VCS-Branch: master Date: Tue, 5 Jan 2021 11:19:16 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 388eafb6-485e-453b-b0af-d82da866737b X-Archives-Hash: 5064404f312e0f9c7cd10aeb451283b8 commit: cd21f130fb8cfad454a207e682a60897ab7a3eaf Author: Dennis Lamm gentoo org> AuthorDate: Tue Dec 22 06:42:20 2020 +0000 Commit: Dennis Lamm gentoo org> CommitDate: Tue Jan 5 11:19:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd21f130 media-libs/qhull: version bump Signed-off-by: Dennis Lamm gentoo.org> media-libs/qhull/Manifest | 1 + media-libs/qhull/qhull-2020.2.ebuild | 39 ++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/media-libs/qhull/Manifest b/media-libs/qhull/Manifest index 92eb25e0562..5290493785d 100644 --- a/media-libs/qhull/Manifest +++ b/media-libs/qhull/Manifest @@ -1 +1,2 @@ DIST qhull-2015.2.tar.gz 1010153 BLAKE2B 854d1897ad5a92b2e13f6b2304d707b21023a47d60fcc7065b487c24dad06fa016536311e224155b879ad699c046f15991a840f5f04283ffdeef8a68dfbf7c15 SHA512 a544f88b5fbabc592fdc4c5533ba58a8f856e018b85128f43d0532a1143123ceb0d5ca9ae1d27722efa5d08092c017bf7715c157d1019f447e6746f23f02dcd4 +DIST qhull-2020.2.tar.gz 1307213 BLAKE2B db11d4b83124da3ceed95e1eb81c280ac55c871c83acd4c371f9716b57a1777105891a073282789c7a80b5d74e85164996fbe4f2140c8371bca5926eab4adbc2 SHA512 88f50c2a968f56deec61772490617cc877b0ca2d804954ade08297b9bab826076db6b960d6f1feb21c6851e5328cb11c6dd565666517fa78a3d65b901848ff36 diff --git a/media-libs/qhull/qhull-2020.2.ebuild b/media-libs/qhull/qhull-2020.2.ebuild new file mode 100644 index 00000000000..25c4e7d784d --- /dev/null +++ b/media-libs/qhull/qhull-2020.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="Geometry library" +HOMEPAGE="http://www.qhull.org" +SRC_URI="https://github.com/qhull/qhull/archive/${PV}.tar.gz -> ${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 static-libs" + +DOCS=( Announce.txt File_id.diz README.txt REGISTER.txt ) + +src_prepare() { + if ! use doc ; then + sed -i \ + -e '/^install(DIRECTORY html/d' \ + -e '/^[[:blank:]]*index.htm/d' \ + CMakeLists.txt || die + fi + + cmake_src_prepare +} + +src_configure() { + CMAKE_BUILD_TYPE=Release + + mycmakeargs+=( + -DBUILD_STATIC_LIBS=$(usex static-libs) + -DDOC_INSTALL_DIR="${EPREFIX}"/usr/share/doc/${PF} + -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)" + ) + cmake_src_configure +}