200ed62559
* Changes in zebra-0.92a * Changes in bgpd ** Fix "^$" community list bug. ** Below command's Address Family specific configurations are added nexthop-self route-reflector-client route-server-client soft-reconfiguration inbound * Changes in zebra ** Treat kernel type routes as EGP routes.
57 lines
1.4 KiB
Makefile
57 lines
1.4 KiB
Makefile
# $OpenBSD: Makefile,v 1.22 2001/08/21 10:10:20 peter Exp $
|
|
# KAME Id: Makefile,v 1.5 1999/09/13 16:27:41 itojun Exp
|
|
# Originally by: peter.galbavy@knowledge.com
|
|
|
|
COMMENT= "multi-threaded routing daemon"
|
|
|
|
DISTNAME= zebra-0.92a
|
|
CATEGORIES= net
|
|
NEED_VERSION= 1.435
|
|
MASTER_SITES= ftp://ftp.zebra.org/pub/zebra/ \
|
|
ftp://ftp.knowledge.com/pub/mirrors/zebra/
|
|
|
|
HOMEPAGE= http://www.zebra.org/
|
|
|
|
MAINTAINER= Jun-ichiro itojun Hagino <itojun@itojun.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
# you might need debugging, it's a developer release !
|
|
#CFLAGS+= -g
|
|
|
|
SYSCONFDIR= /etc/zebra
|
|
SEPARATE_BUILD= concurrent
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --enable-vtysh
|
|
CONFIGURE_ENV= LIBS=-lcurses
|
|
|
|
FLAVORS= snmp
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Msnmp}
|
|
LIB_DEPENDS= snmp.42::net/ucd-snmp
|
|
CONFIGURE_ARGS+= --enable-snmp
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-snmp
|
|
.endif
|
|
|
|
post-extract:
|
|
.for f in vtysh.1 bgpd.8 ospf6d.8 ospfd.8 ripd.8 ripngd.8 zebra.8
|
|
@cd ${WRKSRC}/doc; sed \
|
|
-e s#/usr/local/etc#@sysconfdir@#g \
|
|
-e s#/usr/local/sbin#@prefix@/sbin#g \
|
|
${f} > ${f}.in && \
|
|
rm -f ${f}
|
|
.endfor
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/zebra
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/zebra
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/zebra
|
|
${INSTALL_DATA} ${WRKINST}/etc/zebra/* ${PREFIX}/share/examples/zebra
|
|
|
|
.include <bsd.port.mk>
|