diff options
author | adrianp <adrianp@pkgsrc.org> | 2007-07-29 11:49:11 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2007-07-29 11:49:11 +0000 |
commit | 17d29bccff0852822f905cce84c578510c926041 (patch) | |
tree | 1b1e3fbc9ee0585c9b2e9c9a0450d819ee22e844 | |
parent | ed9d2c1b896fb1481abb028b201cb0ed504e8dd5 (diff) | |
download | pkgsrc-17d29bccff0852822f905cce84c578510c926041.tar.gz |
This module provides a very simple, very clean, very specific interface to
multiple Email mailers. The goal if this software is to be small and simple,
easy to use, and easy to extend.
Mailers
Mailers are simple to use. You can pre-load mailers when using "Email::Send".
use Email::Send qw[SMTP NNTP];
If you don't preload a mailer before you use it in the "send" function, it
will by dynamically loaded. Mailers are named either relative to the
"Email::Send" namespace, or fully qualified. For example, when using the "IO"
mailer, "Email::Send" first tries to load "Email::Send::IO". If that fails, an
attempt is made to load "IO". If that final attempt fails, "Email::Send" will
throw an exception.
WWW: http://search.cpan.org/dist/Email-Send/
Imported from pkgsrc-wip and packaged by kuli0020@umn.edu
-rw-r--r-- | mail/p5-Email-Send/DESCR | 17 | ||||
-rw-r--r-- | mail/p5-Email-Send/Makefile | 23 | ||||
-rw-r--r-- | mail/p5-Email-Send/PLIST | 1 | ||||
-rw-r--r-- | mail/p5-Email-Send/distinfo | 5 |
4 files changed, 46 insertions, 0 deletions
diff --git a/mail/p5-Email-Send/DESCR b/mail/p5-Email-Send/DESCR new file mode 100644 index 00000000000..fd78533a070 --- /dev/null +++ b/mail/p5-Email-Send/DESCR @@ -0,0 +1,17 @@ +This module provides a very simple, very clean, very specific interface to +multiple Email mailers. The goal if this software is to be small and simple, +easy to use, and easy to extend. + +Mailers +Mailers are simple to use. You can pre-load mailers when using "Email::Send". + +use Email::Send qw[SMTP NNTP]; + +If you don't preload a mailer before you use it in the "send" function, it +will by dynamically loaded. Mailers are named either relative to the +"Email::Send" namespace, or fully qualified. For example, when using the "IO" +mailer, "Email::Send" first tries to load "Email::Send::IO". If that fails, an +attempt is made to load "IO". If that final attempt fails, "Email::Send" will +throw an exception. + +WWW: http://search.cpan.org/dist/Email-Send/ diff --git a/mail/p5-Email-Send/Makefile b/mail/p5-Email-Send/Makefile new file mode 100644 index 00000000000..28ab9d7d931 --- /dev/null +++ b/mail/p5-Email-Send/Makefile @@ -0,0 +1,23 @@ +# $NetBSD: Makefile,v 1.1.1.1 2007/07/29 11:49:11 adrianp Exp $ + +DISTNAME= Email-Send-2.05 +PKGNAME= p5-${DISTNAME} +CATEGORIES= mail perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Email/} + +MAINTAINER= kuli0020@umn.edu +HOMEPAGE= http://search.cpan.org/dist/Email-Send/ +COMMENT= Email::Send - Simply Sending Email + +DEPENDS+= {perl>=5.7.3,p5-Test-Simple>=0.47}:../../devel/p5-Test-Simple +DEPENDS+= p5-Email-Address>=1.80:../../mail/p5-Email-Address +DEPENDS+= p5-Email-Simple>=1.92:../../mail/p5-Email-Simple +DEPENDS+= p5-Module-Pluggable-[0-9]*:../../devel/p5-Module-Pluggable +DEPENDS+= p5-Return-Value>=1.28:../../devel/p5-Return-Value + +PERL5_REQD+= 5.6.0 + +PERL5_PACKLIST= auto/Email/Send/.packlist + +.include "../../lang/perl5/module.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/mail/p5-Email-Send/PLIST b/mail/p5-Email-Send/PLIST new file mode 100644 index 00000000000..dd72ccc72d6 --- /dev/null +++ b/mail/p5-Email-Send/PLIST @@ -0,0 +1 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2007/07/29 11:49:11 adrianp Exp $ diff --git a/mail/p5-Email-Send/distinfo b/mail/p5-Email-Send/distinfo new file mode 100644 index 00000000000..c02ee7a6374 --- /dev/null +++ b/mail/p5-Email-Send/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2007/07/29 11:49:11 adrianp Exp $ + +SHA1 (Email-Send-2.05.tar.gz) = 75259cb89f5b249bcc8de467f6becd597fa6c089 +RMD160 (Email-Send-2.05.tar.gz) = d097711f26efd56300c95e2173b544f8fc3cf118 +Size (Email-Send-2.05.tar.gz) = 12653 bytes |