diff options
Diffstat (limited to 'dev-perl/Text-Markdown/Text-Markdown-1.0.22.ebuild')
-rw-r--r-- | dev-perl/Text-Markdown/Text-Markdown-1.0.22.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/dev-perl/Text-Markdown/Text-Markdown-1.0.22.ebuild b/dev-perl/Text-Markdown/Text-Markdown-1.0.22.ebuild new file mode 100644 index 000000000000..d96c454ac351 --- /dev/null +++ b/dev-perl/Text-Markdown/Text-Markdown-1.0.22.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/Text-Markdown/Text-Markdown-1.0.22.ebuild,v 1.1 2008/10/26 07:56:09 tove Exp $ + +MODULE_AUTHOR=BOBTFISH +MODULE_A=${P}.tgz +inherit perl-module + +DESCRIPTION="Convert MultiMarkdown syntax to (X)HTML" + +SLOT="0" +LICENSE="BSD" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="dev-lang/perl + virtual/perl-Digest-MD5 + virtual/perl-Getopt-Long + virtual/perl-Text-Balanced" + +DEPEND="${RDEPEND} + test? ( virtual/perl-Test-Simple + dev-perl/Text-Diff + dev-perl/List-MoreUtils + dev-perl/File-Slurp + dev-perl/Test-Exception )" +# dev-perl/Test-Pod +# dev-perl/Test-Pod-Coverage + +SRC_TEST=do +mydoc="Readme.text Todo" + +src_install() { + perl-module_src_install + newbin script/Markdown.pl markdown || die + newbin script/MultiMarkdown.pl multimarkdown || die +} |