blob: 6bacaf1197214350f3ace6e07de4552436315acc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Ports collection makefile for: gated
# Date created: 29 October 1994
# Whom: pst
#
# $FreeBSD$
#
PORTNAME= gated
PORTVERSION= 3.6.0
CATEGORIES= net
MASTER_SITES= http://www.gated.org/gated-web/code/source/gated/
DISTNAME= ${PORTNAME}-pub
MAINTAINER= dec@FreeBSD.org
WRKSRC= ${WRKDIR}/${PORTNAME}-public-3_6
GNU_CONFIGURE= yes
RESTRICTED= "license required for use"
# use this option, if log_in_vain="YES"
.if defined(WITHOUT_SMUX)
CONFIGURE_ARGS+= --disable-smux
.endif
post-configure:
cd ${WRKSRC} && ${MAKE} depend
do-install:
.for file in gated/gated gdc/gdc ospf_monitor/ospf_monitor ripquery/ripquery
${INSTALL_PROGRAM} ${WRKSRC}/src/${file} ${PREFIX}/sbin
.endfor
.include <bsd.port.mk>
|