You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
949 B
45 lines
949 B
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
USE_RUBY="ruby25 ruby26 ruby27"
|
|
|
|
RUBY_FAKEGEM_TASK_TEST="test features"
|
|
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.adoc README.adoc"
|
|
|
|
RUBY_FAKEGEM_EXTRAINSTALL="data"
|
|
|
|
inherit ruby-fakegem
|
|
|
|
DESCRIPTION="Processor for converting AsciiDoc into HTML 5, DocBook 4.5 and other formats"
|
|
HOMEPAGE="https://github.com/asciidoctor/asciidoctor"
|
|
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 x86"
|
|
IUSE=""
|
|
|
|
ruby_add_bdepend "test? (
|
|
dev-util/cucumber
|
|
dev-ruby/rspec-expectations:*
|
|
dev-ruby/asciimath
|
|
dev-ruby/coderay
|
|
dev-ruby/concurrent-ruby
|
|
dev-ruby/erubis
|
|
dev-ruby/haml
|
|
dev-ruby/nokogiri
|
|
dev-ruby/rouge
|
|
dev-ruby/slim
|
|
dev-ruby/tilt )"
|
|
|
|
all_ruby_prepare() {
|
|
rm Gemfile || die
|
|
}
|
|
|
|
all_ruby_install() {
|
|
all_fakegem_install
|
|
|
|
doman man/asciidoctor.1
|
|
}
|