diff options
author | Martin Mokrejš <mmokrejs@fold.natur.cuni.cz> | 2017-02-24 14:59:57 +0100 |
---|---|---|
committer | Martin Mokrejš <mmokrejs@fold.natur.cuni.cz> | 2017-02-24 14:59:57 +0100 |
commit | b466093993c5deb44025419e3c969e4555b5f3dc (patch) | |
tree | 2f71639bd1fed61569dca9fc2b7211ed12b30d26 | |
parent | sci-biology/verifyBamID: new package, would benefit unbundling of libStatGen (diff) | |
download | sci-b466093993c5deb44025419e3c969e4555b5f3dc.tar.gz sci-b466093993c5deb44025419e3c969e4555b5f3dc.tar.bz2 sci-b466093993c5deb44025419e3c969e4555b5f3dc.zip |
sci-libs/libStatGen: a standalone static library
This is to be used by sci-biology/verifyBamID but it requires some of
the Makefiles from libStatGen source tree, and likely headers as well.
Seem slike a lot of work to rewamp the build requirements.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
-rw-r--r-- | sci-libs/libStatGen/Manifest | 1 | ||||
-rw-r--r-- | sci-libs/libStatGen/libStatGen-1.0.13.ebuild | 23 | ||||
-rw-r--r-- | sci-libs/libStatGen/metadata.xml | 12 |
3 files changed, 36 insertions, 0 deletions
diff --git a/sci-libs/libStatGen/Manifest b/sci-libs/libStatGen/Manifest new file mode 100644 index 000000000..fb9dba9ea --- /dev/null +++ b/sci-libs/libStatGen/Manifest @@ -0,0 +1 @@ +DIST libStatGen-1.0.13.tar.gz 558682 SHA256 a67a3126fbf227a5c3a4de044447bf01eb8e091c737f7696449f764e42926339 SHA512 bcce3dd2f343e5941857d5bca0f2960d69b3e1083da6312e018a96bb92fb8dbc91ac511e062b024720c45508aa805d3f4f6511f60201438176a898ab789e746f WHIRLPOOL 533f255adc73d5aff0c45191d97a138723ff4a84e70f72bc0f66430b62071afe7ff6efa09d519ebce9954263b5c5a1a8ce066d648305aa2602a0d831abbdb6f6 diff --git a/sci-libs/libStatGen/libStatGen-1.0.13.ebuild b/sci-libs/libStatGen/libStatGen-1.0.13.ebuild new file mode 100644 index 000000000..e822dc5f8 --- /dev/null +++ b/sci-libs/libStatGen/libStatGen-1.0.13.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="Set of classes for creating statistical genetic programs" +HOMEPAGE="https://github.com/statgen/libStatGen" +SRC_URI="https://github.com/statgen/libStatGen/archive/v1.0.13.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="sys-libs/zlib + dev-libs/openssl" +RDEPEND="${DEPEND}" + +src_install(){ + default + dolib libStatGen.* # package only makes a static library +} diff --git a/sci-libs/libStatGen/metadata.xml b/sci-libs/libStatGen/metadata.xml new file mode 100644 index 000000000..f68a1b6fa --- /dev/null +++ b/sci-libs/libStatGen/metadata.xml @@ -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>mmokrejs@fold.natur.cuni.cz</email> + <name>Martin Mokrejs</name> + </maintainer> + <maintainer type="project"> + <email>sci-biology@gentoo.org</email> + <name>Gentoo Biology Project</name> + </maintainer> +</pkgmetadata> |