blob: 656fea6d84d35df7bd7103fa8cf1d15727f9ea27 (
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
35
|
# $FreeBSD: head/security/ossec-hids/Makefile 484537 2018-11-09 18:52:21Z swills $
PORTNAME= ossec-hids
PORTVERSION= 3.1.0
PORTREVISION=
CATEGORIES= security
MAINTAINER= dominik.lisiak@bemsoft.pl
COMMENT= Security tool to monitor and check logs and intrusions
LICENSE= GPLv2
RUN_DEPENDS= ossec-hids-${OSSEC_TYPE}>=${PORTVERSION}:security/ossec-hids-${OSSEC_TYPE}
USES= metaport
OPTIONS_DEFINE= CONFIG
OPTIONS_SINGLE= G_TYPE
OPTIONS_SINGLE_G_TYPE= LOCAL AGENT SERVER
OPTIONS_DEFAULT= CONFIG LOCAL
CONFIG_DESC= Install configuration manager and samples
G_TYPE_DESC= Installation type
LOCAL_DESC= Analizes local data only (standalone)
AGENT_DESC= Sends local data to the server for analysis
SERVER_DESC= Analizes local data and data received from multiple agents
CONFIG_VARS= RUN_DEPENDS+=ossec-hids-${OSSEC_TYPE}-config>=${PORTVERSION}:security/ossec-hids-${OSSEC_TYPE}-config
LOCAL_VARS= OSSEC_TYPE=local
AGENT_VARS= OSSEC_TYPE=agent
SERVER_VARS= OSSEC_TYPE=server
.include <bsd.port.mk>
|