4cdd790aad
o Update port to version 1.11 o Support NOPORTDOCS, deploy DOCSDIR o Update DESCR, add WWW tag PR: 29368 Submitted by: Pete Fritchman <petef@databits.net>
45 lines
1.0 KiB
Makefile
45 lines
1.0 KiB
Makefile
# New ports collection makefile for: Mail-Audit
|
|
# Date created: Wed Jan 3 12:31:10 2001
|
|
# Whom: will
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Mail-Audit
|
|
PORTVERSION= 1.11
|
|
CATEGORIES= mail perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= Mail
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= petef@databits.net
|
|
|
|
BUILD_DEPENDS= ${SITE_PERL}/Net/Config.pm:${PORTSDIR}/net/p5-Net \
|
|
${SITE_PERL}/Mail/Internet.pm:${PORTSDIR}/mail/p5-Mail-Tools
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
SITE_PERL= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}
|
|
PERL_CONFIGURE= yes
|
|
|
|
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
|
MAN3= Mail::Audit.3 \
|
|
Mail::Audit::KillDups.3 \
|
|
Mail::Audit::List.3 \
|
|
Mail::Audit::MAPS.3 \
|
|
Mail::Audit::PGP.3
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in Changes FAQ README
|
|
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
@${MKDIR} ${PREFIX}/share/examples/Mail-Audit
|
|
.for file in popread proc2ma
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/${file} \
|
|
${PREFIX}/share/examples/Mail-Audit
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|