dev-cpp/random123: initial commit

Package-Manager: Portage-2.3.0, Repoman-2.3.1
This commit is contained in:
Christoph Junghans
2017-01-12 14:22:49 -07:00
parent b931c4bb60
commit 9a89b76d13
3 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST Random123-1.09.tar.gz 696854 SHA256 cf6abf623061bcf3d17e5e49bf3f3f0ae400ee89ae2e97c8cb8dcb918b1ebabe SHA512 7bd72dffa53ca8d835b4a4cf49171618cd46f4b329d7a09486efaf2e1565c98b80ff05e3bccc244fabd7013f139058511fb2e39399bfe51fd6b68cd9e63da1ac WHIRLPOOL 6c2a220f43ab96b1060109ad552cc2e1dcb4400be8e429d78c0e152d519cd1c32ed4d7e31e7ad971e4a8031385cc9c7c7d8c38424c60931dce7fff969606f32b

View File

@@ -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>

View File

@@ -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
}