blob: 8715c89ddf173696a9295366d9df140fed072899 (
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
|
# $NetBSD: Makefile,v 1.45 2016/03/05 11:28:50 jperkin Exp $
DISTNAME= Mail-ClamAV-0.29
PKGNAME= p5-${DISTNAME}
PKGREVISION= 16
CATEGORIES= mail perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Mail/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://search.cpan.org/dist/Mail-ClamAV/
COMMENT= Perl5 module for security/clamav virus scanner
LICENSE= ${PERL5_LICENSE}
DEPENDS+= p5-Inline-C>=0.75:../../devel/p5-Inline-C
# this version needs clamav>=0.90
BUILDLINK_API_DEPENDS.clamav+= clamav>=0.95.1
PERL5_PACKLIST= auto/Mail/ClamAV/.packlist
PTHREAD_OPTS+= require
PKG_OPTIONS_VAR= PKG_OPTIONS.p5-Mail-ClamAV
PKG_SUPPORTED_OPTIONS= curl
PKG_SUGGESTED_OPTIONS= curl
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mcurl)
. include "../../www/curl/buildlink3.mk"
.endif
# avoid having PERL5_SITELIB, PERL5_SITEARCH and PERL5_ARCHLIB set in
# the environment, which confuses the 'install' target of modules
# which use Inline, such as this one.
#
# XXX do these environment variables really need to be set in targets
# XXX other than 'install'?
do-build:
@cd ${WRKSRC} && \
${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${BUILD_TARGET}
.include "../../lang/perl5/module.mk"
.include "../../security/clamav/buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|