commit: 7736e78d6f57d1b94772e90058ef32efc2f22eba Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc> AuthorDate: Fri Feb 5 18:13:33 2021 +0000 Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc> CommitDate: Fri Feb 5 18:17:20 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=7736e78d
sci-biology/quicktree: version bump to 2.5 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc> sci-biology/quicktree/quicktree-2.5.ebuild | 31 ++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/sci-biology/quicktree/quicktree-2.5.ebuild b/sci-biology/quicktree/quicktree-2.5.ebuild new file mode 100644 index 000000000..c2fd315f9 --- /dev/null +++ b/sci-biology/quicktree/quicktree-2.5.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Rapid reconstruction of phylogenies by the Neighbor-Joining method" +HOMEPAGE="https://github.com/khowe/quicktree/" +SRC_URI="https://github.com/khowe/quicktree/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +#S=${WORKDIR}/${PN}_${PV} + +src_prepare() { + default + sed -e "s/\-O2/${CFLAGS}/" \ + -i Makefile || die +} + +src_compile() { + emake CC="$(tc-getCC)" LFLAGS="${LDFLAGS}" +} + +src_install() { + dobin quicktree + einstalldocs +}
