You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-i18n/imhangul/imhangul-0.9.12.ebuild

54 lines
1.2 KiB

# Copyright 1999-2012 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.12 2012/05/03 19:24:27 jdhore 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}
virtual/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"
}