53 lines
1.2 KiB
Bash
53 lines
1.2 KiB
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-i18n/imhangul/imhangul-0.9.12.ebuild,v 1.11 2011/09/25 17:53:54 armin76 Exp $
|
|
|
|
EAPI="1"
|
|
|
|
DESCRIPTION="Gtk+-2.0 Hangul Input Modules"
|
|
HOMEPAGE="http://imhangul.kldp.net/"
|
|
SRC_URI="http://kldp.net/frs/download.php/2570/${P}.tar.bz2"
|
|
|
|
SLOT="0"
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="~amd64 ppc x86"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=x11-libs/gtk+-2.2.0:2"
|
|
DEPEND="${RDEPEND}
|
|
dev-util/pkgconfig"
|
|
|
|
get_gtk_confdir() {
|
|
if use amd64 || ( [ "${CONF_LIBDIR}" == "lib32" ] && use x86 ) ; then
|
|
echo "/etc/gtk-2.0/${CHOST}"
|
|
else
|
|
echo "/etc/gtk-2.0"
|
|
fi
|
|
}
|
|
|
|
src_compile() {
|
|
sed -i -e "/^moduledir/d" -e "/# moduledir/s/# //" Makefile.* || die
|
|
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 > "${ROOT}$(get_gtk_confdir)/gtk.immodules"
|
|
|
|
elog ""
|
|
elog "If you want to use one of the module as a default input method, "
|
|
elog ""
|
|
elog "export GTK_IM_MODULE=hangul2 // 2 input type"
|
|
elog "export GTK_IM_MODULE=hangul3f // 3 input type"
|
|
elog ""
|
|
}
|
|
|
|
pkg_postrm() {
|
|
gtk-query-immodules-2.0 > "${ROOT}$(get_gtk_confdir)/gtk.immodules"
|
|
}
|