FRRouting ========= FRR is free software that implements and manages various IPv4 and IPv6 routing protocols. It runs on nearly all distributions of Linux and BSD as well as Solaris and supports all modern CPU architectures. FRR currently supports the following protocols: * BGP * OSPFv2 * OSPFv3 * RIPv1 * RIPv2 * RIPng * IS-IS ...
25 lines
544 B
Makefile
25 lines
544 B
Makefile
# $NetBSD: options.mk,v 1.1 2020/12/10 16:43:24 kardel Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.frr
|
|
PKG_SUPPORTED_OPTIONS= doc
|
|
PKG_SUGGESTED_OPTIONS= doc
|
|
|
|
PLIST_VARS+= doc
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
# Package-specific option-handling
|
|
|
|
###
|
|
### doc/man support
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mdoc)
|
|
USE_TOOLS+= makeinfo
|
|
CONFIGURE_ARGS+= --enable-doc-html
|
|
CONFIGURE_ARGS+= --infodir=${PREFIX}/info
|
|
TOOL_DEPENDS+= ${PYPKGPREFIX}-sphinx>=2.4.4:../../textproc/py-sphinx
|
|
PLIST.doc= yes
|
|
INFO_FILES= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-doc
|
|
.endif
|