pkgsrc/mail/mailgraph/Makefile
agc 30b55df38e Convert all occurrences (353 by my count) of
MASTER_SITES= 	site1 \
			site2

style continuation lines to be simple repeated

	MASTER_SITES+= site1
	MASTER_SITES+= site2

lines. As previewed on tech-pkg. With thanks to rillig for fixing pkglint
accordingly.
2017-01-19 18:52:01 +00:00

58 lines
1.4 KiB
Makefile

# $NetBSD: Makefile,v 1.23 2017/01/19 18:52:16 agc Exp $
#
DISTNAME= mailgraph-1.14
PKGREVISION= 3
CATEGORIES= mail
MASTER_SITES= http://mailgraph.schweikert.ch/pub/
MASTER_SITES+= http://mailgraph.schweikert.ch/pub/old
MAINTAINER= kim@tac.nyc.ny.us
HOMEPAGE= http://mailgraph.schweikert.ch/
COMMENT= RRDtool frontend for mail statistics
DEPENDS+= rrdtool>=1:../../databases/rrdtool
DEPENDS+= p5-File-Tail-[0-9]*:../../misc/p5-File-Tail
USE_TOOLS+= perl:run
.include "../../mk/bsd.prefs.mk"
DBDIR?= ${VARBASE}/db/${PKGBASE}
MG_SCRIPTS= mailgraph.cgi mailgraph.pl
REPLACE_PERL+= ${MG_SCRIPTS}
RCD_SCRIPTS= mailgraph
SUBST_CLASSES+= defs
SUBST_STAGE.defs= pre-build
SUBST_FILES.defs= ${MG_SCRIPTS}
# Database
SUBST_SED.defs+= -e 's,/var/log\([^/]\),${DBDIR}\1,g'
SUBST_SED.defs+= -e 's,/var/log$$,${DBDIR},g'
# Logfile
SUBST_SED.defs+= -e 's,/var/log/syslog,${VARBASE}/log/maillog,g'
#
SUBST_MESSAGE.defs= Fixing defaults.
INSTALLATION_DIRS= sbin
do-build:
do-configure:
do-install:
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/libexec/cgi-bin
${INSTALL_SCRIPT} ${WRKSRC}/mailgraph.cgi \
${DESTDIR}${PREFIX}/libexec/cgi-bin/mailgraph.cgi
${INSTALL_SCRIPT} ${WRKSRC}/mailgraph.pl \
${DESTDIR}${PREFIX}/sbin/mailgraph
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/mailgraph
.for i in CHANGES COPYING README
${INSTALL_DATA} ${WRKSRC}/${i} \
${DESTDIR}${PREFIX}/share/doc/mailgraph/${i}
.endfor
.include "../../mk/bsd.pkg.mk"