Edit

IABSD.fr/ports/net/lldpd/Makefile

Branch :

  • Show log

    Commit

  • Author : sthen
    Date : 2022-03-07 21:36:41
    Hash : a98e0e66
    Message : remove rcs IDs in ports that I maintain

  • net/lldpd/Makefile
  • COMMENT=	LLDP (802.1ab)/CDP/EDP/SONMP/FDP daemon and SNMP subagent
    
    DISTNAME=	lldpd-1.0.13
    DISTFILES=	${DISTNAME}${EXTRACT_SUFX} \
    		LLDP-MIB-200505060000Z.mib:0
    EXTRACT_ONLY=	${DISTNAME}${EXTRACT_SUFX}
    
    SHARED_LIBS +=	lldpctl                   2.3 # 13.0
    
    CATEGORIES=	net
    
    MAINTAINER=	Stuart Henderson <stu.ports@spacehopper.org>
    
    HOMEPAGE=	https://lldpd.github.io/
    
    # Program: ISC. Bundled MIB is from IEEE 802.1AB-2005; "Users of this
    # standard may freely reproduce the MIB contained in this subclause so
    # that it can be used for its intended purpose."
    PERMIT_PACKAGE=	Yes
    
    WANTLIB += c curses event_core event_extra pthread readline
    
    MASTER_SITES=	https://media.luffy.cx/files/lldpd/
    MASTER_SITES0=	https://www.ieee802.org/1/files/public/MIBs/
    
    FLAVORS=	snmp
    FLAVOR?=
    
    LIB_DEPENDS=	devel/libevent2
    
    SEPARATE_BUILD=	Yes
    USE_GMAKE=	Yes
    DEBUG_PACKAGES=	${BUILD_PACKAGES}
    
    CONFIGURE_STYLE=	gnu
    CONFIGURE_ARGS+=	--with-privsep-chroot=/var/run/lldpd \
    			--without-json \
    			--without-xml
    # OpenBSD already enables PIE by default where it works; don't force
    # on remaining arch. But do keep -fstack-protector-all which the default
    # --with-hardening also adds.
    CONFIGURE_ARGS+=	--without-hardening
    CFLAGS+=		-fstack-protector-all
    CONFIGURE_ENV=		CPPFLAGS="${CPPFLAGS}" \
    			LDFLAGS="${LDFLAGS}"
    FAKE_FLAGS=		sysconfdir="${PREFIX}/share/examples/lldpd"
    
    CPPFLAGS+=		-I${LOCALBASE}/include
    LDFLAGS+=		-L${LOCALBASE}/lib
    
    .if ${FLAVOR:Msnmp}
    CONFIGURE_ARGS+=	--with-snmp
    LIB_DEPENDS+=		net/net-snmp
    WANTLIB += netsnmp netsnmpagent netsnmpmibs
    WANTLIB += crypto kvm m perl
    
    post-install:
    	${INSTALL_DATA_DIR} ${PREFIX}/share/snmp/mibs/
    	${INSTALL_DATA} ${FULLDISTDIR}/LLDP-MIB-200505060000Z.mib \
    		${PREFIX}/share/snmp/mibs/LLDP-MIB.txt
    .endif
    
    .include <bsd.port.mk>