blob: d0cca75656e046d42c5c63ccd3ab787d255bfbdc (
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
|
# New ports collection makefile for: policyd2
# Date created: 2 December 2008
# Whom: Chifeng QU <chifeng@gmail.com>
#
# $FreeBSD$
#
PORTNAME= policyd2
PORTVERSION= 2.0.11
PORTREVISION= 1
CATEGORIES= mail
MASTER_SITES= http://devlabs.linuxassist.net/attachments/download/187/
DISTNAME= cluebringer-${PORTVERSION}
MAINTAINER= chifeng@gmail.com
COMMENT= Policyd v2 is a multi-platform policy server for popular MTAs
RUN_DEPENDS= p5-Net-Server>=0:${PORTSDIR}/net/p5-Net-Server \
p5-Net-CIDR>=0:${PORTSDIR}/net-mgmt/p5-Net-CIDR \
p5-Config-IniFiles>=0:${PORTSDIR}/devel/p5-Config-IniFiles \
p5-Cache-FastMmap>=0:${PORTSDIR}/devel/p5-Cache-FastMmap
USE_PERL5= yes
USE_PHP= yes
NO_BUILD= yes
USE_RC_SUBR= policyd2.sh
BINMODE= 0755
WEBUIDIR= ${PREFIX}/www/policyd
PORTDOCS= AUTHORS ChangeLog INSTALL TODO WISHLIST
PORTDATA= *
OPTIONS= MYSQL "Use MySQL support" On \
PostgreSQL "Use PostgreSQL support" Off \
SQLite "Use SQLite support" Off
.include <bsd.port.pre.mk>
USE_PHP= pdo_mysql
.if defined(WITH_MYSQL)
RUN_DEPENDS+= p5-DBD-mysql>=0:${PORTSDIR}/databases/p5-DBD-mysql
.endif
.if defined(WITH_SQLite)
RUN_DEPENDS+= p5-DBD-SQLite>=0:${PORTSDIR}/databases/p5-DBD-SQLite
.endif
.if defined(WITH_PostgreSQL)
RUN_DEPENDS+= p5-DBD-Pg>=0:${PORTSDIR}/databases/p5-DBD-Pg
.endif
post-patch:
@${REINPLACE_CMD} 's|/etc|${PREFIX}/etc|' ${WRKSRC}/cbpadmin \
${WRKSRC}/cbpolicyd
do-install:
@${INSTALL} -d ${WEBUIDIR} ${SITE_PERL}/cbp
@cd ${WRKSRC}/webui && ${COPYTREE_SHARE} \* ${WEBUIDIR}
@cd ${WRKSRC}/cbp && ${COPYTREE_SHARE} \* ${SITE_PERL}/cbp
${INSTALL_SCRIPT} ${WRKSRC}/cbpadmin ${PREFIX}/bin
${INSTALL_SCRIPT} ${WRKSRC}/cbpolicyd ${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/cluebringer.conf ${PREFIX}/etc/cluebringer.conf.sample
post-install:
@if [ ! -f ${PREFIX}/etc/cluebringer.conf ]; then \
${INSTALL_DATA} -m 666 ${PREFIX}/etc/cluebringer.conf.sample ${PREFIX}/etc/cluebringer.conf ;\
fi
.if !defined(NOPORTDATA)
@${INSTALL} -d ${DATADIR}
@cd ${WRKSRC} && ${COPYTREE_SHARE} contrib ${DATADIR}
@cd ${WRKSRC} && ${COPYTREE_SHARE} database ${DATADIR}
.endif
.if !defined(NOPORTDOCS)
@${INSTALL} -d ${DOCSDIR}
@cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
.endif
@${ECHO_MSG}
@${ECHO_MSG} "Please check INSTALL file to configure!"
@${ECHO_MSG}
.include <bsd.port.post.mk>
|