mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
cb41fc6623
Sponsored by: Absolight
39 lines
795 B
Makefile
39 lines
795 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= Test-XPath
|
|
PORTVERSION= 0.16
|
|
PORTREVISION= 1
|
|
CATEGORIES= lang perl5
|
|
MASTER_SITES= CPAN
|
|
MASTER_SITE_SUBDIR= CPAN:DWHEELER
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= perl@FreeBSD.org
|
|
COMMENT= Test XML and HTML content and structure with XPath expressions
|
|
|
|
LICENSE= ART10 GPLv1+
|
|
LICENSE_COMB= dual
|
|
|
|
RUN_DEPENDS= p5-XML-LibXML>=1.70:textproc/p5-XML-LibXML
|
|
|
|
USES= perl5
|
|
USE_PERL5= modbuild
|
|
|
|
OPTIONS_DEFINE= CSS PODT
|
|
|
|
CSS_DESC= Include CSS selectors
|
|
PODT_DESC= Include Pod package test dependencies
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MCSS}
|
|
RUN_DEPENDS+= p5-HTML-Selector-XPath>=0.06:www/p5-HTML-Selector-XPath
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPODT}
|
|
TEST_DEPENDS+= p5-Pod-Coverage>=0:devel/p5-Pod-Coverage \
|
|
p5-Test-Pod>=1.41:devel/p5-Test-Pod
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|