summaryrefslogtreecommitdiff
path: root/security/openfwtk/Makefile
blob: 08661ede3b32db0ad8d38a8cd7323f9291206270 (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
# New ports collection makefile for:	openfwtk
# Date created:				12 Oct 2007
# Whom:					Anton Karpov <toxa@toxahost.ru>
#
# $FreeBSD$

PORTNAME=	openfwtk
PORTVERSION=	2.0
CATEGORIES=	security
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/Release%20${PORTVERSION}
DISTNAME=${PORTNAME}${PORTVERSION}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Application proxy toolkit which inherits the ideology of TIS fwtk

WRKSRC=	${WRKDIR}/fwtk
WRKSRC_WATCH=	${WRKDIR}/fw_watch
WRKSRC_MILTER=	${WRKDIR}/libci_milter

OPTIONS=	WATCH "Install fw-watch GUI (require TCL/TK!)" off

SUB_FILES=	pkg-message
MANCOMPRESSED=	no

.include <bsd.port.pre.mk>

.if defined(WITH_WATCH)
PLIST_SUB+=	WATCH=""
RUN_DEPENDS+=	wish8.4:${PORTSDIR}/x11-toolkits/tk84
.else
PLIST_SUB+=	WATCH="@comment "
.endif

BUILD_DIRS=	${WRKSRC_MILTER} ${WRKSRC}

do-build:
.for i in ${BUILD_DIRS}
	(cd ${WRKDIR}/${i}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${ALL_TARGET})
.endfor

post-build:
	@${REINPLACE_CMD} -e 's|/etc/openfwtk.conf|${PREFIX}/etc/openfwtk.conf|g' \
		${WRKSRC}/reports/summ_resources.sh ${WRKSRC}/reports/daily_report \
		${WRKSRC}/reports/frequentcheck.sh ${WRKSRC}/reports/frequentcheck \
		${WRKSRC}/auth/authadduser.sh ${WRKSRC}/squid-gw/squid-gw.restart \
		${WRKSRC}/reports/daily_report ${WRKSRC}/reports/frequentcheck
pre-install:
	${MKDIR} ${ETCDIR}
post-install:
.if defined(WITH_WATCH)
	${MKDIR} ${PREFIX}/share/fw_watch
	@${REINPLACE_CMD} -e 's|/usr/bin/wish|${PREFIX}/bin/wish8.4|g' \
		${WRKSRC_WATCH}/fileselect.tcl \
		${WRKSRC_WATCH}/fw_watch \
		${WRKSRC_WATCH}/newsb.tcl \
		${WRKSRC_WATCH}/searchbox.tcl \
		${WRKSRC_WATCH}/taputils.tcl
	${CP} ${WRKSRC_WATCH}/fileselect.tcl ${PREFIX}/share/fw_watch/
	${CP} ${WRKSRC_WATCH}/fw_watch ${PREFIX}/share/fw_watch/
	${CP} ${WRKSRC_WATCH}/newsb.tcl ${PREFIX}/share/fw_watch/
	${CP} ${WRKSRC_WATCH}/searchbox.tcl ${PREFIX}/share/fw_watch/
	${CP} ${WRKSRC_WATCH}/taputils.tcl ${PREFIX}/share/fw_watch/
.endif
	${ECHO} "root@`hostname`" > ${ETCDIR}/admin
	@${CAT} ${PKGMESSAGE}

.include "Makefile.man"
.include <bsd.port.post.mk>