diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-02-18 08:43:24 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-02-18 08:43:24 +0000 |
commit | 483938a9b88abc51fc1da36794c509807510b988 (patch) | |
tree | ebfbeace75f472725b4c1fd2226d09fd064721de /sci-libs/htslib | |
parent | update meta info; use epatch (diff) | |
download | gentoo-2-483938a9b88abc51fc1da36794c509807510b988.tar.gz gentoo-2-483938a9b88abc51fc1da36794c509807510b988.tar.bz2 gentoo-2-483938a9b88abc51fc1da36794c509807510b988.zip |
Version BUmp, #540352
(Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'sci-libs/htslib')
-rw-r--r-- | sci-libs/htslib/ChangeLog | 8 | ||||
-rw-r--r-- | sci-libs/htslib/htslib-1.2.1.ebuild | 21 |
2 files changed, 27 insertions, 2 deletions
diff --git a/sci-libs/htslib/ChangeLog b/sci-libs/htslib/ChangeLog index b858d192c884..e8c1a7993d5c 100644 --- a/sci-libs/htslib/ChangeLog +++ b/sci-libs/htslib/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-libs/htslib # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/htslib/ChangeLog,v 1.6 2015/01/06 12:14:13 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/htslib/ChangeLog,v 1.7 2015/02/18 08:43:24 jlec Exp $ + +*htslib-1.2.1 (18 Feb 2015) + + 18 Feb 2015; Justin Lecher <jlec@gentoo.org> +htslib-1.2.1.ebuild: + Version BUmp, #540352 06 Jan 2015; Justin Lecher <jlec@gentoo.org> htslib-1.1.ebuild: Fix broken delete of manpage @@ -24,4 +29,3 @@ 20 Sep 2014; Justin Lecher <jlec@gentoo.org> +htslib-1.0.ebuild, +metadata.xml: New addition, written by me - diff --git a/sci-libs/htslib/htslib-1.2.1.ebuild b/sci-libs/htslib/htslib-1.2.1.ebuild new file mode 100644 index 000000000000..47cc54b74c74 --- /dev/null +++ b/sci-libs/htslib/htslib-1.2.1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/htslib/htslib-1.2.1.ebuild,v 1.1 2015/02/18 08:43:24 jlec Exp $ + +EAPI=5 + +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" +LICENSE="MIT" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="static-libs" + +src_install() { + default + if ! use static-libs; then + find "${ED}" -type f -name "*.a" -delete || die + fi +} |