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 /mail/tlb/Makefile | |
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>
Diffstat (limited to 'mail/tlb/Makefile')
-rw-r--r-- | mail/tlb/Makefile | 45 |
1 files changed, 45 insertions, 0 deletions
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> |