pkgsrc-wip/p5-Email-Send/Makefile
Roman Kulik f5a69e9e33 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/
2005-08-29 19:58:09 +00:00

20 lines
682 B
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2005/08/29 19:58:09 kuli0020 Exp $
DISTNAME= Email-Send-1.46
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-Return-Value>=1.28:../../devel/p5-Return-Value
PERL5_PACKLIST= auto/Email/Send/.packlist
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"