mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
10f22ecd6d
- Remove dependencies on modules distributed as part of perl core - Remove references to FreeBSD < 8 and perl < 5.16 - Ensure that DOCS and EXAMPLES options exist for ports installing PORTDOCS or PORTEXAMPLES - Reduce unnecessary inclusions of bsd.port.options.mk by using OPTIONS helpers and the like - Fix some cases where dependencies were only assigned to BUILD_DEPENDS - Fix a few of the cases where dependencies were only assigned to RUN_DEPENDS. This one happens in many, many ports. I only applied it in cases where it interfered with 'make test' but it should maybe be done more generally. - Mute ${MKDIR} in installation - Parethesize compound commands - In www/p5-URI-Fetch, remove the ZLIB option that wasn't used
28 lines
830 B
Makefile
28 lines
830 B
Makefile
# Created by: Seamus Venasse <svenasse@polaris.ca>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Data-FormValidator
|
|
PORTVERSION= 4.81
|
|
PORTREVISION= 2
|
|
CATEGORIES= textproc perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= Validates user input (usually from an HTML form) based
|
|
|
|
BUILD_DEPENDS= p5-CGI>=3.48:${PORTSDIR}/www/p5-CGI \
|
|
p5-Date-Calc>=5.0:${PORTSDIR}/devel/p5-Date-Calc \
|
|
p5-Email-Valid>=0:${PORTSDIR}/mail/p5-Email-Valid \
|
|
p5-File-MMagic>=1.17:${PORTSDIR}/devel/p5-File-MMagic \
|
|
p5-Image-Size>=0:${PORTSDIR}/graphics/p5-Image-Size \
|
|
p5-MIME-Types>=1.005:${PORTSDIR}/mail/p5-MIME-Types \
|
|
p5-Perl6-Junction>=1.10:${PORTSDIR}/devel/p5-Perl6-Junction \
|
|
p5-Regexp-Common>=0:${PORTSDIR}/textproc/p5-Regexp-Common
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USES= perl5
|
|
USE_PERL5= modbuild
|
|
|
|
.include <bsd.port.mk>
|