diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-07-07 14:44:13 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-07-07 14:44:13 +0000 |
commit | 5cafe36de9149fdded41652dd7d08d1ed0835366 (patch) | |
tree | ffdcd774b69b1361fd8cbb5a2dccf40866d6fdc4 | |
parent | ff49928faf657b9ef157973f1eb671301f450252 (diff) | |
download | FreeBSD-ports-5cafe36de9149fdded41652dd7d08d1ed0835366.zip FreeBSD-ports-5cafe36de9149fdded41652dd7d08d1ed0835366.tar.gz |
add tlb
The List Batcher, a general purpose mail list delivery engine
PR: 28557
Submitted by: Anders Nordby <anders@fix.no>
-rw-r--r-- | mail/Makefile | 1 | ||||
-rw-r--r-- | mail/tlb/Makefile | 45 | ||||
-rw-r--r-- | mail/tlb/distinfo | 1 | ||||
-rw-r--r-- | mail/tlb/pkg-comment | 1 | ||||
-rw-r--r-- | mail/tlb/pkg-descr | 6 | ||||
-rw-r--r-- | mail/tlb/pkg-plist | 13 |
6 files changed, 67 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile index 818039c..0d5b950 100644 --- a/mail/Makefile +++ b/mail/Makefile @@ -182,6 +182,7 @@ SUBDIR += teapop SUBDIR += tkrat SUBDIR += tkrat2 + SUBDIR += tlb SUBDIR += tmda SUBDIR += vbsfilter SUBDIR += vpopmail diff --git a/mail/tlb/Makefile b/mail/tlb/Makefile new file mode 100644 index 0000000..e1d3e17 --- /dev/null +++ b/mail/tlb/Makefile @@ -0,0 +1,45 @@ +# New ports collection makefile for: tlb +# Date created: 01 July 2001 +# Whom: Anders Nordby <anders@fix.no> +# +# $FreeBSD$ +# + +PORTNAME= tlb +PORTVERSION= 0.11a +CATEGORIES= mail perl5 +MASTER_SITES= ftp://ftp.hpc.uh.edu/pub/tlb/ \ + http://www.freenix.no/~anders/ \ + ftp://totem.fix.no/pub/mirrors/misc/ +EXTRACT_SUFX= .tgz + +MAINTAINER= anders@fix.no + +RUN_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Mail/Address.pm:${PORTSDIR}/mail/p5-Mail-Tools \ + ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Date/Format.pm:${PORTSDIR}/devel/p5-TimeDate \ + ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Net/Domain.pm:${PORTSDIR}/net/p5-Net + +NO_BUILD= yes +USE_PERL5= yes + +DOCS= FAQ INSTALL README README.loglevels README.mungelist TIPS TODO \ + complete.tlb mj.tlb simple.tlb +FIXPREFIX= tlb mungelist complete.tlb mj.tlb simple.tlb + +pre-patch: +.for f in ${FIXPREFIX} + ${PERL} -pi -e "s@^#!/usr/local/bin/perl5@#!${PERL}@g;\ + s@/usr/lib/sendmail@/usr/sbin/sendmail@g" ${WRKSRC}/${f} +.endfor + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/tlb ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/mungelist ${PREFIX}/bin +.if !defined(NOPORTDOCS) + ${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/share/doc/tlb +.for f in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/tlb +.endfor +.endif + +.include <bsd.port.mk> diff --git a/mail/tlb/distinfo b/mail/tlb/distinfo new file mode 100644 index 0000000..4b34330 --- /dev/null +++ b/mail/tlb/distinfo @@ -0,0 +1 @@ +MD5 (tlb-0.11a.tgz) = c9e0d784092ff1f62c49de671f55798a diff --git a/mail/tlb/pkg-comment b/mail/tlb/pkg-comment new file mode 100644 index 0000000..ce2e32a --- /dev/null +++ b/mail/tlb/pkg-comment @@ -0,0 +1 @@ +The List Batcher, a general purpose mail list delivery engine diff --git a/mail/tlb/pkg-descr b/mail/tlb/pkg-descr new file mode 100644 index 0000000..b1df442 --- /dev/null +++ b/mail/tlb/pkg-descr @@ -0,0 +1,6 @@ +TLB, aka The List Batcher, is a general purpose mailing list delivery engine. +Its function is to take a list of addresses, split it up according to various +criteria, and send the chunks via local programs or SMTP to any number of +hosts for delivery. + +- Anders Nordby <anders@fix.no> diff --git a/mail/tlb/pkg-plist b/mail/tlb/pkg-plist new file mode 100644 index 0000000..fef1c5c --- /dev/null +++ b/mail/tlb/pkg-plist @@ -0,0 +1,13 @@ +bin/tlb +bin/mungelist +%%PORTDOCS%%share/doc/tlb/FAQ +%%PORTDOCS%%share/doc/tlb/INSTALL +%%PORTDOCS%%share/doc/tlb/README +%%PORTDOCS%%share/doc/tlb/README.loglevels +%%PORTDOCS%%share/doc/tlb/README.mungelist +%%PORTDOCS%%share/doc/tlb/TIPS +%%PORTDOCS%%share/doc/tlb/TODO +%%PORTDOCS%%share/doc/tlb/complete.tlb +%%PORTDOCS%%share/doc/tlb/mj.tlb +%%PORTDOCS%%share/doc/tlb/simple.tlb +%%PORTDOCS%%@dirrm share/doc/tlb |