diff options
author | Xiang Gao <qasdfgtyuiop@gmail.com> | 2016-01-06 12:48:58 -0500 |
---|---|---|
committer | Xiang Gao <qasdfgtyuiop@gmail.com> | 2016-01-12 13:26:48 -0500 |
commit | f849f4e50706fded4ed27eb86f8b466bee8f0c14 (patch) | |
tree | af9fc50375e485e9ab4e36c5170c57afc5e878be /sci-mathematics | |
parent | dev-python/numpy: Properly handle f2py stuff (diff) | |
download | gentoo-f849f4e50706fded4ed27eb86f8b466bee8f0c14.tar.gz gentoo-f849f4e50706fded4ed27eb86f8b466bee8f0c14.tar.bz2 gentoo-f849f4e50706fded4ed27eb86f8b466bee8f0c14.zip |
sci-mathematics/fann-9999
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/fann/fann-9999.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/sci-mathematics/fann/fann-9999.ebuild b/sci-mathematics/fann/fann-9999.ebuild new file mode 100644 index 000000000000..d2ed135fc299 --- /dev/null +++ b/sci-mathematics/fann/fann-9999.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit cmake-utils git-2 + +DESCRIPTION="Fast Artificial Neural Network Library" +HOMEPAGE="http://leenissen.dk/fann/" +EGIT_REPO_URI="git://github.com/libfann/fann.git" + +LICENSE="LGPL-2.1" +SLOT="0" +IUSE="examples" + +src_test() { + cd examples || die 'fails to enter examples directory' + LD_LIBRARY_PATH="${BUILD_DIR}/src" GCC="$(tc-getCC) ${CFLAGS} -I../src/include -L${BUILD_DIR}/src" emake -e runtest + emake clean +} + +src_install() { + cmake-utils_src_install + if use examples; then + insinto /usr/share/doc/${PF} + doins -r examples + fi +} |