blob: 97193e2759b5f96d5ae2b0c811dfb4930c7a387c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= GraphViz2
PORTVERSION= 2.20
CATEGORIES= graphics perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:RSAVAGE
PKGNAMEPREFIX= p5-
EXTRACT_SUFX= .tgz
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Wrapper for AT&T Graphviz
LICENSE= ART20
BUILD_DEPENDS= ${LOCALBASE}/bin/dot:${PORTSDIR}/graphics/graphviz \
p5-Algorithm-Dependency>=1.110:${PORTSDIR}/devel/p5-Algorithm-Dependency \
p5-Capture-Tiny>=0.10:${PORTSDIR}/devel/p5-Capture-Tiny \
p5-Class-ISA>=0.36:${PORTSDIR}/devel/p5-Class-ISA \
p5-Class-Load>=0.17:${PORTSDIR}/devel/p5-Class-Load \
p5-Config-Tiny>=2.14:${PORTSDIR}/devel/p5-Config-Tiny \
p5-DBI>=1.616:${PORTSDIR}/databases/p5-DBI \
p5-Data-Section-Simple>=0.02:${PORTSDIR}/devel/p5-Data-Section-Simple \
p5-Date-Simple>=3.03:${PORTSDIR}/devel/p5-Date-Simple \
p5-File-HomeDir>=0.99:${PORTSDIR}/devel/p5-File-HomeDir \
p5-File-Slurp>=9999.19:${PORTSDIR}/devel/p5-File-Slurp \
p5-File-Which>=1.09:${PORTSDIR}/sysutils/p5-File-Which \
p5-HTML-Entities-Interpolate>=1.04:${PORTSDIR}/textproc/p5-HTML-Entities-Interpolate \
p5-HTML-Tree>=4.2:${PORTSDIR}/www/p5-HTML-Tree \
p5-HTTP-Tiny>=0.012:${PORTSDIR}/www/p5-HTTP-Tiny \
p5-IPC-Run3>=0.046:${PORTSDIR}/devel/p5-IPC-Run3 \
p5-Log-Handler>=0.71:${PORTSDIR}/devel/p5-Log-Handler \
p5-Moo>=1.002000:${PORTSDIR}/devel/p5-Moo \
p5-Parse-RecDescent>=1.965.001:${PORTSDIR}/devel/p5-Parse-RecDescent \
p5-Path-Tiny>=0.025:${PORTSDIR}/devel/p5-Path-Tiny \
p5-PathTools>=3.3300:${PORTSDIR}/devel/p5-PathTools \
p5-Perl6-Slurp>=0.05.1003:${PORTSDIR}/devel/p5-Perl6-Slurp \
p5-Scalar-List-Utils>=1.23:${PORTSDIR}/lang/p5-Scalar-List-Utils \
p5-Set-Array>=0.23:${PORTSDIR}/devel/p5-Set-Array \
p5-Text-Xslate>=1.2000:${PORTSDIR}/textproc/p5-Text-Xslate \
p5-Tree-DAG_Node>=1.06:${PORTSDIR}/devel/p5-Tree-DAG_Node \
p5-Try-Tiny>=0.09:${PORTSDIR}/lang/p5-Try-Tiny \
p5-XML-Bare>=0:${PORTSDIR}/textproc/p5-XML-Bare \
p5-XML-Tiny>=2.06:${PORTSDIR}/textproc/p5-XML-Tiny \
p5-parent>=0.225:${PORTSDIR}/devel/p5-parent
RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Test-Pod>=1.45:${PORTSDIR}/devel/p5-Test-Pod
OPTIONS_DEFINE= EXAMPLES
USE_PERL5= 5.14.2+ configure
USES= perl5
MAN3= GraphViz2.3 \
GraphViz2::Config.3 \
GraphViz2::DBI.3 \
GraphViz2::Data::Grapher.3 \
GraphViz2::Filer.3 \
GraphViz2::Parse::ISA.3 \
GraphViz2::Parse::RecDescent.3 \
GraphViz2::Parse::Regexp.3 \
GraphViz2::Parse::STT.3 \
GraphViz2::Parse::XML.3 \
GraphViz2::Parse::Yacc.3 \
GraphViz2::Parse::Yapp.3 \
GraphViz2::Utils.3
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MEXAMPLES}
${MKDIR} ${EXAMPLESDIR}/
${INSTALL_DATA} ${WRKSRC}/scripts/* ${EXAMPLESDIR}/
.endif
.include <bsd.port.mk>
|