1
0
mirror of synced 2024-06-10 14:39:58 +02:00
TheChymera-overlay/sci-biology/ants/ants-9999.ebuild

71 lines
1.5 KiB
Bash
Raw Normal View History

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
2019-09-20 02:36:59 +02:00
EAPI=7
2019-10-13 23:16:50 +02:00
CMAKE_MAKEFILE_GENERATOR="emake"
2019-10-13 23:16:50 +02:00
inherit cmake-utils git-r3 multilib
2019-09-20 02:36:59 +02:00
DESCRIPTION="Advanced Normalitazion Tools for neuroimaging"
HOMEPAGE="http://stnava.github.io/ANTs/"
2019-10-13 23:16:50 +02:00
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=""
2019-10-13 23:16:50 +02:00
IUSE="test vtk"
2019-10-13 23:16:50 +02:00
RDEPEND=""
DEPEND="
>=dev-util/cmake-3.10.3
vtk? (
~sci-libs/itk-5.0.1[vtkglue]
sci-libs/vtk
)
!vtk? ( ~sci-libs/itk-5.0.1 )
"
2019-09-20 02:36:59 +02:00
2019-10-13 23:16:50 +02:00
PATCHES=(
"${FILESDIR}/${P}-logic.patch"
"${FILESDIR}/${P}-paths.patch"
)
2019-09-20 02:36:59 +02:00
2019-10-13 23:16:50 +02:00
src_prepare () {
use test && mkdir -p "${S}/.ExternalData/MD5"
use test && tar xvf "${DISTDIR}/ants_testdata-2.3.1_p20191013.tar.xz" -C "${S}/.ExternalData/MD5/"
cmake-utils_src_prepare
2019-09-20 02:36:59 +02:00
}
src_configure() {
local mycmakeargs=(
-DUSE_SYSTEM_ITK=ON
2019-10-13 23:16:50 +02:00
-DITK_DIR="/usr/include/ITK-5.0/"
2019-09-20 02:36:59 +02:00
-DBUILD_TESTING="$(usex test ON OFF)"
2019-10-13 23:16:50 +02:00
-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"
2019-09-20 02:36:59 +02:00
)
cmake-utils_src_configure
}
src_install() {
2019-10-13 23:16:50 +02:00
BUILD_DIR="${WORKDIR}/${P}_build/ANTS-build"
cmake-utils_src_install
2019-09-20 02:36:59 +02:00
cd "${WORKDIR}/${P}/Scripts" || die "scripts dir not found"
dobin *.sh
dodir /usr/$(get_libdir)/ants
2019-10-13 23:16:50 +02:00
install -t "${D}"/usr/$(get_libdir)/ants * || die
doenvd "${FILESDIR}"/99ants
}