summaryrefslogtreecommitdiff
path: root/app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild')
-rw-r--r--app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild96
1 files changed, 0 insertions, 96 deletions
diff --git a/app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild b/app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild
deleted file mode 100644
index 2f7cc8cc7862..000000000000
--- a/app-i18n/scim-bridge/scim-bridge-0.4.16-r3.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit autotools eutils gnome2-utils multilib readme.gentoo-r1
-
-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 ~x86"
-IUSE="doc gtk qt4"
-
-RESTRICT="test"
-
-RDEPEND="
- >=app-i18n/scim-1.4.6
- gtk? (
- >=x11-libs/gtk+-2.2:2
- >=x11-libs/pango-1.1
- )
- qt4? (
- dev-qt/qtgui:4
- dev-qt/qtcore:4
- >=x11-libs/pango-1.1
- )
-"
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- dev-util/intltool
- doc? ( app-doc/doxygen )
-"
-
-DISABLE_AUTOFORMATTING="yes"
-DOC_CONTENTS="
-If you would like to use ${PN} as default instead of scim, set
-$ export GTK_IM_MODULE=scim-bridge
-$ export QT_IM_MODULE=scim-bridge
-"
-
-PATCHES=(
- "${FILESDIR}/${PN}-0.4.15.2-qt4.patch"
- "${FILESDIR}/${PN}-0.4.15.2-gcc43.patch"
- "${FILESDIR}/${P}+gcc-4.4.patch"
- "${FILESDIR}/${P}+gcc-4.7.patch"
- "${FILESDIR}/${P}-configure.ac.patch" #280887
-)
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- local myconf=""
- # '--disable-*-immodule' are b0rked, bug #280887
-
- if use gtk ; then
- myconf="${myconf} --enable-gtk2-immodule=yes"
- else
- myconf="${myconf} --enable-gtk2-immodule=no"
- fi
-
- # Qt3 is no longer supported, bug 283429
- myconf="${myconf} --enable-qt3-immodule=no"
-
- if use qt4 ; then
- myconf="${myconf} --enable-qt4-immodule=yes"
- export QT_SELECT="4"
- else
- myconf="${myconf} --enable-qt4-immodule=no"
- fi
-
- econf \
- --disable-static \
- $(use_enable doc documents) \
- ${myconf}
-}
-
-src_install() {
- default
- prune_libtool_files --modules
- readme.gentoo_create_doc
-}
-
-pkg_postinst() {
- use gtk && gnome2_query_immodules_gtk2
- readme.gentoo_print_elog
-}
-
-pkg_postrm() {
- use gtk && gnome2_query_immodules_gtk2
-}