From 85fad26e8efb7e2fc01de49e59a0d7e0b210c5bc Mon Sep 17 00:00:00 2001 From: David Seifert Date: Sun, 28 Oct 2018 21:24:33 +0100 Subject: sci-libs/htslib: Version bump to 1.9 Bug: https://bugs.gentoo.org/647714 Signed-off-by: David Seifert Package-Manager: Portage-2.3.50, Repoman-2.3.11 --- sci-libs/htslib/htslib-1.9.ebuild | 45 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 sci-libs/htslib/htslib-1.9.ebuild (limited to 'sci-libs/htslib/htslib-1.9.ebuild') diff --git a/sci-libs/htslib/htslib-1.9.ebuild b/sci-libs/htslib/htslib-1.9.ebuild new file mode 100644 index 000000000000..69df48a332f2 --- /dev/null +++ b/sci-libs/htslib/htslib-1.9.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="C library for high-throughput sequencing data formats" +HOMEPAGE="http://www.htslib.org/" +SRC_URI="mirror://sourceforge/samtools/${PV}/${P}.tar.bz2" + +SLOT="0/2" +LICENSE="MIT" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="+bzip2 curl +lzma static-libs" + +RDEPEND=" + bzip2? ( app-arch/bzip2:= ) + curl? ( net-misc/curl ) + lzma? ( app-arch/xz-utils:= )" +DEPEND="${RDEPEND}" + +src_prepare() { + default + + # upstream injects LDFLAGS into the .pc file, + # which is a big nono for QA + sed 's/private_LIBS=$LDFLAGS/private_LIBS=""/g' -i configure || die +} + +src_configure() { + econf \ + --disable-gcs \ + --disable-plugins \ + --disable-s3 \ + $(use_enable bzip2 bz2) \ + $(use_enable curl libcurl) \ + $(use_enable lzma) +} + +src_install() { + default + + if ! use static-libs; then + find "${D}" -name '*.a' -delete || die + fi +} -- cgit v1.2.3