0d2acd9252
Yadda - Yet Another Damn Delivery Agent is a fully featured mail delivery agent, with support for Maildir++ and softquotas. It also supports filtering, and SQL-usage. It's written entirely in Perl and uses Mail::Audit which is available from CPAN. It's compatible with RFC2033 (LMTP) and works great with postfix, and other LHLO/LMTP-fluent MTA's. Author: Jesper Noehr <jesper@noehr.org> WWW: http://code.printf.dk/~decius/yadda/ PR: 60802 Submitted by: Jesper Noehr <jesper@noehr.org>
32 lines
747 B
Makefile
32 lines
747 B
Makefile
# New ports collection makefile for: yadda
|
|
# Date created: 2004-01-01
|
|
# Whom: Jesper Noehr <jesper@noehr.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= yadda
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://code.printf.dk/~decius/yadda/ \
|
|
http://casius.dk/mirrors/yadda/ \
|
|
http://yadda.salkin.dk/mirror/ \
|
|
http://users.cybercity.dk/~dsl22381/
|
|
|
|
MAINTAINER= jesper@noehr.org
|
|
COMMENT= Yet Another Damn Delivery Agent
|
|
|
|
RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI \
|
|
${SITE_PERL}/Mail/Audit.pm:${PORTSDIR}/mail/p5-Mail-Audit
|
|
|
|
USE_PERL5_RUN= yes
|
|
|
|
do-build:
|
|
${SED} -e '1s,/usr/bin/perl,${PERL},' ${WRKSRC}/yadda \
|
|
> ${WRKDIR}/yadda
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/yadda ${PREFIX}/sbin
|
|
|
|
.include <bsd.port.mk>
|