commit: ddbb54b8a5e307ed3396b88bc6c1853fc44eaa12 Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz> AuthorDate: Thu Jul 20 20:12:32 2017 +0000 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz> CommitDate: Fri Jul 28 20:05:19 2017 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ddbb54b8
sci-libs/htslib: version bump Keeping KEYWORDS empty because it conflicts with htslib-1.3.1 as of now unless jlec/soap proceed in some proper way. Package-Manager: Portage-2.3.6, Repoman-2.3.2 sci-libs/htslib/htslib-1.5.ebuild | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/sci-libs/htslib/htslib-1.5.ebuild b/sci-libs/htslib/htslib-1.5.ebuild new file mode 100644 index 000000000..1e1274ff0 --- /dev/null +++ b/sci-libs/htslib/htslib-1.5.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="C library for HTS data with bgzip, tabix and htsfile binaries" +HOMEPAGE="http://www.htslib.org/" +SRC_URI="mirror://sourceforge/samtools/${PV}/${P}.tar.bz2" + +SLOT="2" # libhts.so.2 +LICENSE="MIT" +KEYWORDS="" +IUSE="static-libs" + +DEPEND=" + dev-libs/openssl:= + app-arch/xz-utils + app-arch/bzip2 + net-misc/curl" +RDEPEND="${DEPEND}" + +src_install() { + default + if ! use static-libs; then + find "${ED}" -type f -name "*.a" -delete || die + fi +} + +pkg_postinst(){ + einfo "You may want to install sci-libs/htslib-plugins" +}
