768dd7c392
- Pass maintainership to submitter PR: 166062 166105 166112 166113 166114 166115 166141 166154 166155 166156 Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> Feature safe: yes
57 lines
1.3 KiB
Makefile
57 lines
1.3 KiB
Makefile
# New ports collection makefile for: argus
|
|
# Date created: 26 November 1998
|
|
# Whom: Jonathan Hanna <jhanna@home.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= argus
|
|
PORTVERSION= 2.0.6
|
|
PORTREVISION= 1
|
|
CATEGORIES= net-mgmt security
|
|
MASTER_SITES= http://qosient.com/argus/src/ \
|
|
ftp://qosient.com/pub/argus/src/
|
|
|
|
MAINTAINER= 5u623l20@gmail.com
|
|
COMMENT= A generic IP network transaction auditing tool
|
|
|
|
PORTSCOUT= ignore:1 # This is the last version of 2.0.X branch
|
|
|
|
CONFLICTS= argus-3* argus-sasl-3*
|
|
|
|
.if defined(WITH_SASL)
|
|
LIB_DEPENDS+= sasl2.2:${PORTSDIR}/security/cyrus-sasl2
|
|
.endif
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/ragrep:${PORTSDIR}/net-mgmt/argus-clients
|
|
|
|
USE_BISON= build
|
|
GNU_CONFIGURE= true
|
|
CONFIGURE_ARGS= --exec-prefix=${PREFIX}
|
|
.if defined(WITH_SASL)
|
|
CONFIGURE_ARGS+= --with-sasl=${PREFIX}
|
|
.endif
|
|
|
|
DOCSDIR?= ${PREFIX}/share/doc/argus-2.0
|
|
|
|
MAN5= argus.5 argus.conf.5
|
|
MAN8= argus.8
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/argus_bpf ${PREFIX}/sbin/argus
|
|
${MKDIR} ${PREFIX}/argus/archive
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}/html/man
|
|
.for i in doc/html/man/*.html
|
|
${INSTALL_DATA} ${WRKSRC}/$i ${DOCSDIR}/html/man
|
|
.endfor
|
|
.endif
|
|
.if !defined(NOMAN)
|
|
.for i in ${MAN5}
|
|
${INSTALL_DATA} ${WRKSRC}/man/man5/$i ${PREFIX}/man/man5
|
|
.endfor
|
|
.for i in ${MAN8}
|
|
${INSTALL_DATA} ${WRKSRC}/man/man8/$i ${PREFIX}/man/man8
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|