650384b896
Unlike with qmail-pw2u, you don't need your users in /etc/passwd. They can be stored any where that a NSS module allows. Just make all users who send or recieve mail a member of a specific group, and that group will be used to generate the assign and recipients file. PR: ports/110114 Submitted by: Zane C. Bowers
41 lines
987 B
Makefile
41 lines
987 B
Makefile
# New ports collection makefile for: qar-bufo
|
|
# Date created: 8 March 2007
|
|
# Whom: Zane C. Bowers
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= qar-bufo
|
|
PORTVERSION= 1.3.1
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://cpan.org/authors/id/M/MW/MWCZANECB/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}
|
|
EXTRACT_SUFX=
|
|
EXTRACT_ONLY=
|
|
|
|
MAINTAINER= vvelox@vvelox.net
|
|
COMMENT= qar-bufo generates the Qmail assign and recipients file based on unix groups.
|
|
|
|
USE_PERL5= yes
|
|
NO_WRKSUBDIR= yes
|
|
|
|
MAN1= qar-bufo.1
|
|
|
|
PLIST_FILES= bin/qar-bufo
|
|
|
|
post-extract:
|
|
@${CP} -v ${DISTDIR}/${DISTNAME} ${WRKSRC}
|
|
|
|
#nothing to configure
|
|
do-configure:
|
|
@${ECHO} -n
|
|
|
|
do-build:
|
|
@${EXEC} pod2man --section=1 --release=${PORTVERSION} --name=${PORTNAME} --center="${PORTNAME} user guide" ${WRKSRC}/${DISTNAME} ${WRKSRC}/${PORTNAME}.1
|
|
|
|
do-install:
|
|
@${CP} -v ${WRKSRC}/${DISTNAME} ${PREFIX}/bin/${PORTNAME}
|
|
@${CP} -v ${WRKSRC}/${PORTNAME}.1 ${PREFIX}/man/man1/${PORTNAME}.1
|
|
@${CHMOD} +x ${PREFIX}/bin/qar-bufo
|
|
|
|
.include <bsd.port.mk>
|