diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2010-01-23 07:30:39 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2010-01-23 07:30:39 +0000 |
commit | 1dec57ea088ce98fd5033a81ff1716333fa6079b (patch) | |
tree | 9a2d9414ea23093e9293f3fd50da946c9da4ea8c | |
parent | Version bumped. (diff) | |
download | gentoo-2-1dec57ea088ce98fd5033a81ff1716333fa6079b.tar.gz gentoo-2-1dec57ea088ce98fd5033a81ff1716333fa6079b.tar.bz2 gentoo-2-1dec57ea088ce98fd5033a81ff1716333fa6079b.zip |
Removed /usr/share/doc/fantasdic, bug #298866.
(Portage version: 2.1.7.16/cvs/Linux x86_64)
-rw-r--r-- | app-dicts/fantasdic/ChangeLog | 10 | ||||
-rw-r--r-- | app-dicts/fantasdic/fantasdic-1.0_beta7-r1.ebuild | 37 |
2 files changed, 45 insertions, 2 deletions
diff --git a/app-dicts/fantasdic/ChangeLog b/app-dicts/fantasdic/ChangeLog index 822b5efcc6b4..6c08b8d70de2 100644 --- a/app-dicts/fantasdic/ChangeLog +++ b/app-dicts/fantasdic/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-dicts/fantasdic -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-dicts/fantasdic/ChangeLog,v 1.5 2009/05/19 14:39:02 matsuu Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/fantasdic/ChangeLog,v 1.6 2010/01/23 07:30:39 matsuu Exp $ + +*fantasdic-1.0_beta7-r1 (23 Jan 2010) + + 23 Jan 2010; MATSUU Takuto <matsuu@gentoo.org> + +fantasdic-1.0_beta7-r1.ebuild: + Removed /usr/share/doc/fantasdic, bug #298866. *fantasdic-1.0_beta7 (19 May 2009) diff --git a/app-dicts/fantasdic/fantasdic-1.0_beta7-r1.ebuild b/app-dicts/fantasdic/fantasdic-1.0_beta7-r1.ebuild new file mode 100644 index 000000000000..7d6c3197cd70 --- /dev/null +++ b/app-dicts/fantasdic/fantasdic-1.0_beta7-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/fantasdic/fantasdic-1.0_beta7-r1.ebuild,v 1.1 2010/01/23 07:30:39 matsuu Exp $ + +inherit eutils ruby + +MY_P="${P/_/-}" +DESCRIPTION="Fantasdic is a client for the DICT protocol" +HOMEPAGE="http://www.gnome.org/projects/fantasdic/" +SRC_URI="http://www.mblondel.org/files/fantasdic/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gnome nls" + +S="${WORKDIR}/${MY_P}" + +DEPEND=">=dev-lang/ruby-1.8" +RDEPEND="${DEPEND} + >=dev-ruby/ruby-libglade2-0.14.1 + gnome? ( + >=dev-ruby/ruby-gnome2-0.14.1 + >=dev-ruby/ruby-gconf2-0.14.1 + ) + nls? ( >=dev-ruby/ruby-gettext-0.6.1 )" + +src_install() { + ${RUBY} setup.rb install --prefix="${D}" || die + + domenu fantasdic.desktop || die + + erubydoc + + # bug #298866 + rm -r "${D}usr/share/doc/fantasdic" || die +} |