diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-10-21 15:37:37 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-10-21 15:37:37 +0000 |
commit | 4ebb3ef30aa75cf8ad3ddcc20543d91c0c5ed61f (patch) | |
tree | 407bbb6789aeef8539d5712a95f868617722b441 /app-i18n/scim-hangul | |
parent | x86 stable, bug #286743 (diff) | |
download | historical-4ebb3ef30aa75cf8ad3ddcc20543d91c0c5ed61f.tar.gz historical-4ebb3ef30aa75cf8ad3ddcc20543d91c0c5ed61f.tar.bz2 historical-4ebb3ef30aa75cf8ad3ddcc20543d91c0c5ed61f.zip |
Remove KDE3 support.
Package-Manager: portage-2.2_rc46/cvs/Linux x86_64
Diffstat (limited to 'app-i18n/scim-hangul')
-rw-r--r-- | app-i18n/scim-hangul/ChangeLog | 8 | ||||
-rw-r--r-- | app-i18n/scim-hangul/scim-hangul-0.3.2.ebuild | 20 |
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* } |