blob: 2fa8a32d760e1e713af8f96e7e75055a645c8502 (
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
73
74
75
76
77
78
79
80
81
82
83
|
# 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/uim-0.3.2.ebuild,v 1.4 2004/03/31 20:19:12 usata Exp $
IUSE="gtk nls debug"
DESCRIPTION="UIM is 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"
S="${WORKDIR}/${P}"
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-svn"
# for debugging use
use debug && RESTRICT="nostrip"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PN}-gtk-query-immodules-gentoo.diff
if has_version '>=x11-libs/gtk+-2.4' ; then
epatch ${FILESDIR}/${PN}-gtk24-gentoo.diff
fi
}
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 ABOUT-NLS 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 and make sure you have"
einfo ">=dev-libs/suikyo-1.3.0."
einfo
ewarn "If you are upgrading from uim-0.3.1 and using uim-skk, please check your"
ewarn "~/.skk-uim-jisyo and remove katakana index entry if any."
if [ "`use gtk`" ] ; then
gtk-query-immodules-2.0 > /etc/gtk-2.0/gtk.immodules
fi
}
pkg_postrm() {
if [ "`use gtk`" ] ; then
gtk-query-immodules-2.0 > /etc/gtk-2.0/gtk.immodules
fi
}
|