d2ca14a3f1
a) refer 'perl' in their Makefile, or b) have a directory name of p5-*, or c) have any dependency on any p5-* package Like last time, where this caused no complaints.
29 lines
793 B
Makefile
29 lines
793 B
Makefile
# $NetBSD: Makefile,v 1.14 2013/05/31 12:42:04 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= pflogsumm-1.1.0
|
|
PKGREVISION= 2
|
|
CATEGORIES= sysutils mail
|
|
MASTER_SITES= ftp://jimsun.linxnet.com/pub/postfix_contrib/
|
|
|
|
MAINTAINER= kim@tac.nyc.ny.us
|
|
HOMEPAGE= http://jimsun.linxnet.com/postfix_contrib.html
|
|
COMMENT= Produce summaries from Postfix syslog data
|
|
|
|
DEPENDS+= p5-Date-Calc-[0-9]*:../../devel/p5-Date-Calc
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
NO_CONFIGURE= yes
|
|
USE_TOOLS+= perl:run
|
|
INSTALLATION_DIRS= ${PKGMANDIR}/man1 sbin
|
|
|
|
do-build:
|
|
${SED} 's;/usr/bin/perl;${PERL5};' ${WRKSRC}/pflogsumm.pl \
|
|
> ${WRKSRC}/pflogsumm
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/pflogsumm ${DESTDIR}${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/pflogsumm.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|