e69b3cc982
"WWW::Mechanize", or Mech for short, helps you automate interaction with a website. It supports performing a sequence of page fetches including following links and submitting forms. Each fetched page is parsed and its links and forms are extracted. A link or a form can be selected, form fields can be filled and the next page can be fetched. Mech also stores a history of the URLs you've visited, which can be queried and revisited. ok alek@
34 lines
728 B
Makefile
34 lines
728 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2005/04/01 19:57:26 msf Exp $
|
|
|
|
COMMENT= "handy web browsing in a Perl object"
|
|
|
|
DISTNAME= WWW-Mechanize-1.12
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= www perl5
|
|
|
|
MAINTAINER= Mathieu Sauve-Frankel <msf@openbsd.org>
|
|
|
|
# Artistic + GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=WWW/}
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
RUN_DEPENDS= :p5-libwww->=5.78:www/p5-libwww
|
|
|
|
REGRESS_DEPENDS= ::devel/p5-Test-Memory-Cycle \
|
|
::devel/p5-Test-Pod \
|
|
::devel/p5-Test-Pod-Coverage \
|
|
::devel/p5-Test-Taint \
|
|
::devel/p5-Test-Warn
|
|
|
|
CONFIGURE_STYLE= perl
|
|
CONFIGURE_ARGS= --nolive
|
|
|
|
PKG_ARCH= *
|
|
|
|
.include <bsd.port.mk>
|