diff options
author | clsung <clsung@FreeBSD.org> | 2009-08-11 20:30:24 +0800 |
---|---|---|
committer | clsung <clsung@FreeBSD.org> | 2009-08-11 20:30:24 +0800 |
commit | 1f8d9cc5944afa80f45337a5fc3d63c721279979 (patch) | |
tree | 08a78cc12f9c89a2687e30d886b418ad7550e8ce /graphics/p5-GraphViz-Data-Structure | |
parent | eec6c022722c4ad7d25b3b56e5e5fbcd9785f1da (diff) | |
download | freebsd-ports-gnome-1f8d9cc5944afa80f45337a5fc3d63c721279979.tar.gz freebsd-ports-gnome-1f8d9cc5944afa80f45337a5fc3d63c721279979.tar.zst freebsd-ports-gnome-1f8d9cc5944afa80f45337a5fc3d63c721279979.zip |
- unbreak
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/ |