| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 1.6.0 | 8 | ~amd64 ~x86 | 0 |
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="C++ Library for reading and writing CIFTI-2 and CIFTI-1 files"
HOMEPAGE="https://github.com/Washington-University/CiftiLib"
SRC_URI="https://github.com/Washington-University/CiftiLib/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="qt5"
DEPEND="
dev-libs/boost
qt5? ( dev-qt/qtcore:5 )
!qt5? ( dev-cpp/libxmlpp:2.6 )
virtual/zlib:=
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/CiftiLib-${PV}"
# fix submitted upstream
# https://github.com/Washington-University/CiftiLib/pull/23
PATCHES=(
"${FILESDIR}/${P}-version.patch"
)
#TODO: Enable doc building and installation
src_prepare(){
# Make sure that CiftiLib headers and code can
# coexist with nifti_io headers.
# This takes care of the guard in the nifti1.h header
# found in both code base.
sed \
-e "s:NIFTI_:CIFTI_NIFTI__:g" \
-i `grep -rl NIFTI_ *`
sed \
-e "s:DT_:CIFTI_DT_:g" \
-i `grep -rl DT_ *`
cmake_src_prepare
}
src_configure() {
local mycmakeargs=(-DBUILD_SHARED_LIBS=ON)
use qt5 || mycmakeargs+=(-DIGNORE_QT=TRUE)
cmake_src_configure
}
src_test(){
#The testsuite is not designed to run in parallel
local myctestargs=(
-j1
)
cmake_src_test
}
dev-libs/boost qt5? ( dev-qt/qtcore:5 ) !qt5? ( dev-cpp/libxmlpp:2.6 ) virtual/zlib:=
dev-libs/boost qt5? ( dev-qt/qtcore:5 ) !qt5? ( dev-cpp/libxmlpp:2.6 ) virtual/zlib:=
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | ciftilib-1.6.0.tar.gz | 1728524 bytes | https://github.com/Washington-University/CiftiLib/archive/v1.6.0.tar.gz |