mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
e6276cf282
ClamFS is a FUSE-based user-space file system for Linux with on-access anti-virus file scanning through clamd daemon Features - User-space file system - Configuration stored in XML files - FUSE used as file system back-end - Scan files using ClamAV - ScanCache speeds up file access - Sends mail to administrator when detect virus WWW: http://clamfs.sourceforge.net/ PR: 201063 Submitted by: Mageirias Anastasios <anastmag@gmail.com>, lightside@gmx.com
41 lines
840 B
Makefile
41 lines
840 B
Makefile
# Created by: Mageirias Anastasios <anastmag@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= clamfs
|
|
PORTVERSION= 1.0.1
|
|
CATEGORIES= security
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= anastmag@gmail.com
|
|
COMMENT= User-space fs with on-access antivirus scanning
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libccgnu2.so:devel/commoncpp \
|
|
libPocoNet.so:devel/poco-ssl \
|
|
librlog.so:devel/rlog
|
|
BUILD_DEPENDS= boost-libs>=1.33:devel/boost-libs
|
|
RUN_DEPENDS= clamd:security/clamav
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
USES= fuse
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include/boost/tr1
|
|
|
|
PLIST_FILES= bin/clamfs \
|
|
man/man1/clamfs.1.gz
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
DOCS_PORTDOCS= *
|
|
|
|
post-patch-DOCS-on:
|
|
@${REINPLACE_CMD} -e '/socket=/s/ctl/sock/' \
|
|
${WRKSRC}/doc/clamfs.xml
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/clamfs.xml ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|