diff options
author | 2005-02-28 04:52:57 +0000 | |
---|---|---|
committer | 2005-02-28 04:52:57 +0000 | |
commit | 5472c7635ee7554517a14a223c6f1887e6ce0216 (patch) | |
tree | d1a1ccfb7ad1df17155e369bdfa4c5d2e0b2af25 /app-i18n/imhangul/imhangul-0.9.11-r1.ebuild | |
parent | Fix name of patch: it wasn't being applied. (diff) | |
download | historical-5472c7635ee7554517a14a223c6f1887e6ce0216.tar.gz historical-5472c7635ee7554517a14a223c6f1887e6ce0216.tar.bz2 historical-5472c7635ee7554517a14a223c6f1887e6ce0216.zip |
Fixed installation path. See bug #83448.
Package-Manager: portage-2.0.51.16
Diffstat (limited to 'app-i18n/imhangul/imhangul-0.9.11-r1.ebuild')
-rw-r--r-- | app-i18n/imhangul/imhangul-0.9.11-r1.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/app-i18n/imhangul/imhangul-0.9.11-r1.ebuild b/app-i18n/imhangul/imhangul-0.9.11-r1.ebuild new file mode 100644 index 000000000000..e2d396dfd6aa --- /dev/null +++ b/app-i18n/imhangul/imhangul-0.9.11-r1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/imhangul/imhangul-0.9.11-r1.ebuild,v 1.1 2005/02/28 04:52:57 usata 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 ~alpha ~ppc" + +DEPEND=">=x11-libs/gtk+-2.2.0" + +get_gtk_confdir() { + if useq amd64 || ( [ "${CONF_LIBDIR}" == "lib32" ] && useq 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 + + 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 > ${ROOT}$(get_gtk_confdir)/gtk.immodules +} |