blob: 7d6c3197cd70f4097f3ff63d6c38bfce6f81dc54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
}
|