blob: b317cc0794fcd1e2da5f24204be04758851c177a (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/imhangul/imhangul-0.9.9.ebuild,v 1.3 2004/06/24 21:46:24 agriffis Exp $
IUSE=""
DESCRIPTION="Gtk+-2.0 Hangul Input Modules"
HOMEPAGE="http://imhangul.kldp.net/"
SRC_URI="http://download.kldp.net/imhangul/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND=">=x11-libs/gtk+-2.2.0"
src_compile() {
econf || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
}
pkg_postinst() {
gtk-query-immodules-2.0 > /etc/gtk-2.0/gtk.immodules
einfo ""
einfo "If you want to use one of the module as a default input method, "
einfo ""
einfo "export GTK_IM_MODULE=hangul2 // 2 input type"
einfo "export GTK_IM_MODULE=hangul3f // 3 input type"
einfo ""
}
pkg_postrm() {
gtk-query-immodules-2.0 > /etc/gtk-2.0/gtk.immodules
}
|