summaryrefslogtreecommitdiff
path: root/sci-biology
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-09-30 07:05:38 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-09-30 07:05:38 +0000
commitd5751b1260fda1bd00ddfc78bb34b3c7afd9b343 (patch)
treea21535ad1a01ab1fd01aa5eb017695819d04ab88 /sci-biology
parent3def67a34c3ef05a9af535017aca6bba634a2a37 (diff)
downloadbaldeagleos-repo-d5751b1260fda1bd00ddfc78bb34b3c7afd9b343.tar.gz
baldeagleos-repo-d5751b1260fda1bd00ddfc78bb34b3c7afd9b343.tar.xz
baldeagleos-repo-d5751b1260fda1bd00ddfc78bb34b3c7afd9b343.zip
Adding metadata
Diffstat (limited to 'sci-biology')
-rw-r--r--sci-biology/fasttree/fasttree-2.1.11.ebuild15
-rw-r--r--sci-biology/fasttree/files/CMakeLists.txt2
2 files changed, 9 insertions, 8 deletions
diff --git a/sci-biology/fasttree/fasttree-2.1.11.ebuild b/sci-biology/fasttree/fasttree-2.1.11.ebuild
index cb2d16791ee3..979e8427e476 100644
--- a/sci-biology/fasttree/fasttree-2.1.11.ebuild
+++ b/sci-biology/fasttree/fasttree-2.1.11.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit cmake
DESCRIPTION="Fast inference of approximately-maximum-likelihood phylogenetic trees"
-HOMEPAGE="http://www.microbesonline.org/fasttree/"
+HOMEPAGE="https://morgannprice.github.io/fasttree/"
SRC_URI="
http://www.microbesonline.org/fasttree/FastTree-${PV}.c
http://www.microbesonline.org/fasttree/FastTreeUPGMA.c -> FastTreeUPGMA-${PV}.c
@@ -26,10 +26,11 @@ PATCHES=( "${FILESDIR}"/${P}-format-security.patch )
src_unpack() {
mkdir "${S}" || die
- cd "${S}" || die
- unpack ${A}
- cp "${DISTDIR}"/{FastTreeUPGMA-${PV}.c,FastTree-${PV}.c} . || die
- cp "${FILESDIR}"/CMakeLists.txt . || die
+ pushd "${S}" > /dev/null || die
+ unpack ${A}
+ cp "${DISTDIR}"/{FastTreeUPGMA-${PV}.c,FastTree-${PV}.c} . || die
+ cp "${FILESDIR}"/CMakeLists.txt . || die
+ popd > /dev/null || die
}
src_configure() {
diff --git a/sci-biology/fasttree/files/CMakeLists.txt b/sci-biology/fasttree/files/CMakeLists.txt
index c52b90cc7be2..26e060696631 100644
--- a/sci-biology/fasttree/files/CMakeLists.txt
+++ b/sci-biology/fasttree/files/CMakeLists.txt
@@ -1,4 +1,4 @@
-cmake_minimum_required (VERSION 2.8.12)
+cmake_minimum_required (VERSION 3.10)
project(fasttree C)
include(GNUInstallDirs)