commit: c490a9f5d5593d11d32eee5eabd6897ec72a343c Author: Hans de Graaff <graaff <AT> gentoo <DOT> org> AuthorDate: Wed Nov 24 09:16:12 2021 +0000 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org> CommitDate: Wed Nov 24 10:25:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c490a9f5
dev-ruby/rdtool: add ruby30 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org> dev-ruby/rdtool/rdtool-0.6.38-r3.ebuild | 39 +++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/dev-ruby/rdtool/rdtool-0.6.38-r3.ebuild b/dev-ruby/rdtool/rdtool-0.6.38-r3.ebuild new file mode 100644 index 000000000000..6edcdda0fe91 --- /dev/null +++ b/dev-ruby/rdtool/rdtool-0.6.38-r3.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +USE_RUBY="ruby26 ruby27 ruby30" + +RUBY_FAKEGEM_RECIPE_DOC="none" +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 ~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 +}
