blob: a141532e5327c52efd39e55f3c19cf3e4aabd04d (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools flag-o-matic gnome2-utils
DESCRIPTION="Smart Common Input Method (SCIM) is an Input Method (IM) development platform"
HOMEPAGE="https://github.com/scim-im/scim"
SRC_URI="https://github.com/scim-im/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
IUSE="doc gtk3 static-libs test"
RESTRICT="!test? ( test )"
RDEPEND="
app-accessibility/at-spi2-core:2
dev-libs/glib:2
dev-libs/libltdl
media-libs/fontconfig
media-libs/freetype
media-libs/harfbuzz:=
x11-libs/cairo
x11-libs/gdk-pixbuf:2
x11-libs/libX11
>=x11-libs/pango-1
gtk3? ( x11-libs/gtk+:3[X] )
!gtk3? ( x11-libs/gtk+:2 )
"
DEPEND="${RDEPEND}"
BDEPEND="
dev-lang/perl
virtual/pkgconfig
>=dev-util/intltool-0.33
dev-build/libtool
doc? (
app-text/doxygen
>=app-text/docbook-xsl-stylesheets-1.73.1
)
"
DOCS=( README AUTHORS ChangeLog docs/developers docs/scim.cfg )
PATCHES=(
"${FILESDIR}"/${PN}-1.4.18-slibtool.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
# bug #83625
filter-flags -fvisibility-inlines-hidden -fvisibility=hidden
local myeconfargs=(
--enable-ld-version-script
$(usex gtk3 --with-gtk-version={3,2})
$(usex !gtk3 --disable-gtk3-immodule)
--disable-qt3-immodule
--disable-qt4-immodule
--without-included-libltdl
$(use_enable static-libs static)
$(use_enable test tests)
$(use_with doc doxygen)
)
econf "${myeconfargs[@]}"
}
src_compile() {
default
use doc && emake docs
}
src_test() {
./tests/testlang || die "testlang failed"
./tests/testiconvert || die "testiconvert failed"
}
src_install() {
use doc && HTML_DOCS=( "${S}/docs/html/" )
default
if ! use static-libs; then
find "${ED}" -name '*.la' -delete || die
fi
sed -e "s:@EPREFIX@:${EPREFIX}:" "${FILESDIR}/xinput-${PN}" > "${T}/${PN}.conf" || die
insinto /etc/X11/xinit/xinput.d
doins "${T}/${PN}.conf"
}
pkg_postinst() {
elog
elog "To use SCIM with both GTK and XIM, you should use the following"
elog "in your user startup scripts such as .gnomerc or .xinitrc:"
elog
elog "LANG='your_language' scim -d"
elog "export XMODIFIERS=@im=SCIM"
elog "export GTK_IM_MODULE=\"scim\""
elog "export QT_IM_MODULE=\"scim\""
elog
elog "where 'your_language' can be zh_CN, zh_TW, ja_JP.eucJP or any other"
elog "UTF-8 locale such as en_US.UTF-8 or ja_JP.UTF-8"
elog
elog "To use Chinese input methods:"
elog " # emerge app-i18n/scim-tables app-i18n/scim-pinyin"
elog "To use Korean input methods:"
elog " # emerge app-i18n/scim-hangul"
elog "To use Japanese input methods:"
elog " # emerge app-i18n/scim-anthy"
elog "To use various input methods (more than 30 languages):"
elog " # emerge app-i18n/scim-m17n"
elog
elog "Please modify ${EPREFIX}/etc/scim/global and add your UTF-8 locale to"
elog "/SupportedUnicodeLocales entry."
elog
ewarn
ewarn "If you upgraded from scim-1.2.x or scim-1.0.x, you should remerge all SCIM modules."
ewarn
gnome2_query_immodules_gtk2
}
pkg_postrm() {
gnome2_query_immodules_gtk2
}
|