diff options
author | Cheng-Lung Sung <clsung@FreeBSD.org> | 2009-08-11 12:30:24 +0000 |
---|---|---|
committer | Cheng-Lung Sung <clsung@FreeBSD.org> | 2009-08-11 12:30:24 +0000 |
commit | 77762db2ae673517337f15d09174537e6e7a4595 (patch) | |
tree | 9782514e052624fa25ca93c1d939bbeb1478e84a /graphics/p5-GraphViz-Data-Structure | |
parent | d99def8e48b4e4c1d6c84cecbc6393585c150bbd (diff) |
- unbreak
Notes
Notes:
svn path=/head/; revision=239317
Diffstat (limited to 'graphics/p5-GraphViz-Data-Structure')
-rw-r--r-- | graphics/p5-GraphViz-Data-Structure/Makefile | 2 | ||||
-rw-r--r-- | graphics/p5-GraphViz-Data-Structure/files/patch-Makefile.PL | 11 | ||||
-rw-r--r-- | graphics/p5-GraphViz-Data-Structure/pkg-descr | 2 |
3 files changed, 13 insertions, 2 deletions
diff --git a/graphics/p5-GraphViz-Data-Structure/Makefile b/graphics/p5-GraphViz-Data-Structure/Makefile index ea3984d1d526..57072f0896c6 100644 --- a/graphics/p5-GraphViz-Data-Structure/Makefile +++ b/graphics/p5-GraphViz-Data-Structure/Makefile @@ -20,8 +20,6 @@ BUILD_DEPENDS= ${SITE_PERL}/GraphViz.pm:${PORTSDIR}/graphics/p5-GraphViz \ ${LOCALBASE}/bin/dot:${PORTSDIR}/graphics/graphviz RUN_DEPENDS= ${BUILD_DEPENDS} -BROKEN= does not configure - PERL_CONFIGURE= yes MAN3= GraphViz::Data::Structure.3 diff --git a/graphics/p5-GraphViz-Data-Structure/files/patch-Makefile.PL b/graphics/p5-GraphViz-Data-Structure/files/patch-Makefile.PL new file mode 100644 index 000000000000..371f5cbe1c2e --- /dev/null +++ b/graphics/p5-GraphViz-Data-Structure/files/patch-Makefile.PL @@ -0,0 +1,11 @@ +--- Makefile.PL.orig 2007-09-14 02:17:00.000000000 +0800 ++++ Makefile.PL 2009-08-11 20:25:38.000000000 +0800 +@@ -8,7 +8,7 @@ + die "You must install the graphviz package (http://www.graphviz.org) before using this module.\n"; + } + else { +- my (@v) = ($dot_version =~ /dot (?:- Graphviz )?version (\d+)\.(\d+)/); ++ my (@v) = ($dot_version =~ /dot (?:- Graphviz )?version (\d+)\.(\d+)/i); + if ( $v[0] < 2 || $v[1] < 2 ) { + die "You must have at least version 2.2 of dot to use this module (found $v[0].$v[1])"; + } diff --git a/graphics/p5-GraphViz-Data-Structure/pkg-descr b/graphics/p5-GraphViz-Data-Structure/pkg-descr index f67532f448f3..1e7b86a3f711 100644 --- a/graphics/p5-GraphViz-Data-Structure/pkg-descr +++ b/graphics/p5-GraphViz-Data-Structure/pkg-descr @@ -14,3 +14,5 @@ It is provided as an alternative to GraphViz::Data::Grapher. Differences: doesn't by default. - GraphViz::Data:Structure can parse out globs and CODE references (almost as well as the debugger does). + +WWW: http://search.cpan.org/dist/GraphViz-Data-Structure/ |