diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2008-02-24 15:39:58 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2008-02-24 15:39:58 +0000 |
commit | 46481b9758acdf1b0873f8314bab45fe1dde66fe (patch) | |
tree | 3102f38260fd63a97c612ce96df335c41873904f /app-i18n/scim-bridge | |
parent | alpha/ia64/sparc/x86 stable (diff) | |
download | gentoo-2-46481b9758acdf1b0873f8314bab45fe1dde66fe.tar.gz gentoo-2-46481b9758acdf1b0873f8314bab45fe1dde66fe.tar.bz2 gentoo-2-46481b9758acdf1b0873f8314bab45fe1dde66fe.zip |
Version bumped.
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-i18n/scim-bridge')
-rw-r--r-- | app-i18n/scim-bridge/ChangeLog | 7 | ||||
-rw-r--r-- | app-i18n/scim-bridge/scim-bridge-0.4.15.ebuild | 83 |
2 files changed, 89 insertions, 1 deletions
diff --git a/app-i18n/scim-bridge/ChangeLog b/app-i18n/scim-bridge/ChangeLog index 1e6b856e3b5f..f3bcd3831f0f 100644 --- a/app-i18n/scim-bridge/ChangeLog +++ b/app-i18n/scim-bridge/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-i18n/scim-bridge # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-bridge/ChangeLog,v 1.17 2008/01/27 16:35:05 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-bridge/ChangeLog,v 1.18 2008/02/24 15:39:58 matsuu Exp $ + +*scim-bridge-0.4.15 (24 Feb 2008) + + 24 Feb 2008; MATSUU Takuto <matsuu@gentoo.org> +scim-bridge-0.4.15.ebuild: + Version bumped. *scim-bridge-0.4.14 (27 Jan 2008) diff --git a/app-i18n/scim-bridge/scim-bridge-0.4.15.ebuild b/app-i18n/scim-bridge/scim-bridge-0.4.15.ebuild new file mode 100644 index 000000000000..c465eafd03fb --- /dev/null +++ b/app-i18n/scim-bridge/scim-bridge-0.4.15.ebuild @@ -0,0 +1,83 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-bridge/scim-bridge-0.4.15.ebuild,v 1.1 2008/02/24 15:39:58 matsuu Exp $ + +WANT_AUTOMAKE=latest +WANT_AUTOCONF=latest + +inherit autotools eutils qt3 qt4 + +DESCRIPTION="Yet another IM-client of SCIM" +HOMEPAGE="http://www.scim-im.org/projects/scim_bridge" +SRC_URI="mirror://sourceforge/scim/${P}.tar.gz" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc64 ~sparc ~x86" +IUSE="doc gtk qt3 qt4" + +RDEPEND=">=app-i18n/scim-1.4.6 + gtk? ( + >=x11-libs/gtk+-2.2 + >=x11-libs/pango-1.1 + ) + qt3? ( + $(qt_min_version 3.3.4) + >=x11-libs/pango-1.1 + ) + qt4? ( + $(qt4_min_version 4.0.0) + >=x11-libs/pango-1.1 + )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + doc? ( app-doc/doxygen )" + +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 +} + +pkg_setup() { + if use qt3 && ! built_with_use =x11-libs/qt-3* immqt-bc && ! built_with_use =x11-libs/qt-3* immqt; then + die "You need to rebuild >=x11-libs/qt-3.3.4 with immqt-bc(recommended) or immqt USE flag enabled." + fi +} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-0.4.14-qt4.patch + eautoreconf +} + +src_compile() { + econf \ + $(use_enable gtk gtk2-immodule) \ + $(use_enable qt3 qt3-immodule) \ + $(use_enable qt4 qt4-immodule) \ + $(use_enable doc documents) || die + emake || die +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + + dodoc AUTHORS ChangeLog NEWS README +} + +pkg_postinst() { + elog + elog "If you would like to use ${PN} as default instead of scim, set" + elog " $ export GTK_IM_MODULE=scim-bridge" + elog " $ export QT_IM_MODULE=scim-bridge" + elog + [ -x /usr/bin/gtk-query-immodules-2.0 ] && gtk-query-immodules-2.0 > "${ROOT}$(get_gtk_confdir)/gtk.immodules" +} + +pkg_postrm() { + [ -x /usr/bin/gtk-query-immodules-2.0 ] && gtk-query-immodules-2.0 > "${ROOT}$(get_gtk_confdir)/gtk.immodules" +} |