diff options
author | Sam James <sam@gentoo.org> | 2021-01-05 23:35:15 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-01-05 23:44:22 +0000 |
commit | f3289db827ce28f6ddc2e6378118218eb7070a65 (patch) | |
tree | d176a31ade91a302870940f89bca3129447d8794 /media-libs/qhull | |
parent | dev-python/jupyter_core: Update remote-id (diff) | |
download | gentoo-f3289db827ce28f6ddc2e6378118218eb7070a65.tar.gz gentoo-f3289db827ce28f6ddc2e6378118218eb7070a65.tar.bz2 gentoo-f3289db827ce28f6ddc2e6378118218eb7070a65.zip |
media-libs/qhull: various fixes
* Drop static-libs
* Expose subslot (and revbump) which changed
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs/qhull')
-rw-r--r-- | media-libs/qhull/qhull-2015.2.ebuild | 4 | ||||
-rw-r--r-- | media-libs/qhull/qhull-2020.2-r1.ebuild (renamed from media-libs/qhull/qhull-2020.2.ebuild) | 14 |
2 files changed, 9 insertions, 9 deletions
diff --git a/media-libs/qhull/qhull-2015.2.ebuild b/media-libs/qhull/qhull-2015.2.ebuild index 4539170beac6..ba369993be47 100644 --- a/media-libs/qhull/qhull-2015.2.ebuild +++ b/media-libs/qhull/qhull-2015.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -9,7 +9,7 @@ DESCRIPTION="Geometry library" HOMEPAGE="http://www.qhull.org" SRC_URI="http://www.qhull.org/download/${PN}-2015-src-7.2.0.tgz -> ${P}.tar.gz" -SLOT="0" +SLOT="0/7" LICENSE="BSD" KEYWORDS="amd64 arm arm64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" IUSE="doc static-libs" diff --git a/media-libs/qhull/qhull-2020.2.ebuild b/media-libs/qhull/qhull-2020.2-r1.ebuild index 31da6061ee1c..63124afc11df 100644 --- a/media-libs/qhull/qhull-2020.2.ebuild +++ b/media-libs/qhull/qhull-2020.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -9,10 +9,10 @@ DESCRIPTION="Geometry library" HOMEPAGE="http://www.qhull.org" SRC_URI="https://github.com/qhull/qhull/archive/${PV}.tar.gz -> ${P}.tar.gz" -SLOT="0" +SLOT="0/8" LICENSE="BSD" KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="doc static-libs" +IUSE="doc" DOCS=( Announce.txt File_id.diz README.txt REGISTER.txt ) @@ -28,12 +28,12 @@ src_prepare() { } src_configure() { - CMAKE_BUILD_TYPE=Release - - mycmakeargs+=( - -DBUILD_STATIC_LIBS=$(usex static-libs) + local mycmakeargs=( + -DBUILD_STATIC_LIBS=OFF + -DLINK_APPS_SHARED=ON -DDOC_INSTALL_DIR="${EPREFIX}"/usr/share/doc/${PF} -DLIB_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)" ) + cmake_src_configure } |