e921b80023
This module implements a HTTP proxy, using a HTTP::Daemon to accept client connections, and a LWP::UserAgent to ask for the requested pages. The most interesting feature of this proxy object is its ability to filter the HTTP requests and responses through user-defined filters. from Sam Smith <s at msmith.net>
27 lines
486 B
Makefile
27 lines
486 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2006/01/15 15:16:11 sturm Exp $
|
|
|
|
COMMENT= "pure Perl HTTP proxy"
|
|
|
|
DISTNAME= HTTP-Proxy-0.17
|
|
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:=HTTP/}
|
|
|
|
REGRESS_DEPENDS=${RUN_DEPENDS}
|
|
RUN_DEPENDS= ::www/p5-libwww
|
|
|
|
CONFIGURE_STYLE=perl
|
|
|
|
PKG_ARCH= *
|
|
|
|
.include <bsd.port.mk>
|