summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2009-10-21 15:37:37 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2009-10-21 15:37:37 +0000
commit6cb0f537bd107acf072e8db1bbb33e16fd2083fc (patch)
tree510fd776283620e3cfc531c8d1e309f01d82d33b /app-i18n
parentRemove KDE3 support. (diff)
downloadgentoo-2-6cb0f537bd107acf072e8db1bbb33e16fd2083fc.tar.gz
gentoo-2-6cb0f537bd107acf072e8db1bbb33e16fd2083fc.tar.bz2
gentoo-2-6cb0f537bd107acf072e8db1bbb33e16fd2083fc.zip
Remove KDE3 support.
(Portage version: 2.2_rc46/cvs/Linux x86_64)
Diffstat (limited to 'app-i18n')
-rw-r--r--app-i18n/scim-hangul/ChangeLog8
-rw-r--r--app-i18n/scim-hangul/scim-hangul-0.3.2.ebuild20
2 files changed, 14 insertions, 14 deletions
diff --git a/app-i18n/scim-hangul/ChangeLog b/app-i18n/scim-hangul/ChangeLog
index 0d4304053c2e..2991579715d4 100644
--- a/app-i18n/scim-hangul/ChangeLog
+++ b/app-i18n/scim-hangul/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-i18n/scim-hangul
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-hangul/ChangeLog,v 1.28 2008/11/16 16:38:18 matsuu Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-hangul/ChangeLog,v 1.29 2009/10/21 15:37:37 ssuominen Exp $
+
+ 21 Oct 2009; Samuli Suominen <ssuominen@gentoo.org>
+ scim-hangul-0.3.2.ebuild:
+ Remove KDE3 support.
16 Nov 2008; MATSUU Takuto <matsuu@gentoo.org> -scim-hangul-0.2.2.ebuild,
-scim-hangul-0.3.1.ebuild:
diff --git a/app-i18n/scim-hangul/scim-hangul-0.3.2.ebuild b/app-i18n/scim-hangul/scim-hangul-0.3.2.ebuild
index ff203af9558e..50d6d63f39b1 100644
--- a/app-i18n/scim-hangul/scim-hangul-0.3.2.ebuild
+++ b/app-i18n/scim-hangul/scim-hangul-0.3.2.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-hangul/scim-hangul-0.3.2.ebuild,v 1.5 2008/11/15 17:48:55 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-hangul/scim-hangul-0.3.2.ebuild,v 1.6 2009/10/21 15:37:37 ssuominen Exp $
+EAPI=2
inherit base
DESCRIPTION="Hangul IMEngine for SCIM ported from imhangul"
@@ -11,30 +12,25 @@ SRC_URI="mirror://sourceforge/scim/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ppc x86"
-IUSE="kde nls"
+IUSE="nls"
RDEPEND="|| ( >=app-i18n/scim-0.99.8 >=app-i18n/scim-cvs-0.99.8 )
>=app-i18n/libhangul-0.0.4
- kde? ( >=app-i18n/skim-1.2.1 )
nls? ( virtual/libintl )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
nls? ( sys-devel/gettext )"
-PATCHES=(
- "${FILESDIR}"/${P}+gcc-4.3.patch
-)
+PATCHES=( "${FILESDIR}/${P}+gcc-4.3.patch" )
-src_compile() {
+src_configure() {
econf \
- $(use_enable kde skim-support) \
- $(use_enable nls) || die
- emake || die
+ --disable-skim-support \
+ $(use_enable nls)
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
-
dodoc AUTHORS ChangeLog* NEWS README*
}