aboutsummaryrefslogtreecommitdiffstats
path: root/security/webfwlog/Makefile
blob: 1699a4b9bc432a2bed3f92326bc2b2e14b633a7b (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
84
85
86
87
88
89
90
# New ports collection makefile for:   webfwlog
# Date created:        21 November 2004
# Whom:                Bob Hockney <zeus@ix.netcom.com>
#
# $FreeBSD$
#

PORTNAME=   webfwlog
PORTVERSION=    0.94
CATEGORIES= security
MASTER_SITES=   SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}

MAINTAINER= zeus@ix.netcom.com
COMMENT=    A web-based firewall log analyzer

OPTIONS=    MYSQL "Include MySQL Support" on \
        POSTGRESQL "Include PostgreSQL Support" off

GNU_CONFIGURE=  yes
CONFIGURE_ARGS+=--with-html-doc-root=${PREFIX}/${HTML_DOC_ROOT}
CONFIGURE_ARGS+=--enable-syslog

USE_PHP=    yes
WANT_PHP_WEB=   yes

# Set HTML_DOC_ROOT to your webserver's Document Root where you
# want to install webfwlog, relative to ${PREFIX}.

SUB_FILES=  pkg-message

PORTDOCS=   AUTHORS COPYING CREDITS ChangeLog INSTALL \
        README ReleaseNotes
PORTEXAMPLES=   *

.if defined(WITH_MYSQL)
USE_MYSQL=  yes
CONFIGURE_ARGS+=--with-mysql
.endif

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

do-install:
    @${MKDIR} ${WWWDIR}
    @${MKDIR} ${WWWDIR}/include/
    @(cd ${WRKSRC}/webfwlog/include/ && ${COPYTREE_SHARE} \* ${WWWDIR}/include/)
    ${INSTALL_PROGRAM} ${WRKSRC}/syslog/wfwl_syslog ${PREFIX}/bin/
    ${INSTALL_DATA} ${WRKSRC}/webfwlog/style.css ${WWWDIR}
    ${INSTALL_DATA} ${WRKSRC}/webfwlog/index.php ${WWWDIR}

post-install:
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}/mysql
    @${MKDIR} ${DOCSDIR}/pgsql
    @(cd ${WRKSRC}/mysql/ && ${COPYTREE_SHARE} \* ${DOCSDIR}/mysql/)
    @(cd ${WRKSRC}/pgsql/ && ${COPYTREE_SHARE} \* ${DOCSDIR}/pgsql/)
.for docs in ${PORTDOCS}
    ${INSTALL_DATA} ${WRKSRC}/${docs} ${DOCSDIR}
.endfor
.endif

.if !defined(NOPORTEXAMPLES)
    ${MKDIR} ${EXAMPLESDIR}
    ${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR}
.endif

    @if test -f ${PREFIX}/etc/webfwlog.conf; \
    then \
        ${CHOWN} :${WWWGRP} ${PREFIX}/etc/webfwlog.conf; \
        ${CHMOD} 0640 ${PREFIX}/etc/webfwlog.conf; \
    fi
    @${INSTALL_DATA} ${WRKSRC}/webfwlog.conf ${PREFIX}/etc/webfwlog.conf.sample
    @${CHOWN} :${WWWGRP} ${PREFIX}/etc/webfwlog.conf.sample
    @${CHMOD} 0640 ${PREFIX}/etc/webfwlog.conf.sample
    @if test -f ${PREFIX}/etc/webfwlog.conf && \
        test -f ${PREFIX}/etc/webfwlog.conf.sample && \
        test "`diff ${PREFIX}/etc/webfwlog.conf ${PREFIX}/etc/webfwlog.conf.sample`" ; \
    then :; \
    else \
        ${RM} -f ${PREFIX}/etc/webfwlog.conf; \
    fi
    @${RM} -f ${PREFIX}/etc/webfwlog.conf.new

    @${ECHO}
    @${CAT} ${PKGMESSAGE}
    @${ECHO}

.include <bsd.port.mk>