openbsd-ports/net/quagga/Makefile
sthen ef738c2300 - SECURITY update to 0.99.18 (pointed out by Brad)
CVE-2010-1674 null pointer deref with malformed BGP Extended Communities
CVE-2010-1675 BGP session reset with malformed AS-path

- install info documentation

- patches added: build fixes from upstream
2011-03-26 12:00:53 +00:00

63 lines
1.5 KiB
Makefile

# $OpenBSD: Makefile,v 1.19 2011/03/26 12:00:53 sthen Exp $
COMMENT= multi-threaded routing daemon
DISTNAME= quagga-0.99.18
SHARED_LIBS= ospf 0.0 \
zebra 0.0
CATEGORIES= net
MASTER_SITES= http://www.quagga.net/download/
HOMEPAGE= http://www.quagga.net/
# GPLv2+
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= c curses m readline termcap
STATEDIR?= /var/quagga
SUBST_VARS= CONFDIR STATEDIR
BUILD_DEPENDS= lang/gawk
USE_GMAKE= Yes
USE_GROFF = Yes
CONFDIR= ${SYSCONFDIR}/quagga
SEPARATE_BUILD= concurrent
CONFIGURE_STYLE=gnu old
CONFIGURE_ARGS+=--includedir=${LOCALBASE}/include/quagga \
--sysconfdir=${CONFDIR} \
--localstatedir=${STATEDIR} \
--enable-user=_quagga \
--enable-group=_quagga \
--enable-vty-group=_quagga \
--enable-vtysh \
--mandir=${LOCALBASE}/man \
--infodir=${LOCALBASE}/info
CONFIGURE_ENV= LIBS=-lcurses
FAKE_FLAGS= exampledir='${PREFIX}/share/examples/quagga'
# XXX broken
#FLAVORS= snmp
FLAVOR?=
.if ${FLAVOR:L:Msnmp}
LIB_DEPENDS= net/net-snmp
CONFIGURE_ARGS+= --enable-snmp
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
.else
CONFIGURE_ARGS+= --disable-snmp
.endif
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/quagga
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/quagga
${INSTALL_DATA} ${WRKSRC}/SERVICES ${PREFIX}/share/doc/quagga
${INSTALL_DATA} ${WRKSRC}/doc/quagga.info* ${PREFIX}/info
.include <bsd.port.mk>