diff options
Diffstat (limited to 'dev-perl/GraphViz')
-rw-r--r-- | dev-perl/GraphViz/ChangeLog | 9 | ||||
-rw-r--r-- | dev-perl/GraphViz/GraphViz-2.03.ebuild | 26 |
2 files changed, 33 insertions, 2 deletions
diff --git a/dev-perl/GraphViz/ChangeLog b/dev-perl/GraphViz/ChangeLog index 7323a8ed43b5..1a3dd6941d8d 100644 --- a/dev-perl/GraphViz/ChangeLog +++ b/dev-perl/GraphViz/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-perl/GraphViz -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/GraphViz/ChangeLog,v 1.4 2007/01/15 22:32:51 mcummings Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/GraphViz/ChangeLog,v 1.5 2008/08/02 10:43:27 tove Exp $ + +*GraphViz-2.03 (02 Aug 2008) + + 02 Aug 2008; Torsten Veller <tove@gentoo.org> +GraphViz-2.03.ebuild: + Version bump 15 Jan 2007; Michael Cummings <mcummings@gentoo.org> GraphViz-2.02.ebuild: Ebuild maintenance diff --git a/dev-perl/GraphViz/GraphViz-2.03.ebuild b/dev-perl/GraphViz/GraphViz-2.03.ebuild new file mode 100644 index 000000000000..2db851ad07fd --- /dev/null +++ b/dev-perl/GraphViz/GraphViz-2.03.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/GraphViz/GraphViz-2.03.ebuild,v 1.1 2008/08/02 10:43:27 tove Exp $ + +MODULE_AUTHOR=LBROCARD +inherit perl-module eutils + +DESCRIPTION="GraphViz - Interface to the GraphViz graphing tool" + +LICENSE="Artistic GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +SRC_TEST="do" + +DEPEND="dev-lang/perl + media-gfx/graphviz + dev-perl/IPC-Run" + #dev-perl/XML-Twig #used in GraphViz::XML + +src_install() { + perl-module_src_install + + insinto /usr/share/doc/${PF}/examples + doins "${S}"/examples/* || die +} |