mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
5e2bc95fa1
- use included libtool (seems heavily patched) - make packageable and include a working configure file - add a rcNG start/stop script - added web site - don't install useless .la files - use DATADIR - 510001 is FreeBSD 5.10, 5.1-CURRENT is 501100 - minor cleanup PR: 57256 Submitted by: eikemeier@fillmore-labs.com
110 lines
3.0 KiB
Makefile
110 lines
3.0 KiB
Makefile
# New ports collection makefile for: clamav
|
|
# Date created: 15 July 2002
|
|
# Whom: markun@onohara.to
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= clamav
|
|
PORTVERSION= 0.60
|
|
PORTREVISION= 3
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= clamav
|
|
|
|
MAINTAINER= markun@onohara.to
|
|
COMMENT= Command line virus scanner written entirely in C
|
|
|
|
RUN_DEPENDS= lha:${PORTSDIR}/archivers/lha \
|
|
unarj:${PORTSDIR}/archivers/unarj \
|
|
unrar:${PORTSDIR}/archivers/unrar \
|
|
zoo:${PORTSDIR}/archivers/zoo \
|
|
arc:${PORTSDIR}/archivers/arc \
|
|
unzip:${PORTSDIR}/archivers/unzip
|
|
|
|
USE_REINPLACE= yes
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
#USE_LIBTOOL_VER=14
|
|
INSTALLS_SHLIB= yes
|
|
|
|
PKGINSTALL= ${WRKDIR}/pkg-install
|
|
|
|
CONFIGURE_ARGS= --with-dbdir=${DATADIR} \
|
|
--disable-clamav --enable-bigstack
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= ${PTHREAD_LIBS}
|
|
CONFIGURE_ENV+= LDFLAGS="${LDFLAGS}"
|
|
MAN1= clamscan.1 freshclam.1 sigtool.1 clamdscan.1 clamav-milter.1
|
|
MAN5= clamav.conf.5
|
|
MAN8= clamd.8
|
|
|
|
SED_SCRIPT= -e 's|%%PREFIX%%|${PREFIX}|g' \
|
|
-e 's|%%DATADIR%%|${DATADIR}|g'
|
|
|
|
SED_CONF= -E -e 's|^\#?(Example)$$|\#\1|' \
|
|
-e 's|^\#?(LogFile) .*$$|\1 /var/log/clamav/clamd.log|' \
|
|
-e 's|^\#?(PidFile) .*$$|\1 /var/run/clamav/clamd.pid|' \
|
|
-e 's|^\#?(LocalSocket) .*$$|\1 /var/run/clamav/clamd|' \
|
|
-e 's|^\#?(User) .*$$|\1 clamav|' \
|
|
-e 's|^\#?(AllowSupplementaryGroups)$$|\1|' \
|
|
-e 's|^\#?(ScanMail)$$|\1|'
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
USE_RC_SUBR= yes
|
|
RC_DIR= ${PREFIX}/etc/rc.d
|
|
RC_SUFX= .sh
|
|
SED_SCRIPT+= -e 's|%%RC_SUBR%%|${RC_SUBR}|g' \
|
|
-e 's|%%RC_DIR%%|${RC_DIR}|g' \
|
|
-e 's|%%RC_SUFX%%|${RC_SUFX}|g'
|
|
PLIST_SUB+= RC_DIR=${RC_DIR} \
|
|
RC_SUFX=${RC_SUFX}
|
|
|
|
.if ${OSVERSION} < 501100
|
|
# compiles only with optimizer
|
|
CFLAGS+= -O
|
|
LDFLAGS+= -lcipher
|
|
.endif
|
|
|
|
.if defined(WITH_MILTER)
|
|
CONFIGURE_ARGS+= --enable-milter
|
|
PLIST_SUB+= CLAMAV-MILTER=""
|
|
.else
|
|
PLIST_SUB+= CLAMAV-MILTER="@comment "
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-pthread|${PTHREAD_LIBS}|g' \
|
|
${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
|
|
|
|
pre-configure:
|
|
@${REINPLACE_CMD} -e 's|clamav.conf|&.default|' \
|
|
${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT} \
|
|
${CONFIGURE_WRKSRC}/etc/Makefile.in
|
|
.ifdef USE_LIBTOOL_VER
|
|
@${REINPLACE_CMD} -e '/^LIBTOOL=/s|\$$(top_builddir)/libtool|${LIBTOOL}|' \
|
|
${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
|
|
.endif
|
|
|
|
post-build:
|
|
@${SED} ${SED_CONF} ${BUILD_WRKSRC}/etc/clamav.conf \
|
|
>${BUILD_WRKSRC}/etc/clamav.conf.default
|
|
@${SED} ${SED_SCRIPT} ${PKGDIR}/pkg-install >${PKGINSTALL}
|
|
@${SED} ${SED_SCRIPT} ${FILESDIR}/clamd.sh >${WRKDIR}/clamd.sh
|
|
|
|
pre-install:
|
|
@${SETENV} PKG_PREFIX=${PREFIX} \
|
|
${SH} ${PKGINSTALL} ${PREFIX} PRE-INSTALL
|
|
|
|
post-install:
|
|
@${INSTALL_SCRIPT} ${WRKDIR}/clamd.sh ${RC_DIR}/clamd${RC_SUFX}
|
|
@${CHOWN} -R clamav:clamav ${DATADIR}
|
|
@[ -f ${PREFIX}/etc/clamav.conf ] || \
|
|
${CP} ${PREFIX}/etc/clamav.conf.default ${PREFIX}/etc/clamav.conf
|
|
@${SETENV} PKG_PREFIX=${PREFIX} \
|
|
${SH} ${PKGINSTALL} ${PREFIX} POST-INSTALL
|
|
|
|
.include <bsd.port.post.mk>
|