diff options
author | Jun Kuriyama <kuriyama@FreeBSD.org> | 2012-08-14 09:55:22 +0000 |
---|---|---|
committer | Jun Kuriyama <kuriyama@FreeBSD.org> | 2012-08-14 09:55:22 +0000 |
commit | 2d93fa800d6b8379935590589701f984550f02e0 (patch) | |
tree | f21f6683b9df8ee483e5009aff94fc33236a8084 | |
parent | 95e06f5b4a47c768b0ece554c009069b2d40522e (diff) | |
download | ports-2d93fa800d6b8379935590589701f984550f02e0.tar.gz ports-2d93fa800d6b8379935590589701f984550f02e0.zip |
Net::APNS is Apple Push Notification Service. Push message to iPhone
and get unavalble-devicetoken.
WWW: http://search.cpan.org/dist/Net-APNS/
Notes
Notes:
svn path=/head/; revision=302510
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/p5-Net-APNS/Makefile | 29 | ||||
-rw-r--r-- | net/p5-Net-APNS/distinfo | 2 | ||||
-rw-r--r-- | net/p5-Net-APNS/pkg-descr | 4 | ||||
-rw-r--r-- | net/p5-Net-APNS/pkg-plist | 6 |
5 files changed, 42 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index 854225d1a411..b721e87ee2c6 100644 --- a/net/Makefile +++ b/net/Makefile @@ -533,6 +533,7 @@ SUBDIR += p5-Jifty-Plugin-Authentication-Ldap SUBDIR += p5-Net SUBDIR += p5-Net-AMQP + SUBDIR += p5-Net-APNS SUBDIR += p5-Net-ARP SUBDIR += p5-Net-Address-Ethernet SUBDIR += p5-Net-Address-IPv4-Local diff --git a/net/p5-Net-APNS/Makefile b/net/p5-Net-APNS/Makefile new file mode 100644 index 000000000000..e12676ca476b --- /dev/null +++ b/net/p5-Net-APNS/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: Net::APNS +# Date created: 14 Aug 2012 +# Whom: Jun Kuriyama <kuriyama@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= Net-APNS +PORTVERSION= 0.0202 +CATEGORIES= net perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= kuriyama@FreeBSD.org +COMMENT= Perl extension for Apple Push Notification Service + +RUN_DEPENDS= \ + p5-Any-Moose>=0.10:${PORTSDIR}/devel/p5-Any-Moose \ + p5-JSON-XS>=2.25:${PORTSDIR}/converters/p5-JSON-XS \ + p5-Net-SSLeay>=1.35:${PORTSDIR}/security/p5-Net-SSLeay \ + p5-Sub-Exporter>=0.982:${PORTSDIR}/devel/p5-Sub-Exporter +BUILD_DEPENDS= ${RUN_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= Net::APNS.3 \ + Net::APNS::Notification.3 + +.include <bsd.port.mk> diff --git a/net/p5-Net-APNS/distinfo b/net/p5-Net-APNS/distinfo new file mode 100644 index 000000000000..0686f97c21c7 --- /dev/null +++ b/net/p5-Net-APNS/distinfo @@ -0,0 +1,2 @@ +SHA256 (Net-APNS-0.0202.tar.gz) = a6ad3ff5428b3458e70e033cfa2b2c36ccdb53e188ece848b1b8c16e0d648de5 +SIZE (Net-APNS-0.0202.tar.gz) = 50251 diff --git a/net/p5-Net-APNS/pkg-descr b/net/p5-Net-APNS/pkg-descr new file mode 100644 index 000000000000..9bfcb4a25954 --- /dev/null +++ b/net/p5-Net-APNS/pkg-descr @@ -0,0 +1,4 @@ +Net::APNS is Apple Push Notification Service. Push message to iPhone +and get unavalble-devicetoken. + +WWW: http://search.cpan.org/dist/Net-APNS/ diff --git a/net/p5-Net-APNS/pkg-plist b/net/p5-Net-APNS/pkg-plist new file mode 100644 index 000000000000..05f085e72297 --- /dev/null +++ b/net/p5-Net-APNS/pkg-plist @@ -0,0 +1,6 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/APNS/.packlist +%%SITE_PERL%%/Net/APNS.pm +%%SITE_PERL%%/Net/APNS/Notification.pm +@dirrm %%SITE_PERL%%/Net/APNS +@dirrmtry %%SITE_PERL%%/Net +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/APNS |