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.
40 lines
804 B
40 lines
804 B
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
USE_RUBY="ruby23 ruby24 ruby25 ruby26"
|
|
|
|
RUBY_FAKEGEM_TASK_DOC="doc"
|
|
RUBY_FAKEGEM_EXTRADOC="HISTORY README.*"
|
|
|
|
inherit elisp-common ruby-fakegem
|
|
|
|
DESCRIPTION="A multipurpose documentation format for Ruby"
|
|
HOMEPAGE="https://github.com/uwabami/rdtool"
|
|
|
|
LICENSE="Ruby GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 ia64 ppc ppc64 ~sparc x86"
|
|
IUSE="emacs"
|
|
|
|
RDEPEND="${RDEPEND} emacs? ( >=app-editors/emacs-23.1:* )"
|
|
|
|
SITEFILE=50${PN}-gentoo.el
|
|
|
|
all_ruby_install() {
|
|
all_fakegem_install
|
|
|
|
if use emacs ; then
|
|
elisp-install ${PN} utils/rd-mode.el
|
|
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
|
|
fi
|
|
}
|
|
|
|
pkg_postinst() {
|
|
use emacs && elisp-site-regen
|
|
}
|
|
|
|
pkg_postrm() {
|
|
use emacs && elisp-site-regen
|
|
}
|