blob: e2d1b4a6e34a7b11ee4a3c783de64ab5eb1c198e (
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/uim/uim-1.2.0.ebuild,v 1.1 2006/08/05 06:35:09 usata Exp $
inherit eutils kde-functions flag-o-matic multilib elisp-common
MY_P="${P/_/-}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="Simple, secure and flexible input method library"
HOMEPAGE="http://uim.freedesktop.org/"
SRC_URI="http://uim.freedesktop.org/releases/${MY_P}.tar.gz"
LICENSE="GPL-2 BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="gtk qt3 immqt immqt-bc nls X m17n-lib canna emacs"
RDEPEND="
X? ( || ( (
x11-libs/libX11
x11-libs/libXft
x11-libs/libXt
x11-libs/libICE
x11-libs/libSM
x11-libs/libXext
x11-libs/libXrender
)
<virtual/x11-7 ) )
gtk? ( >=x11-libs/gtk+-2 )
m17n-lib? ( dev-libs/m17n-lib )
!app-i18n/uim-svn
canna? ( app-i18n/canna )
immqt? ( $(qt_min_version 3.3.4) )
immqt-bc? ( $(qt_min_version 3.3.4) )
qt3? ( $(qt_min_version 3.3.4) )
emacs? ( virtual/emacs )
!<app-i18n/prime-0.9.4"
DEPEND="${RDEPEND}
X? ( || ( ( x11-proto/xextproto x11-proto/xproto )
<virtual/x11-7 ) )
dev-lang/perl
dev-perl/XML-Parser
>=sys-apps/sed-4
sys-devel/autoconf
sys-devel/automake
sys-devel/libtool
nls? ( sys-devel/gettext )"
pkg_setup() {
# An arch specific config directory is used on multilib systems
has_multilib_profile && GTK2_CONFDIR="/etc/gtk-2.0/${CHOST}"
GTK2_CONFDIR=${GTK2_CONFDIR:=/etc/gtk-2.0/}
}
src_unpack() {
unpack ${A}
cd "${S}"
# we execute gtk-query-immodules-2.0 in pkg_postinst()
# to not violate sandbox.
sed -i -e "/gtk-query-immodules-2.0/s/.*/ :\\\\/g" \
Makefile.am || die
use X || sed -i -e '/^SUBDIRS/s/xim//' Makefile.in || die
}
src_compile() {
local myconf
use qt3 && set-qtdir 3
if use immqt || use immqt-bc ; then
myconf="${myconf} --with-qt-immodule"
export CPPFLAGS="${CPPFLAGS} -DQT_THREAD_SUPPORT"
fi
myconf="${myconf}
$(use_enable nls)
$(use_with X x)
$(use_with gtk gtk2)
$(use_with m17n-lib m17nlib)
$(use_with canna)
$(use_with qt3 qt)
$(use_enable emacs)"
autoreconf
libtoolize --copy --force
# --with-scim is not stable enough
# --with-libedit should be fixed in SVN trunk, but not well tested
econf ${myconf} --without-scim --without-libedit || die "econf failed"
emake -j1 || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog INSTALL* NEWS README*
dodoc doc/{HELPER-CANDWIN,KEY,UIM-SH}
use X && dodoc doc/XIM-SERVER
use emacs && elisp-site-file-install ${FILESDIR}/50uim-el-gentoo.el
}
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."
einfo "To use uim-prime you should emerge app-i18n/prime."
einfo
ewarn
ewarn "New input method switcher has been introduced. You need to set"
ewarn
ewarn "% GTK_IM_MODULE=uim ; export GTK_IM_MODULE"
ewarn "% QT_IM_MODULE=uim ; export QT_IM_MODULE"
ewarn "% XMODIFIERS=@im=uim ; export XMODIFIERS"
ewarn
ewarn "If you would like to use uim-anthy as default input method, put"
ewarn "(define default-im-name 'anthy)"
ewarn "to your ~/.uim."
ewarn
ewarn "All input methods can be found by running uim-im-switcher-gtk"
ewarn "or uim-im-switcher-qt."
ewarn
use gtk && gtk-query-immodules-2.0 > ${ROOT}/${GTK2_CONFDIR}/gtk.immodules
use emacs && elisp-site-regen
}
pkg_postrm() {
use gtk && gtk-query-immodules-2.0 > ${ROOT}/${GTK2_CONFDIR}/gtk.immodules
use emacs && elisp-site-regen
}
|