a19ef16277
This class works just like LWP::UserAgent (and is based on it, by being a subclass of it), except that when you use it to get a web page but run into a possibly-temporary error (like a DNS lookup timeout), it'll wait a few seconds and retry a few times. from Sam Smith <s at msmith.net>
27 lines
516 B
Makefile
27 lines
516 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2004/12/21 20:44:28 sturm Exp $
|
|
|
|
COMMENT= "virtual browser that retries on errors"
|
|
|
|
DISTNAME= LWP-UserAgent-Determined-1.03
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= www perl5
|
|
|
|
MAINTAINER= Sam Smith <s@msmith.net>
|
|
|
|
# Perl
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=LWP/}
|
|
|
|
RUN_DEPENDS= ::www/p5-libwww
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
|
|
CONFIGURE_STYLE=perl
|
|
|
|
PKG_ARCH= *
|
|
|
|
.include <bsd.port.mk>
|