aboutsummaryrefslogtreecommitdiffstats
path: root/security/barnyard2/Makefile
blob: 7efeb3c42d14d56c82689b9e75e19e90357202b1 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# New ports collection makefile for:    barnyard2
# Date created:             28 Aug 2009
# Whom:                 pauls
#
# $FreeBSD$
#

PORTNAME=   barnyard2
PORTVERSION=    1.9
PORTREVISION=   2
CATEGORIES= security
MASTER_SITES=   http://www.securixlive.com/download/barnyard2/

MAINTAINER= pauls@utdallas.edu
COMMENT=    An output system for Snort or Suricata that parses unified2 files

OPTIONS=    MYSQL "Enable MySQL support" on \
        POSTGRESQL "Enable PostgreSQL support" off \
        SNORT "Depend on security/snort" off \
        SURICATA "Depend on security/suricata" off
.if !defined(SLAVE)
OPTIONS+=   TCL "Enable TCL support" off
.endif

USE_RC_SUBR=    barnyard2.sh
GNU_CONFIGURE=  yes
CONFIGURE_ENV=  LDFLAGS="${LDFLAGS}"
SUB_FILES=  pkg-message

PORTDOCS1=  README
PORTDOCS2=  INSTALL README.aruba README.database README.sguil
PORTDOCS=   ${PORTDOCS1} ${PORTDOCS2}

.include <bsd.port.pre.mk>

.if defined(WITH_MYSQL)
USE_MYSQL=      yes
CONFIGURE_ARGS+=    --with-mysql \
            --with-mysql-includes=${LOCALBASE}/include/mysql \
            --with-mysql-libraries=${LOCALBASE}/lib/mysql
.endif

.if defined(WITH_POSTGRESQL)
USE_PGSQL=      yes
CONFIGURE_ARGS+=    --with-postgresql
.endif

.if defined(WITH_SNORT)
RUN_DEPENDS+=   ${LOCALBASE}/bin/snort:${PORTSDIR}/security/snort
.endif

.if defined(WITH_SURICATA)
RUN_DEPENDS+=   ${LOCALBASE}/bin/suricata:${PORTSDIR}/security/suricata
.endif

.if defined(WITH_TCL)
USE_TCL=        yes
CONFIGURE_ARGS+=    --with-tcl=${PREFIX}/lib/tcl8.4
LIB_DEPENDS+=       tcl84.1:${PORTSDIR}/lang/tcl84
.endif

pre-install:
    ${CHMOD} 744 ${WRKSRC}/install-sh

post-patch:
    @${REINPLACE_CMD} 's|/etc|${LOCALBASE}/etc|' \
        ${WRKSRC}/etc/barnyard2.conf

post-install:

.for f in barnyard2.conf
    [ -f ${PREFIX}/etc/${f} ] || \
    ${INSTALL_DATA} ${WRKSRC}/etc/${f} ${PREFIX}/etc/${f}
.endfor
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
    cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS1} ${DOCSDIR}
    cd ${WRKSRC}/doc && ${INSTALL_DATA} ${PORTDOCS2} ${DOCSDIR}
.endif

    @${CAT} ${PKGMESSAGE}

.include <bsd.port.post.mk>