Edit

IABSD.fr/ports/net/kea/Makefile

Branch :

  • Show log

    Commit

  • Author : tb
    Date : 2026-05-07 19:04:06
    Hash : 5b1e20f0
    Message : kea: fix build with Boost 1.90 by adding a missing include

  • net/kea/Makefile
  • COMMENT=	high-performance and extensible DHCP server engine from ISC
    
    VERSION=	2.4.2
    REVISION=	5
    PORTROACH=	limitw:1,even
    
    # 2.6 update notes so far;
    # cvs rm -rf patches/patch-src_lib_asiolink_{io_address_cc,io_service_cc,tcp_endpoint_h,udp_endpoint_h,unix_domain_socket_cc} patches/patch-src_lib_dhcp_iface_mgr_cc
    # addPktEvent doesn't cope with openbsd nonstandard bpf_timeval
    
    DISTNAME=	kea-${VERSION}
    PKGNAME-main=	kea-${VERSION:S/-P/pl/}
    
    .for i in kea-asiodns kea-asiolink kea-cc kea-cfgclient kea-cryptolink \
        kea-d2srv kea-database kea-dhcp++ kea-dhcp_ddns kea-dhcpsrv kea-dns++ \
        kea-eval kea-exceptions kea-hooks kea-http kea-log kea-mysql kea-pgsql \
        kea-process kea-stats kea-tcp kea-threads kea-util kea-util-io
    SHARED_LIBS +=  $i 12.0
    .endfor
    
    CATEGORIES=	net
    
    HOMEPAGE=	https://kea.isc.org/
    
    # MPL 2.0
    PERMIT_PACKAGE=	Yes
    
    WANTLIB += c crypto log4cplus m pthread ssl ${COMPILER_LIBCXX}
    
    SITES=		${SITE_ISC:=kea/${VERSION}/}
    
    LIB_DEPENDS=	devel/boost \
    		devel/log4cplus
    BUILD_DEPENDS=	devel/bison \
    		devel/boost
    
    FLAVOR?=
    # postgresql flavor doesn't build with boost >= 1.87
    # /usr/local/include/boost/lexical_cast/detail/inf_nan.hpp:115:21: error: no matching function for call to 'signbit'
    FLAVORS=	mysql# postgresql
    DEBUG_PACKAGES=	${BUILD_PACKAGES}
    
    FAKE_FLAGS=	sysconfdir=${PREFIX}/share/examples
    
    CONFIGURE_STYLE= gnu
    CONFIGURE_ARGS+= --with-openssl=/usr \
                     --with-boost-lib-dir=${LOCALBASE}/lib \
    		 --enable-generate-parser \
    		 --enable-perfdhcp
    
    USE_GMAKE=	Yes
    LIBTOOL_FLAGS=	--tag=disable-static
    
    COMPILER=	base-clang ports-gcc
    # inherited from the devel/log4cplus depencency
    CXXFLAGS_base-clang=	-std=c++14
    
    .include <bsd.port.arch.mk>
    
    .if ${FLAVOR:Mmysql}
    CONFIGURE_ARGS+= --with-mysql=${LOCALBASE}/bin/mysql_config
    WANTLIB+=	 mariadb z
    LIB_DEPENDS+=	 databases/mariadb
    .else
    RMFILES+=	share/doc/kea/examples/kea[46]/*mysql* \
    		share/kea/scripts/mysql
    .endif
    
    .if ${FLAVOR:Mpostgresql}
    # requires include/postgresql/server/utils/errcodes.h
    BUILD_DEPENDS+=	 databases/postgresql,-server
    CONFIGURE_ARGS+= --with-pgsql=${LOCALBASE}/bin/pg_config
    WANTLIB+=	 pq
    LIB_DEPENDS+=	 databases/postgresql
    .else
    RMFILES+=	share/doc/kea/examples/kea[46]/*pgsql* \
    		share/kea/scripts/pgsql
    .endif
    
    pre-configure:
    	sed -i -e 's,"socket-name": "/tmp/,"socket-name": "@localstatedir@/run/kea/,' \
    	    ${WRKSRC}/src/bin/keactrl/*.conf.pre
    
    pre-install:
    	mkdir -p ${PREFIX}/share/examples/kea
    
    post-install:
    .for i in ${RMFILES}
    	rm -r ${PREFIX}/$i
    .endfor
    
    .include <bsd.port.mk>