mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
d1d26c0244
- Add LICENSE (Apache) - Update maintainer's address (submitted via private email) Changes: http://aws.amazon.com/code/Amazon-SES/8945574369528337 PR: ports/161295 Submitted by: Stephon Chen <stephon@gmail.com> (maintainer) Feature safe: yes
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# New ports collection makefile for: p5-SES
|
|
# Date created: 2011-04-29
|
|
# Whom: Stephon Chen <stephon@pixnet.tw>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= SES
|
|
PORTVERSION= 1.01
|
|
CATEGORIES= mail perl5
|
|
MASTER_SITES= http://d36cz9buwru1tt.cloudfront.net/catalog/attachments/
|
|
PKGNAMEPREFIX= p5-
|
|
DISTNAME= ses-tools-2011-10-31
|
|
|
|
MAINTAINER= stephon@gmail.com
|
|
COMMENT= Perl module of Amazon Simple Email Services
|
|
|
|
LICENSE= ASL
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= p5-Digest-SHA>=0:${PORTSDIR}/security/p5-Digest-SHA \
|
|
p5-LWP-Protocol-https>=0:${PORTSDIR}/www/p5-LWP-Protocol-https \
|
|
p5-URI>=0:${PORTSDIR}/net/p5-URI \
|
|
p5-XML-LibXML>=0:${PORTSDIR}/textproc/p5-XML-LibXML \
|
|
p5-libwww>=0:${PORTSDIR}/www/p5-libwww
|
|
|
|
NO_BUILD= yes
|
|
USE_PERL5_RUN= yes
|
|
USE_ZIP= yes
|
|
WRKSRC= ${WRKDIR}/bin
|
|
|
|
PLIST_FILES= bin/ses-get-stats.pl \
|
|
bin/ses-send-email.pl \
|
|
bin/ses-verify-email-address.pl \
|
|
%%SITE_PERL%%/SES.pm
|
|
|
|
SCRIPTS= ses-get-stats.pl ses-send-email.pl ses-verify-email-address.pl
|
|
|
|
post-extract:
|
|
@cd ${WRKSRC} && ${REINPLACE_CMD} -e '1 s|/usr/bin/perl|${PERL}|' ${SCRIPTS}
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${INSTALL_SCRIPT} ${SCRIPTS} ${PREFIX}/bin/
|
|
${INSTALL_DATA} ${WRKSRC}/SES.pm ${PREFIX}/${SITE_PERL_REL}/
|
|
|
|
.include <bsd.port.mk>
|