freebsd-ports/net/xorp/Makefile
Bruce M Simpson 1c94c4a26c Add patch for OSPF security advisory.
PR:		108905
Submitted by:	Nick Barkas
2007-02-07 23:03:48 +00:00

107 lines
2.9 KiB
Makefile

# New ports collection makefile for: xorp
# Date created: 22nd September 2006
# Whom: Bruce M Simpson <bms@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= xorp
PORTVERSION= 1.3
PORTREVISION= 2
CATEGORIES= net
MASTER_SITES= http://www.xorp.org/releases/${PORTVERSION}/ \
http://www2.xorp.org/releases/${PORTVERSION}/ \
http://www5.xorp.org/releases/${PORTVERSION}/ \
http://www3.xorp.org/releases/${PORTVERSION}/
DISTNAME= ${PORTNAME}-${PORTVERSION}
# Patch for http://www.xorp.org/advisories/XORP_SA_06:01.ospf.txt.
PATCH_SITES= http://www.xorp.org/patches/SA-06:01/
PATCHFILES= xorp_sa_06:01.ospf_1.3.patch:DEFAULT
MAINTAINER= bms@FreeBSD.org
COMMENT= The eXtensible Open Router Platform
NOMAN= defined
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS= --prefix=${PREFIX}/${PORTNAME} \
--with-comment='FreeBSD port: ${PKGNAME}' \
--with-openssl=/usr \
${CONFIGURE_TARGET}
CONFIGURE_ENV+= CXXFLAGS="-Wno-uninitialized"
OPTIONS= \
ADVMCAST "Build with Advanced Multicast API" On \
IPV6 "Build with IPv6 support" On \
SNMP "Build with SNMP MIB support" Off \
OPTIMIZATION "Build with optimization" Off \
CHECK "Build with regression test dependencies " Off \
DEBUGGING "Enable debugging" Off \
PROFILING "Enable profiling" Off
pre-everything::
.if !defined(PREFIX) || ${PREFIX} == "/usr/local"
@${ECHO_MSG} "XORP does not currently follow the hier(7) filesystem layout."
@${ECHO_MSG} "It will therefore install all its directories relative to ${PREFIX}."
@${ECHO_MSG} "If you do not want this, hit ^C now and set PREFIX in the"
@${ECHO_MSG} "build environment to something other than ${PREFIX}."
.endif
.include <bsd.port.pre.mk>
.if ${ARCH} == "ia64" || ${ARCH} == "sparc64"
BROKEN= Does not compile on ia64 or sparc64
.endif
XORP_GROUP= xorp
USE_RC_SUBR= xorp
.if defined(WITH_ADVMCAST)
CONFIGURE_ARGS+= --enable-advanced-mcast-api
.endif
.if defined(WITH_IPV6)
CONFIGURE_ARGS+= --enable-ipv6
.else
CONFIGURE_ARGS+= --disable-ipv6
.endif
.if defined(WITH_SNMP)
BUILD_DEPENDS= ${LOCALBASE}/sbin/snmpd:${PORTSDIR}/net-mgmt/net-snmp
CONFIGURE_ARGS+= --with-snmp \
--with-path-to-snmpd=${LOCALBASE}/sbin \
--with-path-to-net-snmpd-config=${LOCALBASE}/bin/net-snmp-config \
--enable-shared
PLIST_SUB+= XORP_SNMP=""
.else
PLIST_SUB+= XORP_SNMP="@comment "
.endif
.if defined(WITH_OPTIMIZATION)
CONFIGURE_ARGS+= --enable-optimize
.endif
# Bash and Python are only required if running the regression tests.
.if defined(WITH_CHECK)
BUILD_DEPENDS= ${LOCALBASE}/bin/python:${PORTSDIR}/lang/python \
${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash
.endif
.if defined(WITH_DEBUGGING)
CONFIGURE_ARGS+= --enable-debug-msgs --enable-debug-fnames
.endif
.if defined(WITH_PROFILING)
CONFIGURE_ARGS+= --enable-profile
.endif
post-install:
${SETENV} ${SCRIPTS_ENV} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
.include <bsd.port.post.mk>