diff options
author | Mamoru Komachi <usata@gentoo.org> | 2005-07-08 09:40:35 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2005-07-08 09:40:35 +0000 |
commit | 1d462f23ac94f4fe6ddb6ef00aedcbaa12f1cd53 (patch) | |
tree | d0187a198d09deeb8cae3313493b11a437e82943 /app-i18n/scim-cvs/scim-cvs-1.3.3.ebuild | |
parent | Version bumped. (diff) | |
download | gentoo-2-1d462f23ac94f4fe6ddb6ef00aedcbaa12f1cd53.tar.gz gentoo-2-1d462f23ac94f4fe6ddb6ef00aedcbaa12f1cd53.tar.bz2 gentoo-2-1d462f23ac94f4fe6ddb6ef00aedcbaa12f1cd53.zip |
Version bumped.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'app-i18n/scim-cvs/scim-cvs-1.3.3.ebuild')
-rw-r--r-- | app-i18n/scim-cvs/scim-cvs-1.3.3.ebuild | 117 |
1 files changed, 117 insertions, 0 deletions
diff --git a/app-i18n/scim-cvs/scim-cvs-1.3.3.ebuild b/app-i18n/scim-cvs/scim-cvs-1.3.3.ebuild new file mode 100644 index 000000000000..8c1cc70a3f9c --- /dev/null +++ b/app-i18n/scim-cvs/scim-cvs-1.3.3.ebuild @@ -0,0 +1,117 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-cvs/scim-cvs-1.3.3.ebuild,v 1.1 2005/07/08 09:40:35 usata Exp $ + +inherit eutils cvs + +DESCRIPTION="Smart Common Input Method (SCIM) is an Input Method (IM) development platform" +HOMEPAGE="http://www.scim-im.org/" +SRC_URI="" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~x86" +IUSE="gnome immqt immqt-bc" + +ECVS_AUTH="pserver" +ECVS_SERVER="cvs.sourceforge.net:/cvsroot/scim" +ECVS_USER="anonymous" +ECVS_PASS="" +ECVS_MODULE="scim" +S="${WORKDIR}/${ECVS_MODULE}" + +GTK_DEPEND=">=x11-libs/gtk+-2 + >=dev-libs/atk-1 + >=x11-libs/pango-1 + >=dev-libs/glib-2" +RDEPEND="virtual/x11 + gtk? ( ${GTK_DEPEND} ) + immqt? ( ${GTK_DEPEND} ) + immqt-bc? ( ${GTK_DEPEND} ) + !app-i18n/scim + !<app-i18n/scim-chinese-0.4.0" +DEPEND="${RDEPEND} + dev-lang/perl + sys-devel/autoconf + sys-devel/automake + >=sys-apps/sed-4" + +has_gtk() { + if has_version '>=x11-libs/gtk+-2' ; then + true + else + false + fi +} + +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_unpack() { + cvs_src_unpack + # use scim gtk2 IM module only for chinese/japanese/korean + EPATCH_OPTS="-d ${S}" epatch ${FILESDIR}/${PN}-gtk2immodule.patch + + cd ${S} + ./bootstrap || die "bootstrap failed" +} + +src_compile() { + # bug #83625 + filter-flags -fvisibility-inlines-hidden + filter-flags -fvisibility=hidden + + use gtk || use immqt || use immqt-bc || myconf="${myconf} --disable-panel-gtk --disable-setup-ui" + has_gtk || myconf="${myconf} --disable-gtk2-immodule" + econf ${myconf} || die + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + dodoc README AUTHORS ChangeLog docs/developers docs/scim.cfg + dohtml -r docs/html/* +} + +pkg_postinst() { + einfo + einfo "To use SCIM with both GTK2 and XIM, you should use the following" + einfo "in your user startup scripts such as .gnomerc or .xinitrc:" + einfo + einfo "LANG='your_language' scim -d" + einfo "export XMODIFIERS=@im=SCIM" + einfo "export GTK_IM_MODULE=\"scim\"" + einfo "export QT_IM_MODULE=\"scim\"" + einfo + einfo "where 'your_language' can be zh_CN, zh_TW, ja_JP.eucJP or any other" + einfo "UTF-8 locale such as en_US.UTF-8 or ja_JP.UTF-8" + einfo + einfo "If you prefer KDE/Qt interface, try emerge app-i18n/skim." + einfo + einfo "To use Chinese input methods:" + einfo " # emerge app-i18n/scim-tables app-i18n/scim-chinese" + einfo "To use Korean input methods:" + einfo " # emerge app-i18n/scim-hangul" + einfo "To use Japanese input methods:" + einfo " # emerge app-i18n/scim-uim" + einfo "To use various input methods (more than 30 languages):" + einfo " # emerge app-i18n/scim-m17n" + einfo + ewarn + ewarn "If you upgraded from scim-1.2.x or scim-1.0.x," + ewarn "you should remerge all SCIM modules." + ewarn + epause 10 + + has_gtk && gtk-query-immodules-2.0 > ${ROOT}$(get_gtk_confdir)/gtk.immodules +} + +pkg_postrm() { + + has_gtk && gtk-query-immodules-2.0 > ${ROOT}$(get_gtk_confdir)/gtk.immodules +} |