blob: 729d6af1669cc147c3b2ed16c519596857492f83 (
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
63
64
65
66
67
68
69
70
71
72
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/uim-svn/uim-svn-20040124.ebuild,v 1.4 2004/04/05 14:36:15 hattya Exp $
inherit subversion
IUSE="gtk nls debug"
DESCRIPTION="UIM is a simple, secure and flexible input method library"
HOMEPAGE="http://anthy.sourceforge.jp/"
SRC_URI=""
ESVN_REPO_URI="http://freedesktop.org:8080/svn/uim/trunk"
ESVN_BOOTSTRAP="autogen.sh"
ESVN_PATCHES="*.diff"
LICENSE="GPL-2 | BSD"
KEYWORDS="~x86"
SLOT="0"
DEPEND="${RDEPEND}
dev-lang/perl
dev-perl/XML-Parser
>=sys-apps/sed-4
nls? ( sys-devel/gettext )"
RDEPEND="gtk? ( >=x11-libs/gtk+-2 )
!app-i18n/uim"
# for debugging use
use debug && RESTRICT="nostrip"
src_compile() {
if [ -n "`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 && export CFLAGS="${CFLAGS} -g"
econf `use_enable nls` || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc [A-Z][A-Z]* ChangeLog* doc/[A-Z0-9][A-Z0-9]*
}
pkg_postinst() {
use gtk && gtk-query-immodules-2.0 > /etc/gtk-2.0/gtk.immodules
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."
einfo "To use uim-prime you should emerge app-i18n/prime."
einfo
}
pkg_postrm() {
use gtk && gtk-query-immodules-2.0 > /etc/gtk-2.0/gtk.immodules
}
|