1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

- New port mail/p5-Email-LocalDelivery

This is the second module produced by the "Perl Email Project",
a reaction against the complexity and increasing bugginess of
the Mail::* modules. It delivers an email to a list of
mailboxes.

PR:		56267
Submitted by:	Lars Thegler <lars@thegler.dk>
This commit is contained in:
Kirill Ponomarev 2003-09-01 20:25:41 +00:00
parent 9299b8ec6c
commit bcc645405b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=88305
6 changed files with 59 additions and 0 deletions

View File

@ -177,6 +177,7 @@
SUBDIR += p5-Email-Find
SUBDIR += p5-Email-Folder
SUBDIR += p5-Email-FolderType
SUBDIR += p5-Email-LocalDelivery
SUBDIR += p5-Email-Simple
SUBDIR += p5-Email-Valid
SUBDIR += p5-Email-Valid-Loose

View File

@ -0,0 +1,29 @@
# New ports collection makefile for: p5-Email-LocalDelivery
# Date created: August 31 2003
# Whom: Lars Thegler <lars@thegler.dk>
#
# $FreeBSD$
#
PORTNAME= Email-LocalDelivery
PORTVERSION= 0.05
CATEGORIES= mail perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= Email
PKGNAMEPREFIX= p5-
MAINTAINER= lars@thegler.dk
COMMENT= Deliver a piece of email - simply
BUILD_DEPENDS= ${SITE_PERL}/Email/Simple.pm:${PORTSDIR}/mail/p5-Email-Simple \
${SITE_PERL}/Email/FolderType.pm:${PORTSDIR}/mail/p5-Email-FolderType
RUN_DEPENDS= ${BUILD_DEPENDS}
PERL_CONFIGURE= yes
MAN3= Email::LocalDelivery.3
test:
cd ${WRKSRC} ; make test
.include <bsd.port.mk>

View File

@ -0,0 +1 @@
MD5 (Email-LocalDelivery-0.05.tar.gz) = 73249763b6619750f3d657b149179059

View File

@ -0,0 +1,15 @@
--- LocalDelivery.pm.orig Mon Sep 1 20:36:31 2003
+++ LocalDelivery.pm Mon Sep 1 20:30:45 2003
@@ -1,11 +1,10 @@
package Email::LocalDelivery;
-require 5.005_62;
use strict;
-use warnings;
use Email::FolderType qw(folder_type);
use Carp;
-our $VERSION = '0.05';
+use vars qw($VERSION);
+$VERSION = '0.05';
=head1 NAME

View File

@ -0,0 +1,5 @@
This is the second module produced by the "Perl Email Project", a
reaction against the complexity and increasing bugginess of the Mail::*
modules. It delivers an email to a list of mailboxes.
WWW: http://search.cpan.org/dist/Email-LocalDelivery

View File

@ -0,0 +1,8 @@
%%SITE_PERL%%/Email/LocalDelivery.pm
%%SITE_PERL%%/Email/LocalDelivery/Maildir.pm
%%SITE_PERL%%/Email/LocalDelivery/Mbox.pm
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Email/LocalDelivery/.packlist
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Email/LocalDelivery
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Email 2>/dev/null || true
@unexec rmdir %D/%%SITE_PERL%%/Email/LocalDelivery 2>/dev/null || true
@unexec rmdir %D/%%SITE_PERL%%/Email 2>/dev/null || true