public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sci-biology/bamtools/, sci-libs/dcmtk/, sci-libs/symengine/
@ 2020-01-05 17:40 Andreas Sturmlechner
  0 siblings, 0 replies; only message in thread
From: Andreas Sturmlechner @ 2020-01-05 17:40 UTC (permalink / raw
  To: gentoo-commits

commit:     4ffa10f6a70318d6b036be816b8da47711eeebb7
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Jan  4 10:14:15 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Jan  5 17:40:24 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ffa10f6

*/*: Switch sci-biology proj to cmake.eclass

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 sci-biology/bamtools/bamtools-2.5.1.ebuild |  6 +++---
 sci-biology/bamtools/bamtools-9999.ebuild  |  6 +++---
 sci-libs/dcmtk/dcmtk-3.6.5.ebuild          | 11 +++++------
 sci-libs/symengine/symengine-0.5.0.ebuild  |  8 ++++----
 4 files changed, 15 insertions(+), 16 deletions(-)

diff --git a/sci-biology/bamtools/bamtools-2.5.1.ebuild b/sci-biology/bamtools/bamtools-2.5.1.ebuild
index b5affe9f0fa..78a0c3cd255 100644
--- a/sci-biology/bamtools/bamtools-2.5.1.ebuild
+++ b/sci-biology/bamtools/bamtools-2.5.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit cmake-utils
+inherit cmake
 
 DESCRIPTION="A programmer's API and an end-user's toolkit for handling BAM files"
 HOMEPAGE="https://github.com/pezmaster31/bamtools"
@@ -29,5 +29,5 @@ src_prepare() {
 	# delete bundled libs, just to be safe
 	rm -rf src/third_party/{gtest-1.6.0,jsoncpp} || die
 
-	cmake-utils_src_prepare
+	cmake_src_prepare
 }

diff --git a/sci-biology/bamtools/bamtools-9999.ebuild b/sci-biology/bamtools/bamtools-9999.ebuild
index b5affe9f0fa..78a0c3cd255 100644
--- a/sci-biology/bamtools/bamtools-9999.ebuild
+++ b/sci-biology/bamtools/bamtools-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit cmake-utils
+inherit cmake
 
 DESCRIPTION="A programmer's API and an end-user's toolkit for handling BAM files"
 HOMEPAGE="https://github.com/pezmaster31/bamtools"
@@ -29,5 +29,5 @@ src_prepare() {
 	# delete bundled libs, just to be safe
 	rm -rf src/third_party/{gtest-1.6.0,jsoncpp} || die
 
-	cmake-utils_src_prepare
+	cmake_src_prepare
 }

diff --git a/sci-libs/dcmtk/dcmtk-3.6.5.ebuild b/sci-libs/dcmtk/dcmtk-3.6.5.ebuild
index 62dcaa4d598..240ca02f96f 100644
--- a/sci-libs/dcmtk/dcmtk-3.6.5.ebuild
+++ b/sci-libs/dcmtk/dcmtk-3.6.5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit cmake-utils
+inherit cmake
 
 DESCRIPTION="The DICOM Toolkit"
 HOMEPAGE="https://dicom.offis.de/dcmtk.php.en"
@@ -30,7 +30,7 @@ DEPEND="${RDEPEND}
 BDEPEND="doc? ( app-doc/doxygen )"
 
 src_prepare() {
-	cmake-utils_src_prepare
+	cmake_src_prepare
 
 	sed -e "s:share/doc/dcmtk:&-${PV}:" \
 		-e "s:DIR \"/:DIR \"/usr/:" \
@@ -51,7 +51,6 @@ src_prepare() {
 
 src_configure() {
 	local mycmakeargs=(
-		-DBUILD_SHARED_LIBS=ON
 		-DCMAKE_INSTALL_SYSCONFDIR="${EROOT}/etc"
 		-DDCMTK_WITH_ICU=ON
 		-DDCMTK_WITH_TIFF=$(usex tiff)
@@ -63,7 +62,7 @@ src_configure() {
 		-DDCMTK_WITH_THREADS=$(usex threads)
 	)
 
-	cmake-utils_src_configure
+	cmake_src_configure
 
 	if use doc; then
 		cd "${S}"/doxygen || die
@@ -72,7 +71,7 @@ src_configure() {
 }
 
 src_compile() {
-	cmake-utils_src_compile
+	cmake_src_compile
 
 	if use doc; then
 		emake -C "${S}"/doxygen
@@ -85,5 +84,5 @@ src_install() {
 	if use doc; then
 		local HTML_DOCS=( "${S}"/doxygen/htmldocs/. )
 	fi
-	cmake-utils_src_install
+	cmake_src_install
 }

diff --git a/sci-libs/symengine/symengine-0.5.0.ebuild b/sci-libs/symengine/symengine-0.5.0.ebuild
index 725e60e3d7f..6b84f4677d6 100644
--- a/sci-libs/symengine/symengine-0.5.0.ebuild
+++ b/sci-libs/symengine/symengine-0.5.0.ebuild
@@ -3,7 +3,8 @@
 
 EAPI=7
 
-inherit cmake-utils flag-o-matic
+CMAKE_BUILD_TYPE=Release
+inherit cmake flag-o-matic
 
 DESCRIPTION="Fast symbolic manipulation library, written in C++"
 HOMEPAGE="https://github.com/sympy/symengine"
@@ -33,7 +34,7 @@ pkg_pretend() {
 }
 
 src_prepare() {
-	cmake-utils_src_prepare
+	cmake_src_prepare
 	sed -e "s|DESTINATION doc| DESTINATION share/doc/${PF}/html|" \
 		-e "s|/lib|/$(get_libdir)|g" \
 		-e "s|lib/|$(get_libdir)/|g" \
@@ -57,7 +58,6 @@ src_configure() {
 	local mycmakeargs=(
 		-DARB_INCLUDE_DIR="${EPREFIX}/usr/include"
 		-DINTEGER_CLASS="${int_class}"
-		-DBUILD_SHARED_LIBS=ON
 		-DBUILD_BENCHMARKS="$(usex benchmarks)"
 		-DBUILD_DOXYGEN="$(usex doc)"
 		-DBUILD_TESTS="$(usex test)"
@@ -75,5 +75,5 @@ src_configure() {
 		-DWITH_ECM="$(usex ecm)"
 	)
 	test-flag-CXX -std=c++11 && append-cxxflags -std=c++11
-	CMAKE_BUILD_TYPE=Release cmake-utils_src_configure
+	cmake_src_configure
 }


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-01-05 17:40 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-05 17:40 [gentoo-commits] repo/gentoo:master commit in: sci-biology/bamtools/, sci-libs/dcmtk/, sci-libs/symengine/ Andreas Sturmlechner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox