You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-libs/htslib/htslib-1.5.ebuild

38 lines
769 B

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
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_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
}