diff options
author | miwi <miwi@FreeBSD.org> | 2007-01-11 05:11:48 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-01-11 05:11:48 +0800 |
commit | d5df46c25a3aedc4d74eb790d83a4844167c39db (patch) | |
tree | 6f8cfe7af947814437d0f0f3510ffc04d4b8dda7 /net | |
parent | 058cd44920c42322ff75aa149c7732d4687affde (diff) | |
download | freebsd-ports-gnome-d5df46c25a3aedc4d74eb790d83a4844167c39db.tar.gz freebsd-ports-gnome-d5df46c25a3aedc4d74eb790d83a4844167c39db.tar.zst freebsd-ports-gnome-d5df46c25a3aedc4d74eb790d83a4844167c39db.zip |
Net::TiVo provides an object-oriented interface to TiVo's REST interface. This
makes it possible to query your TiVo for information about recorded content,
such as a show's download URL, and space consumed.
WWW: http://search.cpan.org/dist/Net-TiVo/
Author: Christopher Boumenot <boumenot@gmail.com>
PR: ports/107752
Submitted by: Christopher Boumenot <boumenot at gmail.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/p5-Net-TiVo/Makefile | 35 | ||||
-rw-r--r-- | net/p5-Net-TiVo/distinfo | 3 | ||||
-rw-r--r-- | net/p5-Net-TiVo/pkg-descr | 6 | ||||
-rw-r--r-- | net/p5-Net-TiVo/pkg-plist | 8 |
5 files changed, 53 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index 4342f9b4298d..414088b14cc5 100644 --- a/net/Makefile +++ b/net/Makefile @@ -492,6 +492,7 @@ SUBDIR += p5-Net-TCLink SUBDIR += p5-Net-Telnet SUBDIR += p5-Net-Telnet-Netscreen + SUBDIR += p5-Net-TiVo SUBDIR += p5-Net-Traceroute SUBDIR += p5-Net-Traceroute6 SUBDIR += p5-Net-VNC diff --git a/net/p5-Net-TiVo/Makefile b/net/p5-Net-TiVo/Makefile new file mode 100644 index 000000000000..75a0df9ff6f0 --- /dev/null +++ b/net/p5-Net-TiVo/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: Net-TiVo +# Date created: Jan 10 2006 +# Whom: Christopher Boumenot <boumenot@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= Net-TiVo +PORTVERSION= 0.05 +CATEGORIES= net perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Net +PKGNAMEPREFIX= p5- + +MAINTAINER= boumenot@gmail.com +COMMENT= Framework for accessing TiVo using XML/HTTP + +BUILD_DEPENDS= ${SITE_PERL}/LWP/UserAgent.pm:${PORTSDIR}/www/p5-libwww \ + ${SITE_PERL}/XML/Simple.pm:${PORTSDIR}/textproc/p5-XML-Simple \ + ${SITE_PERL}/Log/Log4perl.pm:${PORTSDIR}/devel/p5-Log-Log4perl +RUN_DEPENDS= ${BUILD_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= Net::TiVo.3 \ + Net::TiVo::Show.3 \ + Net::TiVo::Folder.3 + +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 500801 +IGNORE= requires perl 5.8.x or later. Install lang/perl58 then try again +.endif + +.include <bsd.port.post.mk> diff --git a/net/p5-Net-TiVo/distinfo b/net/p5-Net-TiVo/distinfo new file mode 100644 index 000000000000..8c3238453191 --- /dev/null +++ b/net/p5-Net-TiVo/distinfo @@ -0,0 +1,3 @@ +MD5 (Net-TiVo-0.05.tar.gz) = 03f913678af1fe047f3d623abf7e6307 +SHA256 (Net-TiVo-0.05.tar.gz) = 42af48d8078f72bbc4a4417928a643337a96e8056742a651170ba316a039de73 +SIZE (Net-TiVo-0.05.tar.gz) = 8031 diff --git a/net/p5-Net-TiVo/pkg-descr b/net/p5-Net-TiVo/pkg-descr new file mode 100644 index 000000000000..867a308ea712 --- /dev/null +++ b/net/p5-Net-TiVo/pkg-descr @@ -0,0 +1,6 @@ +Net::TiVo provides an object-oriented interface to TiVo's REST interface. This +makes it possible to query your TiVo for information about recorded content, +such as a show's download URL, and space consumed. + +WWW: http://search.cpan.org/dist/Net-TiVo/ +Author: Christopher Boumenot <boumenot@gmail.com> diff --git a/net/p5-Net-TiVo/pkg-plist b/net/p5-Net-TiVo/pkg-plist new file mode 100644 index 000000000000..0c6b339e9da8 --- /dev/null +++ b/net/p5-Net-TiVo/pkg-plist @@ -0,0 +1,8 @@ +%%SITE_PERL%%/Net/TiVo.pm +%%SITE_PERL%%/Net/TiVo/Folder.pm +%%SITE_PERL%%/Net/TiVo/Show.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/TiVo/.packlist +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/TiVo +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net +@dirrm %%SITE_PERL%%/Net/TiVo +@dirrmtry %%SITE_PERL%%/Net |