mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-19 08:13:21 +00:00
4b493d3309
Major changes: * Bug #125: ISTag is not quoted * Fix multiple bugs with 206 supported requests * Bug fix: Kids are not exiting if the parent process is gone * Bug fix: c-icap crashes on reconfigure * Fix "Bug in the service 'xxx'. Please report to the service author..."
33 lines
745 B
Makefile
33 lines
745 B
Makefile
# Created by: Martin Matuska <mm@FreeBSD.org>
|
|
|
|
PORTNAME= c-icap
|
|
PORTVERSION= 0.5.5
|
|
CATEGORIES= www security
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}${PKGNAMESUFFIX}/0.5.x/
|
|
PKGNAMESUFFIX= -modules
|
|
DISTNAME= c_icap_modules-${PORTVERSION}
|
|
|
|
MAINTAINER= rodrigo@FreeBSD.org
|
|
COMMENT= Modules for c-icap: virus_scan and srv_url_check
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libicapapi.so:www/c-icap \
|
|
libclamav.so:security/clamav
|
|
|
|
USES= libtool
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-static \
|
|
--with-c-icap=${LOCALBASE} \
|
|
--with-clamav=${LOCALBASE}
|
|
INSTALL_TARGET= install-strip
|
|
DATADIR= ${PREFIX}/share/c_icap
|
|
|
|
CFLAGS+= -DHAVE_STRNSTR
|
|
|
|
pre-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/etc/c-icap
|
|
|
|
.include <bsd.port.mk>
|