blob: 9e20201723d7fe057e3b08fefd6603ab277e4eee (
plain)
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
|
# New ports collection makefile for: scamp
# Date created: 31 March 2009
# Whom: Gerard Seibert <gerard@seibercom.net>
#
# $FreeBSD$
PORTNAME= scamp
PORTVERSION= 5.3b
CATEGORIES= security
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
MAINTAINER= gerard@seibercom.net
COMMENT= Download & Install additional definition files for Clamav
LICENSE= BSD
RUN_DEPENDS= bash>=4.2.20:${PORTSDIR}/shells/bash \
clamav>=0.97.3_1:${PORTSDIR}/security/clamav \
gnupg>=2.0.18_1:${PORTSDIR}/security/gnupg \
rsync>=3.0.9:${PORTSDIR}/net/rsync
.if exists (${LOCALBASE}/bin/wget) && ! exists (${LOCALBASE}/bin/curl)
RUN_DEPENDS+= wget>=1.13.4_1:${PORTSDIR}/ftp/wget
.else
RUN_DEPENDS+= curl>=7.21.3_2:${PORTSDIR}/ftp/curl
.endif
NO_BUILD= yes
SUB_FILES= pkg-message
MAN1= scamp.1
post-patch:
@${REINPLACE_CMD} -e 's|CLAMAV_DB=$${CLAMAV_DB:-""}|CLAMAV_DB=$${CLAMAV_DB:-\"/var/db/clamav\"}|g' ${WRKSRC}/${PORTNAME}.sh
@${REINPLACE_CMD} -e 's|CONFIG_DIR=$${CONFIG_DIR:-"/etc/scamp"}|CONFIG_DIR=$${CONFIG_DIR:-"${ETCDIR}"}|g' ${WRKSRC}/${PORTNAME}.sh
post-install:
@if [ ! -d ${ETCDIR} ]; then \
${MKDIR} ${ETCDIR} ; \
fi
@${INSTALL_DATA} ${FILESDIR}/default.sample ${ETCDIR}
@if [ ! -f ${ETCDIR}/default ]; then \
${CP} -p ${ETCDIR}/default.sample \
${ETCDIR}/default ; \
fi
do-install:
cd ${WRKSRC} && ${INSTALL_SCRIPT} ${PORTNAME}.sh ${PREFIX}/bin
cd ${WRKSRC} && ${INSTALL_MAN} scamp.1 ${MANPREFIX}/man/man1
.ifndef(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} README CHANGE.LOG INSTALL Release.html ${DOCSDIR}
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|