2013-03-13 15:35:30 +04:00
|
|
|
# Copyright 1999-2013 Gentoo Foundation
|
2012-06-04 15:21:18 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2013-03-13 15:35:30 +04:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/kramdown/kramdown-0.14.2.ebuild,v 1.1 2013/03/12 06:57:57 graaff Exp $
|
2012-06-04 15:21:18 +04:00
|
|
|
|
2013-03-13 15:35:30 +04:00
|
|
|
EAPI=5
|
2012-06-04 15:21:18 +04:00
|
|
|
USE_RUBY="ruby18 ruby19 ree18 jruby"
|
|
|
|
|
2013-03-13 15:35:30 +04:00
|
|
|
RUBY_FAKEGEM_DOCDIR="htmldoc/rdoc"
|
2012-09-02 21:21:12 +04:00
|
|
|
RUBY_FAKEGEM_EXTRADOC="README.md AUTHORS ChangeLog CONTRIBUTERS"
|
|
|
|
|
2012-06-04 15:21:18 +04:00
|
|
|
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 ~x86"
|
|
|
|
IUSE="latex"
|
|
|
|
|
2012-09-02 21:21:12 +04:00
|
|
|
LATEX_DEPS="latex? ( dev-texlive/texlive-latex dev-texlive/texlive-latexextra )"
|
|
|
|
RDEPEND+=" ${LATEX_DEPS}"
|
2013-03-13 15:35:30 +04:00
|
|
|
DEPEND+=" test? ( ${LATEX_DEPS} app-text/htmltidy )"
|
2012-06-04 15:21:18 +04:00
|
|
|
|
|
|
|
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_install() {
|
|
|
|
all_fakegem_install
|
|
|
|
|
|
|
|
doman man/man1/kramdown.1
|
|
|
|
}
|