Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/mricron/
Date: Fri, 04 Dec 2015 07:01:18
Message-Id: 1449189327.8a2bf1e98a4bb1beafc2f5fc63c0b9bf80220a02.jlec@gentoo
1 commit: 8a2bf1e98a4bb1beafc2f5fc63c0b9bf80220a02
2 Author: Horea Christian <h.chr <AT> mail <DOT> ru>
3 AuthorDate: Fri Dec 4 00:35:27 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 4 00:35:27 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=8a2bf1e9
7
8 sci-biology/mricron: new ebuild
9
10 Package-Manager: portage-2.2.24
11
12 sci-biology/mricron/ChangeLog | 9 +++++++++
13 sci-biology/mricron/metadata.xml | 12 ++++++++++++
14 sci-biology/mricron/mricron-9999.ebuild | 31 +++++++++++++++++++++++++++++++
15 3 files changed, 52 insertions(+)
16
17 diff --git a/sci-biology/mricron/ChangeLog b/sci-biology/mricron/ChangeLog
18 new file mode 100644
19 index 0000000..a2f358b
20 --- /dev/null
21 +++ b/sci-biology/mricron/ChangeLog
22 @@ -0,0 +1,9 @@
23 +# ChangeLog for sci-biology/mricron
24 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
25 +# $Id$
26 +
27 +*mricron-9999 (04 Dec 2015)
28 +
29 + 04 Dec 2015; Horea Christian <h.chr@××××.ru> +metadata.xml,
30 + +mricron-9999.ebuild:
31 + sci-biology/mricron: new ebuild
32
33 diff --git a/sci-biology/mricron/metadata.xml b/sci-biology/mricron/metadata.xml
34 new file mode 100644
35 index 0000000..40a4874
36 --- /dev/null
37 +++ b/sci-biology/mricron/metadata.xml
38 @@ -0,0 +1,12 @@
39 +<?xml version='1.0' encoding='UTF-8'?>
40 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
41 +<pkgmetadata>
42 + <herd>sci</herd>
43 + <longdescription lang="en">
44 + MRIcron is a simple medical imaging visualization tool written in Lazarus.
45 + </longdescription>
46 + <upstream>
47 + <remote-id type="github">neurolabusc/MRIcron</remote-id>
48 + </upstream>
49 +</pkgmetadata>
50 +
51
52 diff --git a/sci-biology/mricron/mricron-9999.ebuild b/sci-biology/mricron/mricron-9999.ebuild
53 new file mode 100644
54 index 0000000..7812e2d
55 --- /dev/null
56 +++ b/sci-biology/mricron/mricron-9999.ebuild
57 @@ -0,0 +1,31 @@
58 +# Copyright 1999-2015 Gentoo Foundation
59 +# Distributed under the terms of the GNU General Public License v2
60 +# $Id$
61 +
62 +EAPI="5"
63 +
64 +inherit git-r3
65 +
66 +DESCRIPTION="A simle medical imaging visualization tool"
67 +HOMEPAGE="https://github.com/neurolabusc/MRIcron"
68 +SRC_URI=""
69 +EGIT_REPO_URI="https://github.com/neurolabusc/MRIcron.git"
70 +
71 +LICENSE="BSD"
72 +SLOT="0"
73 +
74 +RDEPEND=""
75 +DEPEND="dev-lang/fpc
76 + dev-lang/lazarus"
77 +
78 +src_compile() {
79 + lazbuild -B --lazarusdir="/usr/share/lazarus/" mricron.lpr || die
80 +}
81 +
82 +src_install() {
83 + dobin mricron
84 + dobin dcm2nii
85 + dobin dcm2niigui
86 + dobin pigz_mricron
87 +}
88 +