blob: 9d724258a0a4106246e13b9a577358ff13454994 (
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
|
# New ports collection makefile for: c-icap
# Date created: 30 January 2006
# Whom: Elisey Savateev <b3k@mail.ru>
#
# $FreeBSD$
#
PORTNAME= c-icap
PORTVERSION= 220505
PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
http://bio3k.softboard.ru/uploads/arch/
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTNAME= c_icap-${PORTVERSION}
MAINTAINER= b3k@mail.ru
COMMENT= An implementation of an ICAP server
GNU_CONFIGURE= yes
INSTALLS_SHLIB= yes
USE_RC_SUBR= c_icap.sh
USE_AUTOTOOLS= libtool:15
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
LDCONFIG_DIRS= %%PREFIX%%/lib %%PREFIX%%/lib/c_icap
SUB_FILES= pkg-install pkg-deinstall
OPTIONS= CLAMAV "With srv_clamav service" on
# PERL "With Perl support" off
.include <bsd.port.pre.mk>
# Perl support not ready yet. Try to contact author or hack it by yourself.
WITHOUT_PERL= yes
.if defined(WITH_PERL)
USE_PERL5= yes
PLIST_SUB+= PERL=""
CONFIGURE_ARGS+= --with-perl=${PERL}
.else
PLIST_SUB+= PERL="@comment "
CONFIGURE_ARGS+= --without-perl
.endif
.if defined(WITH_CLAMAV)
LIB_DEPENDS+= clamav.1:${PORTSDIR}/security/clamav
PLIST_SUB+= CLAMAV=""
CONFIGURE_ARGS+= --with-clamav
CONFIGURE_ENV= CFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
.else
PLIST_SUB+= CLAMAV="@comment "
CONFIGURE_ARGS+= --without-clamav
.endif
post-extract:
@${MV} ${WRKSRC}/c-icap.conf ${WRKSRC}/c-icap.conf.default
@${MV} ${WRKSRC}/c-icap.conf.in ${WRKSRC}/c-icap.conf.default.in
@${MV} ${WRKSRC}/c-icap.magic ${WRKSRC}/c-icap.magic.default
post-patch:
@${REINPLACE_CMD} -e 's|User wwwrun|User cicap|g' \
-e 's|Group nobody|Group cicap|g' \
${WRKSRC}/c-icap.conf.default ${WRKSRC}/c-icap.conf.default.in
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' \
-e 's|icap_stretch_CFLAGS = -Iinclude/|icap_stretch_CFLAGS = -Iinclude/ ${PTHREAD_CFLAGS}|g' \
${WRKSRC}/Makefile.in ${WRKSRC}/Makefile.am
.if !defined(WITH_PERL)
@${REINPLACE_CMD} -e 's|\(^Module perl\)|\#\1|g' \
${WRKSRC}/c-icap.conf.default.in
.endif
.if !defined(WITH_CLAMAV)
@${REINPLACE_CMD} -e 's|\(^Service antivirus\)|\#\1|g' \
-e 's|\(^srv_clamav\)|\#\1|g' \
${WRKSRC}/c-icap.conf.default.in
.endif
pre-install:
@${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL
post-install:
@[ -f ${PREFIX}/etc/c-icap.conf ] || \
${CP} -p ${PREFIX}/etc/c-icap.conf.default ${PREFIX}/etc/c-icap.conf
@[ -f ${PREFIX}/etc/c-icap.magic ] || \
${CP} -p ${PREFIX}/etc/c-icap.magic.default ${PREFIX}/etc/c-icap.magic
@${SH} ${PKGINSTALL} ${PREFIX} POST-INSTALL
.include <bsd.port.post.mk>
|