dev-cpp/random123: initial commit
authorChristoph Junghans <junghans@gentoo.org>
Thu, 12 Jan 2017 21:22:49 +0000 (14:22 -0700)
committerChristoph Junghans <junghans@gentoo.org>
Thu, 12 Jan 2017 21:23:15 +0000 (14:23 -0700)
Package-Manager: Portage-2.3.0, Repoman-2.3.1

dev-cpp/random123/Manifest [new file with mode: 0644]
dev-cpp/random123/metadata.xml [new file with mode: 0644]
dev-cpp/random123/random123-1.09.ebuild [new file with mode: 0644]

diff --git a/dev-cpp/random123/Manifest b/dev-cpp/random123/Manifest
new file mode 100644 (file)
index 0000000..f68e25c
--- /dev/null
@@ -0,0 +1 @@
+DIST Random123-1.09.tar.gz 696854 SHA256 cf6abf623061bcf3d17e5e49bf3f3f0ae400ee89ae2e97c8cb8dcb918b1ebabe SHA512 7bd72dffa53ca8d835b4a4cf49171618cd46f4b329d7a09486efaf2e1565c98b80ff05e3bccc244fabd7013f139058511fb2e39399bfe51fd6b68cd9e63da1ac WHIRLPOOL 6c2a220f43ab96b1060109ad552cc2e1dcb4400be8e429d78c0e152d519cd1c32ed4d7e31e7ad971e4a8031385cc9c7c7d8c38424c60931dce7fff969606f32b
diff --git a/dev-cpp/random123/metadata.xml b/dev-cpp/random123/metadata.xml
new file mode 100644 (file)
index 0000000..903883b
--- /dev/null
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+       <maintainer type="person">
+               <email>junghans@gentoo.org</email>
+               <name>Christoph Junghans</name>
+       </maintainer>
+       <maintainer type="project">
+               <email>sci@gentoo.org</email>
+               <name>Gentoo Science Project</name>
+       </maintainer>
+</pkgmetadata>
diff --git a/dev-cpp/random123/random123-1.09.ebuild b/dev-cpp/random123/random123-1.09.ebuild
new file mode 100644 (file)
index 0000000..37ee825
--- /dev/null
@@ -0,0 +1,25 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="library of counter-based random number generators (CBRNGs)"
+HOMEPAGE="https://www.deshawresearch.com/resources_random123.html"
+MY_P="${P^r}"
+SRC_URI="https://www.deshawresearch.com/downloads/download_${PN}.cgi/${MY_P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_install() {
+       insinto /usr/include
+       doins -r include/Random123
+}