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 58BF8138334 for ; Mon, 25 Nov 2019 17:58:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A20D5E09D4; Mon, 25 Nov 2019 17:58:49 +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 7B3EAE09D4 for ; Mon, 25 Nov 2019 17:58:49 +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 5B90D34D38A for ; Mon, 25 Nov 2019 17:58:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 56221778 for ; Mon, 25 Nov 2019 17:58:46 +0000 (UTC) From: "Horea Christian" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Horea Christian" Message-ID: <1574704720.5be1efe1c29a989f03b635bc179b5181150f45eb.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/ants/ X-VCS-Repository: proj/sci X-VCS-Files: sci-biology/ants/ants-9999.ebuild X-VCS-Directories: sci-biology/ants/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: 5be1efe1c29a989f03b635bc179b5181150f45eb X-VCS-Branch: master Date: Mon, 25 Nov 2019 17:58:46 +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: c76c0131-596f-4aaf-9933-b04568a8344c X-Archives-Hash: c1ff265f71c17715cc9f6ec1748f0cd1 commit: 5be1efe1c29a989f03b635bc179b5181150f45eb Author: Horea Christian chymera eu> AuthorDate: Mon Nov 25 17:58:40 2019 +0000 Commit: Horea Christian gmail com> CommitDate: Mon Nov 25 17:58:40 2019 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=5be1efe1 sci-biology/ants: EAPI bump and other live ebuild fixes Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Horea Christian chymera.eu> sci-biology/ants/ants-9999.ebuild | 60 +++++++++++++++++++++++++++++++++------ 1 file changed, 51 insertions(+), 9 deletions(-) diff --git a/sci-biology/ants/ants-9999.ebuild b/sci-biology/ants/ants-9999.ebuild index da7514fca..b759acb50 100644 --- a/sci-biology/ants/ants-9999.ebuild +++ b/sci-biology/ants/ants-9999.ebuild @@ -1,28 +1,70 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 + +CMAKE_MAKEFILE_GENERATOR="emake" inherit cmake-utils git-r3 multilib DESCRIPTION="Advanced Normalitazion Tools for neuroimaging" HOMEPAGE="http://stnava.github.io/ANTs/" -SRC_URI="" +SRC_URI=" + test? ( + http://chymera.eu/distfiles/ants_testdata-2.3.1_p20191013.tar.xz + ) +" EGIT_REPO_URI="https://github.com/stnava/ANTs.git" SLOT="0" LICENSE="BSD" KEYWORDS="" +IUSE="test vtk" + +DEPEND=" + vtk? ( + ~sci-libs/itk-5.0.1[vtkglue] + sci-libs/vtk + ) + !vtk? ( ~sci-libs/itk-5.0.1 ) +" +RDEPEND="${DEPEND}" + +PATCHES=( + "${FILESDIR}/${PN}-2.3.1_p20191013-paths.patch" +) -DEPEND=">=dev-util/cmake-3.10.3" -RDEPEND="" +src_unpack() { + git-r3_src_unpack + if use test; then + mkdir -p "${S}/.ExternalData/MD5" || die "Could not create test data directory." + tar xvf "${DISTDIR}/ants_testdata-2.3.1_p20191013.tar.xz" -C "${S}/.ExternalData/MD5/" > /dev/null || die "Could not unpack test data." + fi +} + +src_configure() { + local mycmakeargs=( + -DUSE_SYSTEM_ITK=ON + -DITK_DIR="/usr/include/ITK-5.0/" + -DBUILD_TESTING="$(usex test ON OFF)" + -DUSE_VTK=$(usex vtk ON OFF) + -DUSE_SYSTEM_VTK=$(usex vtk ON OFF) + ) + use vtk && mycmakeargs+=( + -DVTK_DIR="/usr/include/vtk-8.1/" + ) + use test && mycmakeargs+=( + -DExternalData_OBJECT_STORES="${S}/.ExternalData/MD5" + ) + cmake-utils_src_configure +} src_install() { - cd "${WORKDIR}/${P}_build/ANTS-build" || die "build dir not found" - default - cd "${WORKDIR}/ANTs-${PV}/Scripts" || die "scripts dir not found" + BUILD_DIR="${WORKDIR}/${P}_build/ANTS-build" + cmake-utils_src_install + cd "${WORKDIR}/${P}/Scripts" || die "scripts dir not found" dobin *.sh dodir /usr/$(get_libdir)/ants - install -t "${D}"usr/$(get_libdir)/ants * + install -t "${D}"/usr/$(get_libdir)/ants * || die doenvd "${FILESDIR}"/99ants }