diff options
author | Torsten Veller <tove@gentoo.org> | 2008-12-15 20:12:43 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2008-12-15 20:12:43 +0000 |
commit | d9f69d71ae9fde55995b731f5d959cecafb0d4db (patch) | |
tree | bc6db3fc1164b4bc61d6704c87dffa0866a66a26 /dev-perl/GraphViz | |
parent | QA: Removed ROOT usage from src_compile (diff) | |
download | gentoo-2-d9f69d71ae9fde55995b731f5d959cecafb0d4db.tar.gz gentoo-2-d9f69d71ae9fde55995b731f5d959cecafb0d4db.tar.bz2 gentoo-2-d9f69d71ae9fde55995b731f5d959cecafb0d4db.zip |
Version bump
(Portage version: 2.2_rc17/cvs/Linux 2.6.27-tuxonice i686)
Diffstat (limited to 'dev-perl/GraphViz')
-rw-r--r-- | dev-perl/GraphViz/ChangeLog | 7 | ||||
-rw-r--r-- | dev-perl/GraphViz/GraphViz-2.04.ebuild | 28 |
2 files changed, 34 insertions, 1 deletions
diff --git a/dev-perl/GraphViz/ChangeLog b/dev-perl/GraphViz/ChangeLog index a031e6adc847..52336148a663 100644 --- a/dev-perl/GraphViz/ChangeLog +++ b/dev-perl/GraphViz/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-perl/GraphViz # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-perl/GraphViz/ChangeLog,v 1.7 2008/11/19 13:51:15 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-perl/GraphViz/ChangeLog,v 1.8 2008/12/15 20:12:43 tove Exp $ + +*GraphViz-2.04 (15 Dec 2008) + + 15 Dec 2008; Torsten Veller <tove@gentoo.org> +GraphViz-2.04.ebuild: + Version bump 19 Nov 2008; Torsten Veller <tove@gentoo.org> GraphViz-2.02.ebuild, GraphViz-2.03.ebuild: diff --git a/dev-perl/GraphViz/GraphViz-2.04.ebuild b/dev-perl/GraphViz/GraphViz-2.04.ebuild new file mode 100644 index 000000000000..bec0bf365c30 --- /dev/null +++ b/dev-perl/GraphViz/GraphViz-2.04.ebuild @@ -0,0 +1,28 @@ +# 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.04.ebuild,v 1.1 2008/12/15 20:12:43 tove Exp $ + +MODULE_AUTHOR=LBROCARD +inherit perl-module + +DESCRIPTION="GraphViz - Interface to the GraphViz graphing tool" + +LICENSE="|| ( Artistic GPL-2 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +SRC_TEST="do" + +RDEPEND="dev-lang/perl + media-gfx/graphviz + dev-perl/IPC-Run" + #dev-perl/XML-Twig #used in GraphViz::XML +DEPEND="${RDEPEND} + test? ( virtual/perl-Test-Simple )" + +src_install() { + perl-module_src_install + + insinto /usr/share/doc/${PF}/examples + doins "${S}"/examples/* || die +} |