commit: 6eb5168dec6ae536a582c35586f3d0587089c422 Author: Horea Christian <horea.christ <AT> yandex <DOT> com> AuthorDate: Sun Oct 14 20:45:06 2018 +0000 Commit: Horea Christian <horea.christ <AT> gmail <DOT> com> CommitDate: Sun Oct 14 20:45:06 2018 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6eb5168d
sci-libs/ciftilib: new ebuild Resolving https://github.com/gentoo/sci/pull/889 Package-Manager: Portage-2.3.49, Repoman-2.3.10 sci-libs/ciftilib/ciftilib-1.5.3.ebuild | 38 +++++++++++++++++++++++++++++++++ sci-libs/ciftilib/metadata.xml | 14 ++++++++++++ 2 files changed, 52 insertions(+) diff --git a/sci-libs/ciftilib/ciftilib-1.5.3.ebuild b/sci-libs/ciftilib/ciftilib-1.5.3.ebuild new file mode 100644 index 000000000..fc473f38c --- /dev/null +++ b/sci-libs/ciftilib/ciftilib-1.5.3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +inherit cmake-utils + +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="" + +DEPEND=" + dev-cpp/libxmlpp:2.6 + dev-libs/boost + sys-libs/zlib + " +RDEPEND="${DEPEND}" + +S="${WORKDIR}/CiftiLib-${PV}" + +src_configure() { + local mycmakeargs=( + -DIGNORE_QT=TRUE + ) + cmake-utils_src_configure +} + +src_test(){ + local myctestargs=( + -j1 + ) + cmake-utils_src_test +} diff --git a/sci-libs/ciftilib/metadata.xml b/sci-libs/ciftilib/metadata.xml new file mode 100644 index 000000000..41b3ce0fc --- /dev/null +++ b/sci-libs/ciftilib/metadata.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <name>Horea Christian</name> + <email>[email protected]</email> + </maintainer> + <maintainer type="person"> + <email>[email protected]</email> + </maintainer> + <upstream> + <remote-id type="github">Washington-University/CiftiLib</remote-id> + </upstream> +</pkgmetadata>
