head 1.1; access; symbols pkgsrc-2026Q1:1.1.0.42 pkgsrc-2026Q1-base:1.1 pkgsrc-2025Q4:1.1.0.40 pkgsrc-2025Q4-base:1.1 pkgsrc-2025Q3:1.1.0.38 pkgsrc-2025Q3-base:1.1 pkgsrc-2025Q2:1.1.0.36 pkgsrc-2025Q2-base:1.1 pkgsrc-2025Q1:1.1.0.34 pkgsrc-2025Q1-base:1.1 pkgsrc-2024Q4:1.1.0.32 pkgsrc-2024Q4-base:1.1 pkgsrc-2024Q3:1.1.0.30 pkgsrc-2024Q3-base:1.1 pkgsrc-2024Q2:1.1.0.28 pkgsrc-2024Q2-base:1.1 pkgsrc-2024Q1:1.1.0.26 pkgsrc-2024Q1-base:1.1 pkgsrc-2023Q4:1.1.0.24 pkgsrc-2023Q4-base:1.1 pkgsrc-2023Q3:1.1.0.22 pkgsrc-2023Q3-base:1.1 pkgsrc-2023Q2:1.1.0.20 pkgsrc-2023Q2-base:1.1 pkgsrc-2023Q1:1.1.0.18 pkgsrc-2023Q1-base:1.1 pkgsrc-2022Q4:1.1.0.16 pkgsrc-2022Q4-base:1.1 pkgsrc-2022Q3:1.1.0.14 pkgsrc-2022Q3-base:1.1 pkgsrc-2022Q2:1.1.0.12 pkgsrc-2022Q2-base:1.1 pkgsrc-2022Q1:1.1.0.10 pkgsrc-2022Q1-base:1.1 pkgsrc-2021Q4:1.1.0.8 pkgsrc-2021Q4-base:1.1 pkgsrc-2021Q3:1.1.0.6 pkgsrc-2021Q3-base:1.1 pkgsrc-2021Q2:1.1.0.4 pkgsrc-2021Q2-base:1.1 pkgsrc-2021Q1:1.1.0.2 pkgsrc-2021Q1-base:1.1; locks; strict; comment @# @; 1.1 date 2021.03.06.11.20.56; author nia; state Exp; branches; next ; commitid h0OdwAW5x570WeKC; desc @@ 1.1 log @ettercap: Update to 0.8.3.1. Builds again. Added a spearate package for the GTK ui. Removed ettercap-NG, it's now obsoleted by the main ettercap package. @ text @$NetBSD$ Just use pkg-config to find GTK3 rather than a custom hellfire that checks 30 system directories but nothing used by pkgsrc. --- cmake/Modules/EttercapLibCheck.cmake.orig 2020-08-01 14:32:06.000000000 +0000 +++ cmake/Modules/EttercapLibCheck.cmake @@@@ -45,24 +45,9 @@@@ if(ENABLE_GTK) unset(contains_valid) if(GTK_BUILD_TYPE STREQUAL GTK3) set(GTK3_FIND_VERSION 1) - find_package(GTK3 3.12.0) + pkg_check_modules (GTK3 gtk+-3.0) if(GTK3_FOUND) set(HAVE_GTK3 1) - else() - # give it another try but only in GTK3 compatibility mode - find_package(GTK3 REQUIRED) - if(GTK3_FOUND) - message("\n\ -Your version of GTK3 (${GTK3_VERSION}) is not \ -sufficient for full GTK3 support.\n\ -Full support requires >= 3.12.\n\ -Building in GTK3 compatibility mode.\n") - set(HAVE_GTK3COMPAT 1) - else() - message(FATAL_ERROR -"You choose to build against GTK3.\ -Please install it, or build against GTK1") - endif() endif() set(EC_INTERFACES_LIBS ${EC_INTERFACES_LIBS} ${GTK3_LIBRARIES}) set(EC_INCLUDE ${EC_INCLUDE} ${GTK3_INCLUDE_DIRS}) @