diff options
author | 2012-07-11 11:53:19 -0700 | |
---|---|---|
committer | 2012-07-11 11:53:19 -0700 | |
commit | c9e75262ad50fc9b5e696ac041323ad63706d7a8 (patch) | |
tree | b3f800a5be202a2fecbf4d753d75d914acb6ffb8 /sci-mathematics/dsfmt/dsfmt-2.2.ebuild | |
parent | sci-libs/fdlibm: Initial import (diff) | |
download | sci-c9e75262ad50fc9b5e696ac041323ad63706d7a8.tar.gz sci-c9e75262ad50fc9b5e696ac041323ad63706d7a8.tar.bz2 sci-c9e75262ad50fc9b5e696ac041323ad63706d7a8.zip |
sci-mathematics/dsfmt: Initial import
(Portage version: 2.2.01.20757-prefix/git/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'sci-mathematics/dsfmt/dsfmt-2.2.ebuild')
-rw-r--r-- | sci-mathematics/dsfmt/dsfmt-2.2.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sci-mathematics/dsfmt/dsfmt-2.2.ebuild b/sci-mathematics/dsfmt/dsfmt-2.2.ebuild new file mode 100644 index 000000000..bef27a6e3 --- /dev/null +++ b/sci-mathematics/dsfmt/dsfmt-2.2.ebuild @@ -0,0 +1,28 @@ + +EAPI=4 + +MYP=dSFMT-src-${PV} + +DESCRIPTION="Double precision SIMD-oriented Fast Mersenne Twister library" +HOMEPAGE="http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/SFMT" +SRC_URI="${HOMEPAGE}/${MYP}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND="" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/${MYP}" + +src_test() { + emake std-check +} + +src_install() { + insinto /usr/include + doins dSFMT.c d*.h + dodoc README*txt CHANGE* +} |