45 lines
1.0 KiB
Makefile
45 lines
1.0 KiB
Makefile
# $OpenBSD: Makefile,v 1.5 2006/10/18 23:18:02 naddy Exp $
|
|
|
|
COMMENT= "eXtensible Open Router Platform"
|
|
|
|
VERSION= 1.3
|
|
DISTNAME= xorp-${VERSION}
|
|
CATEGORIES= net
|
|
HOMEPAGE= http://www.xorp.org/
|
|
|
|
# BSD
|
|
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}/
|
|
|
|
WANTLIB= c crypto curses m stdc++
|
|
|
|
# No BUILD_DEPENDS:
|
|
# Python only used to rebuild already included file with no changes.
|
|
|
|
USE_GMAKE= Yes
|
|
USE_LIBTOOL= Yes
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
.if !defined(PACKAGING)
|
|
PREFIX=${LOCALBASE}/xorp
|
|
.endif
|
|
|
|
CONFIGURE_ARGS= --enable-optimize
|
|
MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC}/config ${WRKSRC}/cli/libtecla
|
|
|
|
REGRESS_DEPENDS= ::shells/bash \
|
|
::lang/python/2.4
|
|
|
|
# some regression tests must be run as root
|
|
do-regress:
|
|
@ln -s ${LOCALBASE}/bin/python2.4 ${WRKDIR}/bin
|
|
@cd ${WRKBUILD}; ${SUDO} ${MAKE_PROGRAM} ${REGRESS_TARGET}
|
|
|
|
.include <bsd.port.mk>
|