diff options
author | Hans de Graaff <graaff@gentoo.org> | 2012-12-03 19:23:29 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2012-12-03 19:23:29 +0000 |
commit | 9df455ed619f8e27ed16d24a366bb1c72bf93e90 (patch) | |
tree | 592d52d4b2457b00e704b85b99e1858b27e07ba5 /dev-ruby/rdtool/rdtool-0.6.38.ebuild | |
parent | Version bump. (diff) | |
download | gentoo-2-9df455ed619f8e27ed16d24a366bb1c72bf93e90.tar.gz gentoo-2-9df455ed619f8e27ed16d24a366bb1c72bf93e90.tar.bz2 gentoo-2-9df455ed619f8e27ed16d24a366bb1c72bf93e90.zip |
Version bump.
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0x8883FA56A308A8D7!)
Diffstat (limited to 'dev-ruby/rdtool/rdtool-0.6.38.ebuild')
-rw-r--r-- | dev-ruby/rdtool/rdtool-0.6.38.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-ruby/rdtool/rdtool-0.6.38.ebuild b/dev-ruby/rdtool/rdtool-0.6.38.ebuild new file mode 100644 index 000000000000..f2c75ab3ff66 --- /dev/null +++ b/dev-ruby/rdtool/rdtool-0.6.38.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rdtool/rdtool-0.6.38.ebuild,v 1.1 2012/12/03 19:23:29 graaff Exp $ + +EAPI=4 +USE_RUBY="ruby18 ruby19 ree18 jruby" + +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 ~x86-fbsd" +IUSE="emacs" + +RDEPEND="${RDEPEND} emacs? ( virtual/emacs )" + +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 +} |