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 EBB34138359 for ; Sat, 26 Sep 2020 13:08:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE921E07F9; Sat, 26 Sep 2020 13:08:23 +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 C315DE07F9 for ; Sat, 26 Sep 2020 13:08:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 70EAA340D9E for ; Sat, 26 Sep 2020 13:08:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDC3B365 for ; Sat, 26 Sep 2020 13:08:20 +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: <1601125695.c9769d1af4a59e038f327066530b32126c4e69ed.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: c9769d1af4a59e038f327066530b32126c4e69ed X-VCS-Branch: master Date: Sat, 26 Sep 2020 13:08:20 +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: c65f6663-fb80-4878-b3a5-692cae1369d0 X-Archives-Hash: 1a9c788849a4e9a26442850cf9f21fb4 commit: c9769d1af4a59e038f327066530b32126c4e69ed Author: Horea Christian chymera eu> AuthorDate: Sat Sep 26 13:08:15 2020 +0000 Commit: Horea Christian gmail com> CommitDate: Sat Sep 26 13:08:15 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=c9769d1a sci-biology/ants: live package unusable w/o dynamic data Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Horea Christian chymera.eu> sci-biology/ants/ants-9999.ebuild | 70 --------------------------------------- 1 file changed, 70 deletions(-) diff --git a/sci-biology/ants/ants-9999.ebuild b/sci-biology/ants/ants-9999.ebuild deleted file mode 100644 index 19d0a36db..000000000 --- a/sci-biology/ants/ants-9999.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -CMAKE_MAKEFILE_GENERATOR="emake" - -inherit cmake git-r3 multilib - -DESCRIPTION="Advanced Normalitazion Tools for neuroimaging" -HOMEPAGE="http://stnava.github.io/ANTs/" -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" -) - -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() { - 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 * || die - doenvd "${FILESDIR}"/99ants -}