blob: 544316240b3153f3da62b6e92c4016e269a28a2e (
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
55
56
57
58
59
60
61
62
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/uim/uim-0.3.4.2.ebuild,v 1.7 2005/01/01 14:42:20 eradicator Exp $
inherit eutils flag-o-matic
DESCRIPTION="a simple, secure and flexible input method library"
HOMEPAGE="http://uim.freedesktop.org/"
SRC_URI="http://freedesktop.org/Software/UimDownload/${P}.tar.gz"
LICENSE="GPL-2 BSD"
SLOT="0"
KEYWORDS="x86 alpha ppc"
IUSE="gtk nls debug"
RDEPEND="gtk? ( >=x11-libs/gtk+-2 )
!app-i18n/uim-svn"
DEPEND="${RDEPEND}
dev-lang/perl
dev-perl/XML-Parser
>=sys-apps/sed-4
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PN}-gtk-query-immodules-gentoo.diff
}
src_compile() {
if use gtk ; then
sed -i -e "s:@GTK2_TRUE@::g" -e "s:@GTK2_FALSE@:#:g" \
Makefile.in `echo */Makefile.in`
else
sed -i -e "s:@GTK2_TRUE@:#:g" -e "s:@GTK2_FALSE@::g" \
Makefile.in `echo */Makefile.in`
sed -i -e "/^SUBDIRS/s/gtk//" Makefile.in
fi
use debug && append-flags -g
econf `use_enable nls` || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog INSTALL* NEWS README*
}
pkg_postinst() {
einfo
einfo "To use uim-anthy you should emerge app-i18n/anthy or app-i18n/anthy-ss."
einfo "To use uim-skk you should emerge app-i18n/skk-jisyo (uim doesn't support skkserv)."
einfo "To use uim-prime you should emerge app-i18n/prime."
einfo
use gtk && gtk-query-immodules-2.0 > ${ROOT}/etc/gtk-2.0/gtk.immodules
}
pkg_postrm() {
use gtk && gtk-query-immodules-2.0 > ${ROOT}/etc/gtk-2.0/gtk.immodules
}
|