Gentoo Archives: gentoo-commits

From: Aisha Tammy <gentoo@×××××.cc>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/quicktree/
Date: Fri, 05 Feb 2021 18:17:43
Message-Id: 1612549040.7736e78d6f57d1b94772e90058ef32efc2f22eba.epsilon-0@gentoo
1 commit: 7736e78d6f57d1b94772e90058ef32efc2f22eba
2 Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
3 AuthorDate: Fri Feb 5 18:13:33 2021 +0000
4 Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
5 CommitDate: Fri Feb 5 18:17:20 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=7736e78d
7
8 sci-biology/quicktree: version bump to 2.5
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
12
13 sci-biology/quicktree/quicktree-2.5.ebuild | 31 ++++++++++++++++++++++++++++++
14 1 file changed, 31 insertions(+)
15
16 diff --git a/sci-biology/quicktree/quicktree-2.5.ebuild b/sci-biology/quicktree/quicktree-2.5.ebuild
17 new file mode 100644
18 index 000000000..c2fd315f9
19 --- /dev/null
20 +++ b/sci-biology/quicktree/quicktree-2.5.ebuild
21 @@ -0,0 +1,31 @@
22 +# Copyright 1999-2021 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +inherit toolchain-funcs
28 +
29 +DESCRIPTION="Rapid reconstruction of phylogenies by the Neighbor-Joining method"
30 +HOMEPAGE="https://github.com/khowe/quicktree/"
31 +SRC_URI="https://github.com/khowe/quicktree/archive/v${PV}.tar.gz -> ${P}.tar.gz"
32 +
33 +LICENSE="Apache-2.0"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +
37 +#S=${WORKDIR}/${PN}_${PV}
38 +
39 +src_prepare() {
40 + default
41 + sed -e "s/\-O2/${CFLAGS}/" \
42 + -i Makefile || die
43 +}
44 +
45 +src_compile() {
46 + emake CC="$(tc-getCC)" LFLAGS="${LDFLAGS}"
47 +}
48 +
49 +src_install() {
50 + dobin quicktree
51 + einstalldocs
52 +}