diff options
author | 2010-02-27 07:55:09 +0000 | |
---|---|---|
committer | 2010-02-27 07:55:09 +0000 | |
commit | 090d971fbdaf14b05769567fd8fd93ef71faab64 (patch) | |
tree | 5120dd5911d46dadddb4872ddd0fbdc7e0d9e40f /app-office | |
parent | Version bump. (diff) | |
download | gentoo-2-090d971fbdaf14b05769567fd8fd93ef71faab64.tar.gz gentoo-2-090d971fbdaf14b05769567fd8fd93ef71faab64.tar.bz2 gentoo-2-090d971fbdaf14b05769567fd8fd93ef71faab64.zip |
Version bump. Thanks for hitachi for the notification in bug 306775.
(Portage version: 2.1.7.16/cvs/Linux x86_64)
Diffstat (limited to 'app-office')
-rw-r--r-- | app-office/rabbit/ChangeLog | 7 | ||||
-rw-r--r-- | app-office/rabbit/rabbit-0.6.4.ebuild | 59 |
2 files changed, 65 insertions, 1 deletions
diff --git a/app-office/rabbit/ChangeLog b/app-office/rabbit/ChangeLog index 055b5fb84e41..d592adf4433f 100644 --- a/app-office/rabbit/ChangeLog +++ b/app-office/rabbit/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-office/rabbit # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/rabbit/ChangeLog,v 1.9 2010/01/05 16:37:24 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/rabbit/ChangeLog,v 1.10 2010/02/27 07:55:09 graaff Exp $ + +*rabbit-0.6.4 (27 Feb 2010) + + 27 Feb 2010; Hans de Graaff <graaff@gentoo.org> +rabbit-0.6.4.ebuild: + Version bump. Thanks for hitachi for the notification in bug 306775. 05 Jan 2010; Hans de Graaff <graaff@gentoo.org> -rabbit-0.6.1.ebuild: Remove old version. diff --git a/app-office/rabbit/rabbit-0.6.4.ebuild b/app-office/rabbit/rabbit-0.6.4.ebuild new file mode 100644 index 000000000000..6ba04132f67f --- /dev/null +++ b/app-office/rabbit/rabbit-0.6.4.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/rabbit/rabbit-0.6.4.ebuild,v 1.1 2010/02/27 07:55:09 graaff Exp $ + +inherit ruby elisp-common eutils + +DESCRIPTION="An application to do presentation with RD document" +HOMEPAGE="http://www.cozmixng.org/~rwiki/?cmd=view;name=Rabbit" +SRC_URI="http://www.cozmixng.org/~kou/download/${P}.tar.gz" + +LICENSE="Ruby" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls gs gnome-print migemo tgif enscript emacs" + +DEPEND=" + emacs? ( virtual/emacs )" +RDEPEND="${DEPEND} + dev-ruby/ruby-gnome2 + >=dev-ruby/ruby-gdkpixbuf2-0.15.0 + dev-ruby/rdtool + nls? ( dev-ruby/ruby-gettext ) + gs? ( app-text/ghostscript-gpl ) + gnome-print? ( gnome-base/libgnomeprint ) + migemo? ( app-text/migemo ) + enscript? ( app-text/enscript ) + tgif? ( media-gfx/tgif )" + +src_compile() { + ruby_src_compile + + if use emacs; then + cd "${S}/misc/emacs" + elisp-compile rabbit-mode.el + fi +} + +src_test() { + test/run-test.rb +} + +src_install() { + ${RUBY} setup.rb install --prefix="${D}" + erubydoc + + if use emacs; then + cd "${S}/misc/emacs" + elisp-install rabbit-mode rabbit-mode.el{,c} + elisp-site-file-install "${FILESDIR}/50rabbit-mode-gentoo.el" + fi +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} |