blob: 1b7bf11a3906618e0257e77aaa65dac244997e4d (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-dict/xfce4-dict-0.5.2.ebuild,v 1.9 2009/08/23 16:52:46 ssuominen Exp $
EAPI=1
inherit fdo-mime gnome2-utils
DESCRIPTION="plugin and stand-alone application to query dict.org"
HOMEPAGE="http://goodies.xfce.org/projects/applications/xfce4-dict"
SRC_URI="http://goodies.xfce.org/releases/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
IUSE=""
RDEPEND=">=dev-libs/glib-2.6:2
>=x11-libs/gtk+-2.6:2
>=xfce-base/libxfcegui4-4.4
>=xfce-base/libxfce4util-4.4
>=xfce-base/xfce4-panel-4.4"
DEPEND="${RDEPEND}
dev-util/intltool"
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
gnome2_icon_cache_update
if ! has_version app-text/aspell && ! has_version app-text/ispell \
&& ! has_version app-text/enchant; then
echo
elog "You need a spell check program for spell checking."
elog "xfce4-dict works with enchant, aspell, ispell or any other spell"
elog "check program which is compatible with the ispell command"
elog "The dictionary function will still work without those"
fi
}
pkg_postrm() {
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
gnome2_icon_cache_update
}
|