aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHorea Christian <h.chr@mail.ru>2013-09-07 23:29:35 +0200
committerHorea Christian <h.chr@mail.ru>2015-02-09 13:06:48 +0100
commit5fa27cf10a6fffb787a18d922ed4ac64e2d97ca3 (patch)
tree2ebe9bf9b3c10874a11657221242ca99a32a1cf1 /sci-biology
parentadded -j1 option to the second emake call (otherwise some file doesn't get fo... (diff)
downloadsci-5fa27cf10a6fffb787a18d922ed4ac64e2d97ca3.tar.gz
sci-5fa27cf10a6fffb787a18d922ed4ac64e2d97ca3.tar.bz2
sci-5fa27cf10a6fffb787a18d922ed4ac64e2d97ca3.zip
initial commit
Diffstat (limited to 'sci-biology')
-rw-r--r--sci-biology/afni/Manifest1
-rw-r--r--sci-biology/afni/afni-9999.ebuild28
2 files changed, 29 insertions, 0 deletions
diff --git a/sci-biology/afni/Manifest b/sci-biology/afni/Manifest
new file mode 100644
index 000000000..bbb923f41
--- /dev/null
+++ b/sci-biology/afni/Manifest
@@ -0,0 +1 @@
+DIST afni_src.tgz 22262501 SHA256 4d76b28b2934bf313286e952e1e1b5d7269f4de48d8c2ffda3ed15096ec32592 SHA512 ef3c06a49f5a20be0e41ce4645f8a1496779f838da8ecb9e1839df811d25e95ed3bdec8857605af76e81922845de71c52deae67257ddb32615000ab0775e55db WHIRLPOOL 05d50d2e5b5b2d6a45ff89688b00564ec9aafaecaee37782cce302c2add44cf5b8491f0ec7c45f88ccb58947ab8fd9a0b116f779118fb50dcd87cfda79103369
diff --git a/sci-biology/afni/afni-9999.ebuild b/sci-biology/afni/afni-9999.ebuild
new file mode 100644
index 000000000..38fa5689b
--- /dev/null
+++ b/sci-biology/afni/afni-9999.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+DESCRIPTION="An open-source environment for processing and displaying functional MRI data"
+HOMEPAGE="http://afni.nimh.nih.gov/"
+SRC_URI="http://afni.nimh.nih.gov/pub/dist/tgz/afni_src.tgz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="
+ "
+
+DEPEND="
+ x11-libs/motif[static-libs]
+ "
+
+S=${WORKDIR}/afni_src
+
+src_compile() {
+ sed -e 's/-V 32//g' -i Makefile.linux_xorg7_64 # they provide somewhat problematic makefiles :(
+ emake -j1 -f Makefile.linux_xorg7_64 totality suma XLIBS="-lXm -lXt" LGIFTI=-lexpat
+ }