aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Clausecker <fuz@FreeBSD.org>2025-08-31 15:32:14 +0000
committerRobert Clausecker <fuz@FreeBSD.org>2025-09-02 21:07:25 +0000
commit6b5f70d12a5fd9ee54c8321689f746878238f884 (patch)
tree44beebd1a0e30a1d4cafbb723dea56bc364edbab
parent9eaaf580d94635ab60ee0c0d93da60ddb76cddd0 (diff)
devel/libftdi1: prepare for boost 1.89
With boost 1.89, libboost_system, which is already an empty dummy library will finally go away. Turn the boost dependency into a build time dependency as no boost library is required at runtime. Consumers of <ftdi.hpp> will have to depend on boost-libs at build time to get the necessary headers, but a library dependency can be avoided in many cases. Approved by: bofh (maintainer) MFH: 2025Q3
-rw-r--r--devel/libftdi1/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/libftdi1/Makefile b/devel/libftdi1/Makefile
index cc3da9b445d3..baca911479c7 100644
--- a/devel/libftdi1/Makefile
+++ b/devel/libftdi1/Makefile
@@ -1,6 +1,6 @@
PORTNAME= libftdi1
PORTVERSION= 1.5
-PORTREVISION= 8
+PORTREVISION= 9
CATEGORIES= devel
MASTER_SITES= https://www.intra2net.com/en/developer/libftdi/download/
@@ -36,7 +36,7 @@ PYTHON_CMAKE_BOOL= PYTHON_BINDINGS
PYTHON_BUILD_DEPENDS= swig:devel/swig
BOOST_CMAKE_BOOL= FTDIPP
-BOOST_LIB_DEPENDS= libboost_system.so:devel/boost-libs
+BOOST_BUILD_DEPENDS= ${LOCALBASE}/include/boost/shared_ptr.hpp:devel/boost-libs
BOOST_PORTEXAMPLES= find_all_pp
.include <bsd.port.options.mk>