diff options
-rw-r--r-- | CVSROOT/modules | 2 | ||||
-rw-r--r-- | MOVED | 1 | ||||
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/p5-WWW-Mechanize-FormFiller/Makefile | 63 | ||||
-rw-r--r-- | devel/p5-WWW-Mechanize-FormFiller/distinfo | 2 | ||||
-rw-r--r-- | devel/p5-WWW-Mechanize-FormFiller/pkg-descr | 10 | ||||
-rw-r--r-- | devel/p5-WWW-Mechanize-FormFiller/pkg-plist | 20 | ||||
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/p5-WWW-Mechanize-FormFiller/Makefile | 2 |
9 files changed, 4 insertions, 98 deletions
diff --git a/CVSROOT/modules b/CVSROOT/modules index 1e806a9..3ae2e73 100644 --- a/CVSROOT/modules +++ b/CVSROOT/modules @@ -7305,7 +7305,7 @@ p5-WWW-Curl ports/www/p5-WWW-Curl p5-WWW-IMDb ports/www/p5-WWW-IMDb p5-WWW-Link ports/www/p5-WWW-Link p5-WWW-Mechanize ports/www/p5-WWW-Mechanize -p5-WWW-Mechanize-FormFiller ports/devel/p5-WWW-Mechanize-FormFiller +p5-WWW-Mechanize-FormFiller ports/www/p5-WWW-Mechanize-FormFiller p5-WWW-Mechanize-Shell ports/www/p5-WWW-Mechanize-Shell p5-WWW-Robot ports/www/p5-WWW-Robot p5-WWW-Search ports/www/p5-WWW-Search @@ -1189,3 +1189,4 @@ net/kopete|net/kdenetwork3|2004-07-02|kopete was integrated into the kdenetwork3 www/p5-Flash-FLAP|www/p5-AMF-Perl|2004-07-04|renamed net/gnomenetwork|net/gnomenettool|2004-07-05|gnomenettool replaces the unmaintained gnomenetwork misc/cfe||2004-07-06|no longer exists +devel/p5-WWW-Mechanize-FormFiller|www/p5-WWW-Mechanize-FormFiller|2004-07-09|moved to correct category (www) diff --git a/devel/Makefile b/devel/Makefile index e1c7587..7b16b85 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -980,7 +980,6 @@ SUBDIR += p5-VCP SUBDIR += p5-VCS SUBDIR += p5-VCS-CVS - SUBDIR += p5-WWW-Mechanize-FormFiller SUBDIR += p5-Want SUBDIR += p5-base SUBDIR += p5-enum diff --git a/devel/p5-WWW-Mechanize-FormFiller/Makefile b/devel/p5-WWW-Mechanize-FormFiller/Makefile deleted file mode 100644 index d24ef58..0000000 --- a/devel/p5-WWW-Mechanize-FormFiller/Makefile +++ /dev/null @@ -1,63 +0,0 @@ -# New Ports Collection Makefile for: p5-WWW-Mechanize-FormFiller -# Date created: 2004-07-07 -# Whom: Anton Berezin <tobez@FreeBSD.org> -# $FreeBSD$ - -PORTNAME= WWW-Mechanize-FormFiller -PORTVERSION= 0.05 -CATEGORIES= devel perl5 -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} -MASTER_SITE_SUBDIR= WWW -PKGNAMEPREFIX= p5- - -MAINTAINER= perl@FreeBSD.org -COMMENT= Perl framework to automate HTML forms - -BUILD_DEPENDS= ${SITE_PERL}/Data/Random.pm:${PORTSDIR}/devel/p5-Data-Random \ - ${SITE_PERL}/HTML/Form.pm:${PORTSDIR}/www/p5-libwww \ - ${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple -RUN_DEPENDS= ${BUILD_DEPENDS} - -PERL_CONFIGURE= yes - -MAN3= WWW::Mechanize::FormFiller.3 \ - WWW::Mechanize::FormFiller::Value.3 \ - WWW::Mechanize::FormFiller::Value::Callback.3 \ - WWW::Mechanize::FormFiller::Value::Default.3 \ - WWW::Mechanize::FormFiller::Value::Fixed.3 \ - WWW::Mechanize::FormFiller::Value::Interactive.3 \ - WWW::Mechanize::FormFiller::Value::Keep.3 \ - WWW::Mechanize::FormFiller::Value::Random.3 \ - WWW::Mechanize::FormFiller::Value::Random::Chars.3 \ - WWW::Mechanize::FormFiller::Value::Random::Date.3 \ - WWW::Mechanize::FormFiller::Value::Random::Word.3 - -FIX_USE_WARN= lib/WWW/Mechanize/FormFiller.pm \ - lib/WWW/Mechanize/FormFiller/Value/Interactive.pm \ - t/embedded-WWW-Mechanize-FormFiller-Value-Interactive.t \ - t/embedded-WWW-Mechanize-FormFiller.t - -FIX_USE_BASE= lib/WWW/Mechanize/FormFiller/Value/Callback.pm \ - lib/WWW/Mechanize/FormFiller/Value/Default.pm \ - lib/WWW/Mechanize/FormFiller/Value/Fixed.pm \ - lib/WWW/Mechanize/FormFiller/Value/Interactive.pm \ - lib/WWW/Mechanize/FormFiller/Value/Keep.pm \ - lib/WWW/Mechanize/FormFiller/Value/Random/Chars.pm \ - lib/WWW/Mechanize/FormFiller/Value/Random/Date.pm \ - lib/WWW/Mechanize/FormFiller/Value/Random/Word.pm \ - lib/WWW/Mechanize/FormFiller/Value/Random.pm - -.include <bsd.port.pre.mk> - -post-patch: -.for _patch in ${FIX_USE_WARN} - ${MV} ${WRKSRC}/${_patch} ${WRKSRC}/${_patch}.orig - ${ECHO_CMD} 'BEGIN{if($$] < 5.006 && !$$::INC{"warnings.pm"}){ eval q|package warnings;sub import{$$^W=1}sub unimport{$$^W=0;1}$$::INC{"warnings.pm"}=1|}}' >${WRKSRC}/${_patch} - ${CAT} ${WRKSRC}/${_patch}.orig >>${WRKSRC}/${_patch} - ${RM} ${WRKSRC}/${_patch}.orig -.endfor -.for _patch in ${FIX_USE_BASE} - ${PERL} -pi -e 's/(use base .([\w:]+).;)/use $$2;$$1/' ${WRKSRC}/${_patch} -.endfor - -.include <bsd.port.post.mk> diff --git a/devel/p5-WWW-Mechanize-FormFiller/distinfo b/devel/p5-WWW-Mechanize-FormFiller/distinfo deleted file mode 100644 index 37d5c61..0000000 --- a/devel/p5-WWW-Mechanize-FormFiller/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (WWW-Mechanize-FormFiller-0.05.tar.gz) = ffd7f488439c202d45ac6081b268eb38 -SIZE (WWW-Mechanize-FormFiller-0.05.tar.gz) = 17179 diff --git a/devel/p5-WWW-Mechanize-FormFiller/pkg-descr b/devel/p5-WWW-Mechanize-FormFiller/pkg-descr deleted file mode 100644 index 92f6478..0000000 --- a/devel/p5-WWW-Mechanize-FormFiller/pkg-descr +++ /dev/null @@ -1,10 +0,0 @@ -The module is intended as a simple way to fill out HTML forms from a set -of predetermined values. You set up the form filler with value elements, -retrieve the HTML form, and let the form filler loose on that form. - -There are value classes provided for many tasks - fixed values, values -to be queried interactively from the user, values taken randomly from a -list of values and values specified through a callback to some Perl -code. - -WWW: http://search.cpan.org/search?dist=WWW-Mechanize-FormFiller diff --git a/devel/p5-WWW-Mechanize-FormFiller/pkg-plist b/devel/p5-WWW-Mechanize-FormFiller/pkg-plist deleted file mode 100644 index c1a81f1..0000000 --- a/devel/p5-WWW-Mechanize-FormFiller/pkg-plist +++ /dev/null @@ -1,20 +0,0 @@ -%%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW/Mechanize/FormFiller/.packlist -%%SITE_PERL%%/WWW/Mechanize/FormFiller.pm -%%SITE_PERL%%/WWW/Mechanize/FormFiller/Value.pm -%%SITE_PERL%%/WWW/Mechanize/FormFiller/Value/Keep.pm -%%SITE_PERL%%/WWW/Mechanize/FormFiller/Value/Random.pm -%%SITE_PERL%%/WWW/Mechanize/FormFiller/Value/Fixed.pm -%%SITE_PERL%%/WWW/Mechanize/FormFiller/Value/Default.pm -%%SITE_PERL%%/WWW/Mechanize/FormFiller/Value/Interactive.pm -%%SITE_PERL%%/WWW/Mechanize/FormFiller/Value/Callback.pm -%%SITE_PERL%%/WWW/Mechanize/FormFiller/Value/Random/Date.pm -%%SITE_PERL%%/WWW/Mechanize/FormFiller/Value/Random/Chars.pm -%%SITE_PERL%%/WWW/Mechanize/FormFiller/Value/Random/Word.pm -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW/Mechanize/FormFiller -@dirrm %%SITE_PERL%%/WWW/Mechanize/FormFiller/Value/Random -@dirrm %%SITE_PERL%%/WWW/Mechanize/FormFiller/Value -@dirrm %%SITE_PERL%%/WWW/Mechanize/FormFiller -@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW/Mechanize 2>/dev/null || true -@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW 2>/dev/null || true -@unexec rmdir %D/%%SITE_PERL%%/WWW/Mechanize 2>/dev/null || true -@unexec rmdir %D/%%SITE_PERL%%/WWW 2>/dev/null || true diff --git a/www/Makefile b/www/Makefile index 6488135..2dd52c2 100644 --- a/www/Makefile +++ b/www/Makefile @@ -496,6 +496,7 @@ SUBDIR += p5-WWW-IMDb SUBDIR += p5-WWW-Link SUBDIR += p5-WWW-Mechanize + SUBDIR += p5-WWW-Mechanize-FormFiller SUBDIR += p5-WWW-Mechanize-Shell SUBDIR += p5-WWW-Robot SUBDIR += p5-WWW-Search diff --git a/www/p5-WWW-Mechanize-FormFiller/Makefile b/www/p5-WWW-Mechanize-FormFiller/Makefile index d24ef58..9306acb 100644 --- a/www/p5-WWW-Mechanize-FormFiller/Makefile +++ b/www/p5-WWW-Mechanize-FormFiller/Makefile @@ -5,7 +5,7 @@ PORTNAME= WWW-Mechanize-FormFiller PORTVERSION= 0.05 -CATEGORIES= devel perl5 +CATEGORIES= www perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= WWW PKGNAMEPREFIX= p5- |