diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2009-05-19 14:39:02 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2009-05-19 14:39:02 +0000 |
commit | a8a34ea0954d98225beb890c05d63fc25d904552 (patch) | |
tree | a6b811c246b413c895adac1327e0ed4b0b0ffa2d /app-dicts | |
parent | Removed old version. (diff) | |
download | gentoo-2-a8a34ea0954d98225beb890c05d63fc25d904552.tar.gz gentoo-2-a8a34ea0954d98225beb890c05d63fc25d904552.tar.bz2 gentoo-2-a8a34ea0954d98225beb890c05d63fc25d904552.zip |
Version bumped.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'app-dicts')
-rw-r--r-- | app-dicts/fantasdic/ChangeLog | 8 | ||||
-rw-r--r-- | app-dicts/fantasdic/fantasdic-1.0_beta7.ebuild | 34 |
2 files changed, 41 insertions, 1 deletions
diff --git a/app-dicts/fantasdic/ChangeLog b/app-dicts/fantasdic/ChangeLog index 77904c81ee75..822b5efcc6b4 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.4 2009/01/01 03:08:44 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-dicts/fantasdic/ChangeLog,v 1.5 2009/05/19 14:39:02 matsuu Exp $ + +*fantasdic-1.0_beta7 (19 May 2009) + + 19 May 2009; MATSUU Takuto <matsuu@gentoo.org> + +fantasdic-1.0_beta7.ebuild: + Version bumped. 01 Jan 2009; MATSUU Takuto <matsuu@gentoo.org> -fantasdic-1.0_beta2.ebuild, -fantasdic-1.0_beta4.ebuild: diff --git a/app-dicts/fantasdic/fantasdic-1.0_beta7.ebuild b/app-dicts/fantasdic/fantasdic-1.0_beta7.ebuild new file mode 100644 index 000000000000..938c3b184eec --- /dev/null +++ b/app-dicts/fantasdic/fantasdic-1.0_beta7.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2009 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.ebuild,v 1.1 2009/05/19 14:39:02 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 + + erubydoc +} |