head	1.21;
access;
symbols
	RELEASE_8_3_0:1.17
	RELEASE_9_0_0:1.15
	RELEASE_7_4_0:1.14
	RELEASE_8_2_0:1.14
	RELEASE_6_EOL:1.14
	RELEASE_8_1_0:1.12
	RELEASE_7_3_0:1.12
	RELEASE_8_0_0:1.12
	RELEASE_7_2_0:1.11
	RELEASE_7_1_0:1.10
	RELEASE_6_4_0:1.10
	RELEASE_5_EOL:1.10
	RELEASE_7_0_0:1.9
	RELEASE_6_3_0:1.9
	PRE_XORG_7:1.7
	RELEASE_4_EOL:1.7
	RELEASE_6_2_0:1.7
	RELEASE_6_1_0:1.2
	RELEASE_5_5_0:1.2
	RELEASE_6_0_0:1.1;
locks; strict;
comment	@# @;


1.21
date	2012.12.17.12.28.02;	author svnexp;	state Exp;
branches;
next	1.20;

1.20
date	2012.11.17.06.02.54;	author svnexp;	state Exp;
branches;
next	1.19;

1.19
date	2012.06.10.18.42.45;	author swills;	state Exp;
branches;
next	1.18;

1.18
date	2012.05.31.11.19.31;	author bapt;	state Exp;
branches;
next	1.17;

1.17
date	2012.03.13.16.15.34;	author pgollucci;	state Exp;
branches;
next	1.16;

1.16
date	2012.03.08.18.45.36;	author pgollucci;	state Exp;
branches;
next	1.15;

1.15
date	2011.12.01.10.40.55;	author tobez;	state Exp;
branches;
next	1.14;

1.14
date	2010.09.21.13.05.06;	author mm;	state Exp;
branches;
next	1.13;

1.13
date	2010.09.21.07.56.43;	author mm;	state Exp;
branches;
next	1.12;

1.12
date	2009.07.22.16.27.07;	author pgollucci;	state Exp;
branches;
next	1.11;

1.11
date	2008.11.11.20.55.57;	author leeym;	state Exp;
branches;
next	1.10;

1.10
date	2008.04.17.14.30.17;	author araujo;	state Exp;
branches;
next	1.9;

1.9
date	2007.09.10.00.36.03;	author linimon;	state Exp;
branches;
next	1.8;

1.8
date	2007.09.08.01.11.41;	author linimon;	state Exp;
branches;
next	1.7;

1.7
date	2006.07.25.08.52.12;	author clsung;	state Exp;
branches;
next	1.6;

1.6
date	2006.07.15.15.00.18;	author lth;	state Exp;
branches;
next	1.5;

1.5
date	2006.06.20.20.42.13;	author lth;	state Exp;
branches;
next	1.4;

1.4
date	2006.04.29.12.07.12;	author lth;	state Exp;
branches;
next	1.3;

1.3
date	2006.03.15.12.52.19;	author lth;	state Exp;
branches;
next	1.2;

1.2
date	2005.10.11.10.35.20;	author lth;	state Exp;
branches;
next	1.1;

1.1
date	2005.07.30.19.44.28;	author lth;	state Exp;
branches;
next	;


desc
@@


1.21
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/309086
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
## SVN ##
## SVN ## ------------------------------------------------------------------------
## SVN ## r309086 | az | 2012-12-17 12:24:18 +0000 (Mon, 17 Dec 2012) | 3 lines
## SVN ##
## SVN ## Cleanup supporting perl version 5.8 and 5.10,
## SVN ## lang/perl5.8 and lang/5.10 will be removed from ports tree soon.
## SVN ##
## SVN ## ------------------------------------------------------------------------
## SVN ##
@
text
@# New ports collection makefile for:	www/p5-URI-Fetch
# Date created:				30 July 2005
# Whom:					Lars Thegler <lth@@FreeBSD.org>
#
# $FreeBSD: head/www/p5-URI-Fetch/Makefile 309086 2012-12-17 12:24:18Z az $
#

PORTNAME=	URI-Fetch
PORTVERSION=	0.090
CATEGORIES=	www perl5
MASTER_SITES=	CPAN
PKGNAMEPREFIX=	p5-
DISTNAME=	${PORTNAME}-${PORTVERSION:C/0$//}

MAINTAINER=	perl@@FreeBSD.org
COMMENT=	Smart URI fetching/caching

RUN_DEPENDS=	p5-Class-ErrorHandler>=0:${PORTSDIR}/devel/p5-Class-ErrorHandler \
		p5-URI>=0:${PORTSDIR}/net/p5-URI \
		p5-libwww>=0:${PORTSDIR}/www/p5-libwww
BUILD_DEPENDS:=	${RUN_DEPENDS}

OPTIONS_DEFINE=	ZLIB CACHE
OPTIONS_DEFAULT=	ZLIB

ZLIB_DESC=	GZIP Support
CACHE_DESC=	Caching Support

PERL_CONFIGURE=	yes

MAN3=	URI::Fetch.3 \
	URI::Fetch::Response.3

.include <bsd.port.pre.mk>

.if ${PORT_OPTIONS:MCACHE}
RUN_DEPENDS+=	p5-Cache>=0:${PORTSDIR}/devel/p5-Cache
.endif

post-patch:
	${PERL} -pi -e '$$_ = "" if m|auto_install|' ${WRKSRC}/Makefile.PL

.include <bsd.port.post.mk>
@


1.20
log
@Switch exporter over
@
text
@d5 1
a5 1
# $FreeBSD: head/www/p5-URI-Fetch/Makefile 300897 2012-07-14 14:29:18Z beat $
a35 6
.if ${PORT_OPTIONS:MZLIB}
. if ${PERL_LEVEL} < 500903
RUN_DEPENDS+=	p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress
. endif
.endif

@


1.19
log
@- Convert all remaining instances of BUILD_DEPENDS=${RUN_DEPENDS} or
  RUN_DEPENDS=${BUILD_DEPENDS} to use := which portlint has warned
  about for a while.

PR:		ports/168208
Approved by:	portmgr (miwi)
@
text
@d5 1
a5 1
# $FreeBSD$
@


1.18
log
@Convert to new options framework
@
text
@d21 1
a21 1
BUILD_DEPENDS=	${RUN_DEPENDS}
@


1.17
log
@- Revert ports/165605 as requested by portmgr@@

Note: devel/p5-B-Size and devel/p5-Devel-Arena
where intentionally not restored.

PR:             ports/165605
Approved by:    portmgr (bapt)
Feature safe:   yes (I sure hope so)
@
text
@d23 5
a27 2
OPTIONS=	ZLIB "GZIP Support" on \
		CACHE "Caching Support" off
d36 1
a36 1
.if !defined(WITHOUT_ZLIB)
d42 1
a42 1
.if defined(WITH_CACHE)
@


1.16
log
@- Remove ports that only work with < perl 5.12 (devel/p5-B-Size, devel/p5-Devel-Arena)
- Remove conditionals for PERL_LEVEL < 501200
- Remove regression-test targets b/c this will be centralized in Mk/bsd.perl.mk
- Other minor cleanups
  RUN_DEPENDS = ${BUILD_DEPENDS} -> RUN_DEPENDS:= ${BUILD_DEPENDS}

PR:             ports/165605
Submitted by:   pgollucci (myself)
Approved by:    portmgr (linimon)
Exp Run by:     linimon
Tested by:      make index
@
text
@d31 7
a37 1
.include <bsd.port.options.mk>
d46 1
a46 1
.include <bsd.port.mk>
@


1.15
log
@Update to 0.09(0).

Changes:	http://search.cpan.org/dist/URI-Fetch/Changes
Feature safe:	yes
@
text
@d31 1
a31 7
.include <bsd.port.pre.mk>

.if !defined(WITHOUT_ZLIB)
. if ${PERL_LEVEL} < 500903
RUN_DEPENDS+=	p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress
. endif
.endif
d40 1
a40 1
.include <bsd.port.post.mk>
@


1.14
log
@- Fix previous commit by using bsd.port.[pre|post].mk
@
text
@d9 1
a9 2
PORTVERSION=	0.080
PORTREVISION=	2
@


1.13
log
@Change dependency on old p5-Compress-Zlib, p5-IO-Compress-Base,
p5-IO-Compress-Zlib and p5-IO-Compress-Bzip2 modules to p5-IO-Compress.
Explicitly depend on p5-IO-Compress only if PERL_LEVEL < 500903
Bump PORTREVISION
@
text
@d32 2
d47 1
a47 1
.include <bsd.port.mk>
@


1.12
log
@- lang/perl5.6 is dead, remove PERL_LEVEL/PERL_VERSION < 500801 checks

PR:             ports/135398
Tested by:      2 -exp runs by pav
Approved by:    portmgr (pav)
@
text
@d10 1
a10 1
PORTREVISION=	1
d33 3
a35 1
RUN_DEPENDS+=	p5-Compress-Zlib>=0:${PORTSDIR}/archivers/p5-Compress-Zlib
@


1.11
log
@- simplify dependency
- bump PORTREVISION
@
text
@a31 9
post-patch:
	${PERL} -pi -e '$$_ = "" if m|auto_install|' ${WRKSRC}/Makefile.PL

.include <bsd.port.pre.mk>

.if ${PERL_LEVEL} < 500703
RUN_DEPENDS+=	p5-Storable>=0:${PORTSDIR}/devel/p5-Storable
.endif

d40 4
a43 1
.include <bsd.port.post.mk>
@


1.10
log
@- Take advantage of CPAN macro from bsd.sites.mk, change ${MASTER_SITE_PERL_CPAN} to CPAN.

PR:		ports/122674
Submitted by:	Philip M. Gollucci <pgollucci@@p6m7g8.com>
Reworked by:	araujo (myself)
Approved by:	portmgr (pav)
@
text
@d10 1
d19 4
a22 5
BUILD_DEPENDS=	${SITE_PERL}/Class/ErrorHandler.pm:${PORTSDIR}/devel/p5-Class-ErrorHandler \
		${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww \
		${SITE_PERL}/URI.pm:${PORTSDIR}/net/p5-URI \
		${SITE_PERL}/${PERL_ARCH}/Storable.pm:${PORTSDIR}/devel/p5-Storable
RUN_DEPENDS=	${BUILD_DEPENDS}
d27 7
a33 1
PERL_MODBUILD=	yes
d37 4
a41 1
BUILD_DEPENDS+=	p5-Compress-Zlib>=0:${PORTSDIR}/archivers/p5-Compress-Zlib
a45 1
BUILD_DEPENDS+=	p5-Cache>=0:${PORTSDIR}/devel/p5-Cache
a48 6
MAN3=	URI::Fetch.3 \
	URI::Fetch::Response.3

post-patch:
	${PERL} -pi -e '$$_ = "" if m|auto_install|' ${WRKSRC}/Makefile.PL

@


1.9
log
@Fix up after bsd.perl.mk import.

Hat:	portmgr
@
text
@d11 1
a11 2
MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR=	URI
@


1.8
log
@Welcome bsd.perl.mk.  Add support for constructs such as USE_PERL5=5.8.0+.
Drop support for antique perl.

Work done by:	gabor
Sponsored by:	Google Summer of Code 2007
Hat:		portmgr
@
text
@d28 2
a41 2
PERL_MODBUILD=	yes

@


1.7
log
@- update to 0.08
@
text
@a47 3
.if ${PERL_LEVEL} < 500600
IGNORE=	requires Perl 5.6 or later. Please install lang/perl5 or lang/perl5.8 and try again
.endif
@


1.6
log
@- Update to 0.071
- Assign maintainership to perl@@
@
text
@d9 1
a9 1
PORTVERSION=	0.071
d14 1
@


1.5
log
@Update to 0.07
@
text
@d9 1
a9 1
PORTVERSION=	0.07
d15 1
a15 1
MAINTAINER=	lth@@FreeBSD.org
@


1.4
log
@Update to 0.06
@
text
@d9 1
a9 1
PORTVERSION=	0.06
@


1.3
log
@- Update to 0.05
- Now includes OPTIONS for ZLib and Cache
@
text
@d9 1
a9 1
PORTVERSION=	0.05
@


1.2
log
@Update to 0.04
@
text
@d9 1
a9 1
PORTVERSION=	0.04
d24 15
a46 1
.include <bsd.port.pre.mk>
@


1.1
log
@Add p5-URI-Fetch 0.03, smart URI fetching/caching.
@
text
@d9 1
a9 1
PORTVERSION=	0.03
@

