Gentoo Archives: gentoo-commits

From: Horea Christian <horea.christ@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/ciftilib/
Date: Sun, 14 Oct 2018 20:45:44
Message-Id: 1539549906.6eb5168dec6ae536a582c35586f3d0587089c422.chymera@gentoo
1 commit: 6eb5168dec6ae536a582c35586f3d0587089c422
2 Author: Horea Christian <horea.christ <AT> yandex <DOT> com>
3 AuthorDate: Sun Oct 14 20:45:06 2018 +0000
4 Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
5 CommitDate: Sun Oct 14 20:45:06 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6eb5168d
7
8 sci-libs/ciftilib: new ebuild
9
10 Resolving https://github.com/gentoo/sci/pull/889
11
12 Package-Manager: Portage-2.3.49, Repoman-2.3.10
13
14 sci-libs/ciftilib/ciftilib-1.5.3.ebuild | 38 +++++++++++++++++++++++++++++++++
15 sci-libs/ciftilib/metadata.xml | 14 ++++++++++++
16 2 files changed, 52 insertions(+)
17
18 diff --git a/sci-libs/ciftilib/ciftilib-1.5.3.ebuild b/sci-libs/ciftilib/ciftilib-1.5.3.ebuild
19 new file mode 100644
20 index 000000000..fc473f38c
21 --- /dev/null
22 +++ b/sci-libs/ciftilib/ciftilib-1.5.3.ebuild
23 @@ -0,0 +1,38 @@
24 +# Copyright 1999-2018 Gentoo Foundation
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI="6"
28 +
29 +inherit cmake-utils
30 +
31 +DESCRIPTION="C++ Library for reading and writing CIFTI-2 and CIFTI-1 files"
32 +HOMEPAGE="https://github.com/Washington-University/CiftiLib"
33 +SRC_URI="https://github.com/Washington-University/CiftiLib/archive/v${PV}.tar.gz -> ${P}.tar.gz"
34 +
35 +LICENSE="BSD-2"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +IUSE=""
39 +
40 +DEPEND="
41 + dev-cpp/libxmlpp:2.6
42 + dev-libs/boost
43 + sys-libs/zlib
44 + "
45 +RDEPEND="${DEPEND}"
46 +
47 +S="${WORKDIR}/CiftiLib-${PV}"
48 +
49 +src_configure() {
50 + local mycmakeargs=(
51 + -DIGNORE_QT=TRUE
52 + )
53 + cmake-utils_src_configure
54 +}
55 +
56 +src_test(){
57 + local myctestargs=(
58 + -j1
59 + )
60 + cmake-utils_src_test
61 +}
62
63 diff --git a/sci-libs/ciftilib/metadata.xml b/sci-libs/ciftilib/metadata.xml
64 new file mode 100644
65 index 000000000..41b3ce0fc
66 --- /dev/null
67 +++ b/sci-libs/ciftilib/metadata.xml
68 @@ -0,0 +1,14 @@
69 +<?xml version="1.0" encoding="UTF-8"?>
70 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
71 +<pkgmetadata>
72 + <maintainer type="project">
73 + <name>Horea Christian</name>
74 + <email>horea.christian@×××××.com</email>
75 + </maintainer>
76 + <maintainer type="person">
77 + <email>slis@g.o</email>
78 + </maintainer>
79 + <upstream>
80 + <remote-id type="github">Washington-University/CiftiLib</remote-id>
81 + </upstream>
82 +</pkgmetadata>