head 1.1; access; symbols pkgsrc-2026Q1:1.1.0.20 pkgsrc-2026Q1-base:1.1 pkgsrc-2025Q4:1.1.0.18 pkgsrc-2025Q4-base:1.1 pkgsrc-2025Q3:1.1.0.16 pkgsrc-2025Q3-base:1.1 pkgsrc-2025Q2:1.1.0.14 pkgsrc-2025Q2-base:1.1 pkgsrc-2025Q1:1.1.0.12 pkgsrc-2025Q1-base:1.1 pkgsrc-2024Q4:1.1.0.10 pkgsrc-2024Q4-base:1.1 pkgsrc-2024Q3:1.1.0.8 pkgsrc-2024Q3-base:1.1 pkgsrc-2024Q2:1.1.0.6 pkgsrc-2024Q2-base:1.1 pkgsrc-2024Q1:1.1.0.4 pkgsrc-2024Q1-base:1.1 pkgsrc-2023Q4:1.1.0.2 pkgsrc-2023Q4-base:1.1; locks; strict; comment @# @; 1.1 date 2023.12.18.01.39.13; author thor; state Exp; branches; next ; commitid qWgqw3GQdb9K1TQE; desc @@ 1.1 log @biology/libpll: added package for PLL phylogenetic analysis The aim of this project is to implement a versatile high-performance software library for phylogenetic analysis. The library should serve as a lower-level interface of PLL (Flouri et al. 2015) and should have the following properties: open source code with an appropriate open source license. 64-bit multi-threaded design that handles very large datasets. easy to use and well-documented. SIMD implementations of time-consuming parts. as fast or faster likelihood computations than RAxML (Stamatakis 2014). fast implementation of the site repeats algorithm (Kobert 2017). functions for tree visualization. bindings for Python. generic and clean design. Linux, Mac, and Microsoft Windows compatibility. @ text @$NetBSD$ Make stupid check for bison and flex a bit less stupid. --- configure.orig 2023-02-13 21:30:40.779472369 +0000 +++ configure @@@@ -11880,11 +11880,11 @@@@ test -n "$YACC" || YACC="yacc" -if test "x$LEX" != xflex; then +if test "x$(basename "$LEX")" != xflex; then as_fn_error $? "could not find required installation of FLEX" "$LINENO" 5 fi -if test "x$YACC" != x"bison -y"; then +if test "x$(basename "$YACC")" != x"bison -y"; then as_fn_error $? "could not find required installation of BISON" "$LINENO" 5 fi @