summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2009-10-11 09:37:45 +0000
committerwiz <wiz@pkgsrc.org>2009-10-11 09:37:45 +0000
commitab9ee164ad780e33df5518da4c3e335819543234 (patch)
tree1ac4159bd4d4b6557458b351116dd83c20a8167d /devel
parent37814daf8bb450bb95b449e3f91c87f8d74b0f14 (diff)
downloadpkgsrc-ab9ee164ad780e33df5518da4c3e335819543234.tar.gz
Initial import of p5-IMDB-Film-0.41:
IMDB::Film is OO Perl interface to the database of films IMDB (www.imdb.com). It allows to retrieve information about movies by its IMDB code or title. Also, there is a possibility to get information about IMDB persons (actors, actresses, directors, etc.) by their name of code.
Diffstat (limited to 'devel')
-rw-r--r--devel/p5-IMDB-Film/DESCR5
-rw-r--r--devel/p5-IMDB-Film/Makefile21
-rw-r--r--devel/p5-IMDB-Film/distinfo6
-rw-r--r--devel/p5-IMDB-Film/patches/patch-aa13
4 files changed, 45 insertions, 0 deletions
diff --git a/devel/p5-IMDB-Film/DESCR b/devel/p5-IMDB-Film/DESCR
new file mode 100644
index 00000000000..7e5f4296c8b
--- /dev/null
+++ b/devel/p5-IMDB-Film/DESCR
@@ -0,0 +1,5 @@
+IMDB::Film is OO Perl interface to the database of films IMDB
+(www.imdb.com). It allows to retrieve information about movies by
+its IMDB code or title. Also, there is a possibility to get
+information about IMDB persons (actors, actresses, directors, etc.)
+by their name of code.
diff --git a/devel/p5-IMDB-Film/Makefile b/devel/p5-IMDB-Film/Makefile
new file mode 100644
index 00000000000..f02c3a24299
--- /dev/null
+++ b/devel/p5-IMDB-Film/Makefile
@@ -0,0 +1,21 @@
+# $NetBSD: Makefile,v 1.1.1.1 2009/10/11 09:37:45 wiz Exp $
+
+DISTNAME= IMDB-Film-0.41
+PKGNAME= p5-${DISTNAME}
+CATEGORIES= devel perl5
+MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=../../authors/id/S/ST/STEPANOV/}
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://search.cpan.org/dist/IMDB-Film/
+COMMENT= Perl module for accessing IMDB (Internet Movie Database)
+
+DEPENDS+= p5-Cache-Cache-[0-9]*:../../devel/p5-Cache-Cache
+DEPENDS+= p5-HTML-TokeParser-Simple>=2.28:../../www/p5-HTML-TokeParser-Simple
+DEPENDS+= p5-libwww>=1.41:../../www/p5-libwww
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+PERL5_PACKLIST= auto/IMDB/Film/.packlist
+
+.include "../../lang/perl5/module.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/devel/p5-IMDB-Film/distinfo b/devel/p5-IMDB-Film/distinfo
new file mode 100644
index 00000000000..f0df39ce67e
--- /dev/null
+++ b/devel/p5-IMDB-Film/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2009/10/11 09:37:45 wiz Exp $
+
+SHA1 (IMDB-Film-0.41.tar.gz) = 33fe5f55f6d85f27e43be2331bf7b6464584bb57
+RMD160 (IMDB-Film-0.41.tar.gz) = bc1b690a9c5903d67d501086b92e02f417e71df6
+Size (IMDB-Film-0.41.tar.gz) = 59313 bytes
+SHA1 (patch-aa) = 130a6cc7a138e42671135d487ecf0904dd88331b
diff --git a/devel/p5-IMDB-Film/patches/patch-aa b/devel/p5-IMDB-Film/patches/patch-aa
new file mode 100644
index 00000000000..53aa1ca8b7c
--- /dev/null
+++ b/devel/p5-IMDB-Film/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1.1.1 2009/10/11 09:37:45 wiz Exp $
+
+--- Makefile.PL.orig 2009-07-07 12:02:11.000000000 +0000
++++ Makefile.PL
+@@ -2,7 +2,7 @@ use ExtUtils::MakeMaker;
+
+ use strict;
+
+-my $online_tests = ExtUtils::MakeMaker::prompt('Do you want to perform online tests during "make test" phase?', 'no') =~ /^\s*(y)/i;
++my $online_tests = '';
+ my $tests = join ' ', glob ($online_tests ? 't/0*.t t/m*.t' : 't/0*.t');
+
+ if($online_tests) {