Gentoo Archives: gentoo-commits

From: Martin Mokrejs <mmokrejs@×××××××××××××××.cz>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/htslib/
Date: Fri, 28 Jul 2017 20:05:29
Message-Id: 1501272319.ddbb54b8a5e307ed3396b88bc6c1853fc44eaa12.mmokrejs@gentoo
1 commit: ddbb54b8a5e307ed3396b88bc6c1853fc44eaa12
2 Author: Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
3 AuthorDate: Thu Jul 20 20:12:32 2017 +0000
4 Commit: Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
5 CommitDate: Fri Jul 28 20:05:19 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ddbb54b8
7
8 sci-libs/htslib: version bump
9
10 Keeping KEYWORDS empty because it conflicts with htslib-1.3.1 as of now
11 unless jlec/soap proceed in some proper way.
12
13 Package-Manager: Portage-2.3.6, Repoman-2.3.2
14
15 sci-libs/htslib/htslib-1.5.ebuild | 31 +++++++++++++++++++++++++++++++
16 1 file changed, 31 insertions(+)
17
18 diff --git a/sci-libs/htslib/htslib-1.5.ebuild b/sci-libs/htslib/htslib-1.5.ebuild
19 new file mode 100644
20 index 000000000..1e1274ff0
21 --- /dev/null
22 +++ b/sci-libs/htslib/htslib-1.5.ebuild
23 @@ -0,0 +1,31 @@
24 +# Copyright 1999-2017 Gentoo Foundation
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=6
28 +
29 +DESCRIPTION="C library for HTS data with bgzip, tabix and htsfile binaries"
30 +HOMEPAGE="http://www.htslib.org/"
31 +SRC_URI="mirror://sourceforge/samtools/${PV}/${P}.tar.bz2"
32 +
33 +SLOT="2" # libhts.so.2
34 +LICENSE="MIT"
35 +KEYWORDS=""
36 +IUSE="static-libs"
37 +
38 +DEPEND="
39 + dev-libs/openssl:=
40 + app-arch/xz-utils
41 + app-arch/bzip2
42 + net-misc/curl"
43 +RDEPEND="${DEPEND}"
44 +
45 +src_install() {
46 + default
47 + if ! use static-libs; then
48 + find "${ED}" -type f -name "*.a" -delete || die
49 + fi
50 +}
51 +
52 +pkg_postinst(){
53 + einfo "You may want to install sci-libs/htslib-plugins"
54 +}