56 lines
1.4 KiB
Makefile
56 lines
1.4 KiB
Makefile
# $OpenBSD: Makefile,v 1.17 2010/11/19 22:31:39 espie Exp $
|
|
|
|
COMMENT-main= eXtensible Open Router Platform
|
|
|
|
VERSION= 1.6
|
|
DISTNAME= xorp-${VERSION}
|
|
PKGNAME-main= ${DISTNAME}
|
|
CATEGORIES= net
|
|
HOMEPAGE= http://www.xorp.org/
|
|
|
|
BROKEN-sparc64= ICE in route_table_fanout.cc
|
|
BROKEN-arm= xorpsh_print_routes.cc fails
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://www.xorp.org/releases/${VERSION}/ \
|
|
http://www2.xorp.org/releases/${VERSION}/ \
|
|
http://www3.xorp.org/releases/${VERSION}/
|
|
|
|
MULTI_PACKAGES= -main
|
|
PREFIX= ${LOCALBASE}/xorp
|
|
PREFIX-main= ${LOCALBASE}
|
|
|
|
WANTLIB= c crypto curses m pcap stdc++
|
|
|
|
# No BUILD_DEPENDS:
|
|
# Python only used to rebuild already included file with no changes.
|
|
|
|
USE_GMAKE= Yes
|
|
USE_LIBTOOL= Yes
|
|
LIBTOOL_FLAGS= --tag=disable-shared
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= --enable-optimize --disable-debug
|
|
MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC}/config ${WRKSRC}/cli/libtecla
|
|
|
|
REGRESS_DEPENDS= shells/bash \
|
|
lang/python/2.5
|
|
|
|
# some regression tests must be run as root
|
|
do-regress:
|
|
@ln -s ${LOCALBASE}/bin/python2.5 ${WRKDIR}/bin/python
|
|
@cd ${WRKBUILD}; ${SUDO} ${SETENV} ${MAKE_ENV} \
|
|
${MAKE_PROGRAM} ${ALL_REGRESS_FLAGS} ${REGRESS_TARGET}
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${WRKINST}/${PREFIX-main}/share/examples/xorp
|
|
cd ${WRKSRC}/rtrmgr/config; ${INSTALL_DATA} README *.boot \
|
|
${WRKINST}/${PREFIX-main}/share/examples/xorp
|
|
|
|
.include <bsd.port.mk>
|