freebsd-ports/net/xbone/Makefile
Kris Kennaway a2d26cafb1 X-Bone dynamically deploys and manages Internet overlays to reduce
their configuration effort and increase network component sharing.
X-Bone discovers, configures, and monitors network resources to
create overlays over existing IP networks.

X-Bone uses two-layer IP in IP tunneled overlays and supports existing
applications and unmodified routing, multicast, and DNS services in
unmodified operating systems. X-Bone also support IPSec within overlays.

Submitted by:   Yu-Shun Wang <yushunwa@isi.edu>
2001-01-20 08:04:22 +00:00

75 lines
2.6 KiB
Makefile

# New ports collection makefile for: XBone
# Date created: 19 Jan 2001
# Whom: Yu-Shun Wang <xbone@isi.edu>
#
# $FreeBSD$
#
PORTNAME= XBone
PORTVERSION= 1.3.1
CATEGORIES= net
MASTER_SITES= http://www.isi.edu/xbone/software/x-bone/
MAINTAINER= yushunwa@isi.edu
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 320000
FORBIDDEN= "X-Bone does not support FreeBSD prior to 3.2"
.endif
USE_GMAKE= yes
USE_PERL5= yes
IS_INTERACTIVE= yes
NO_BUILD= yes
PERL_LIB= ${PREFIX}/lib/perl5/site_perl/${PERL_VER}
.if !defined(USA_RESIDENT) || ${USA_RESIDENT}!=YES && ${USA_RESIDENT}!=NO
pre-fetch:
@${ECHO} ""
@${ECHO} "ERROR! You must set variable USA_RESIDENT to YES, if you are"
@${ECHO} "USA resident or to NO, if you aren't USA resident to build"
@${ECHO} "this package. This option is required by other softwares"
@${ECHO} "X-Bone depends on."
@${FALSE}
.elif !defined(XBONE_OPTION) || ${XBONE_OPTION}!=RD && ${XBONE_OPTION}!=OMGUI
pre-fetch:
@${ECHO} ""
@${ECHO} "! You must set variable XBONE_OPTION=OMGUI or XBONE_OPTION=RD."
@${ECHO} " OMGUI: Install & configure the system for:"
@${ECHO} " (1) X-Bone Overlay Manager"
@${ECHO} " (2) X-Bone GUI files (html & CGI scripts)"
@${ECHO} " (3) X-Bone Overlay DNS server"
@${ECHO} " ** NORMALLY, YOU ONLY NEED ONE OMGUI-HOST TO RUN XBONE."
@${ECHO} ""
@${ECHO} " RD: Install the X-Bone Resource Daemon which enables the"
@${ECHO} " system to participate in overlays as either a host"
@${ECHO} " or a router."
@${ECHO} " ** YOU NEED MULTIPLE RD-HOSTS TO CONSTRUCT OVERLAYS."
@${FALSE}
.elif defined(XBONE_OPTION)
.if ${XBONE_OPTION}==RD
BUILD_DEPENDS= ${PERL_LIB}/Net/Netmask.pm:${PORTSDIR}/net/p5-Net-Netmask \
${PERL_LIB}/${PERL_ARCH}/Net/SSLeay.pm:${PORTSDIR}/security/p5-Net-SSLeay
INSTALL_TARGET= rd
PLIST= ${PKGDIR}/pkg-plist.rd
PKGDEINSTALL= ${PKGDIR}/pkg-deinstall.rd
.else
BUILD_DEPENDS= ${PREFIX}/sbin/httpsd:${PORTSDIR}/www/apache13-ssl\
${PERL_LIB}/CGI/Carp.pm:${PORTSDIR}/www/p5-CGI \
${PERL_LIB}/Mail/Sendmail.pm:${PORTSDIR}/mail/p5-Mail-Sendmail \
${PERL_LIB}/Net/Netmask.pm:${PORTSDIR}/net/p5-Net-Netmask\
${PERL_LIB}/File/CounterFile.pm:${PORTSDIR}/misc/p5-File-CounterFile \
${PERL_LIB}/${PERL_ARCH}/Net/SSLeay.pm:${PORTSDIR}/security/p5-Net-SSLeay
INSTALL_TARGET= omgui
MAKE_ARGS= PERL5=${PERL5} SYS=${SYS}
.endif
.endif
RUN_DEPENDS= ${PREFIX}/bin/ip-tun:${PORTSDIR}/net/ip-tun
MAN1= xb-pick.1
MAN5= XB_Defs.pm.5 Xbone_daemon.conf.5 Xbone_daemon.state.5
MAN8= X-Bone.8 xb-daemon.8 xb-overlay-manager.8 xb-config.8
.include <bsd.port.post.mk>