diff options
Diffstat (limited to 'dev-ruby/kramdown')
-rw-r--r-- | dev-ruby/kramdown/ChangeLog | 8 | ||||
-rw-r--r-- | dev-ruby/kramdown/kramdown-0.13.5-r1.ebuild | 48 |
2 files changed, 55 insertions, 1 deletions
diff --git a/dev-ruby/kramdown/ChangeLog b/dev-ruby/kramdown/ChangeLog index 66ceebbc97b3..24bc41622e72 100644 --- a/dev-ruby/kramdown/ChangeLog +++ b/dev-ruby/kramdown/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-ruby/kramdown # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/kramdown/ChangeLog,v 1.10 2012/02/27 23:44:15 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/kramdown/ChangeLog,v 1.11 2012/03/11 08:07:48 graaff Exp $ + +*kramdown-0.13.5-r1 (11 Mar 2012) + + 11 Mar 2012; Hans de Graaff <graaff@gentoo.org> +kramdown-0.13.5-r1.ebuild: + Add latex USE flag to pull in the proper dependencies for latex support. Also + fix tests when not all latex dependencies are installed. *kramdown-0.13.5 (27 Feb 2012) diff --git a/dev-ruby/kramdown/kramdown-0.13.5-r1.ebuild b/dev-ruby/kramdown/kramdown-0.13.5-r1.ebuild new file mode 100644 index 000000000000..d6e4671d9a26 --- /dev/null +++ b/dev-ruby/kramdown/kramdown-0.13.5-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/kramdown/kramdown-0.13.5-r1.ebuild,v 1.1 2012/03/11 08:07:48 graaff Exp $ + +EAPI=4 +USE_RUBY="ruby18 ruby19 ree18 jruby" + +RAKE_FAKEGEM_DOCDIR="htmldoc/rdoc" +RUBY_FAKEGEM_EXTRADOC="README ChangeLog" + +RUBY_FAKEGEM_EXTRAINSTALL="data" + +inherit ruby-fakegem + +DESCRIPTION="yet-another-markdown-parser but fast, pure Ruby, using a strict syntax definition." +HOMEPAGE="http://kramdown.rubyforge.org/" + +LICENSE="GPL-3" + +SLOT="0" +KEYWORDS="~amd64" +IUSE="latex" + +RDEPEND+="latex? ( dev-texlive/texlive-latex dev-texlive/texlive-latexextra )" + +ruby_add_bdepend "doc? ( dev-ruby/rdoc ) + test? ( >=dev-ruby/coderay-1.0.0 )" + +all_ruby_prepare() { + if ! use latex; then + # Remove latex tests. They will fail gracefully when latex isn't + # present at all, but not when components are missing (most + # notable ucs.sty). + sed -i -e '/latex -v/,/^ end/ s:^:#:' test/test_files.rb || die + fi +} + +all_ruby_compile() { + if use doc; then + rdoc-2 -o htmldoc/rdoc --main README --title kramdown lib README || die "Unable to generate documentation" + fi +} + +all_ruby_install() { + all_fakegem_install + + doman man/man1/kramdown.1 +} |