diff options
author | Mamoru Komachi <usata@gentoo.org> | 2005-09-29 10:08:38 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2005-09-29 10:08:38 +0000 |
commit | 77c11cebf6a76d0d9d642308748ed5688c8f319b (patch) | |
tree | 97c11320dbc2c6689b0bea1edb138681726d860a /app-i18n/scim-tables | |
parent | force disable opengl support since its broken #107551 (diff) | |
download | gentoo-2-77c11cebf6a76d0d9d642308748ed5688c8f319b.tar.gz gentoo-2-77c11cebf6a76d0d9d642308748ed5688c8f319b.tar.bz2 gentoo-2-77c11cebf6a76d0d9d642308748ed5688c8f319b.zip |
Do not enable arts if arts USE is not set. Thanks to kasim.terzic@gmail.com; bug #102853.
(Portage version: 2.0.52-r1)
Diffstat (limited to 'app-i18n/scim-tables')
-rw-r--r-- | app-i18n/scim-tables/ChangeLog | 7 | ||||
-rw-r--r-- | app-i18n/scim-tables/files/digest-scim-tables-0.5.2 | 1 | ||||
-rw-r--r-- | app-i18n/scim-tables/scim-tables-0.5.2.ebuild | 26 | ||||
-rw-r--r-- | app-i18n/scim-tables/scim-tables-0.5.3.ebuild | 8 |
4 files changed, 10 insertions, 32 deletions
diff --git a/app-i18n/scim-tables/ChangeLog b/app-i18n/scim-tables/ChangeLog index 7f8f4d97542e..150434cf5d90 100644 --- a/app-i18n/scim-tables/ChangeLog +++ b/app-i18n/scim-tables/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-i18n/scim-tables # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/ChangeLog,v 1.31 2005/08/17 10:08:56 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/ChangeLog,v 1.32 2005/09/29 10:08:38 usata Exp $ + + 29 Sep 2005; Mamoru KOMACHI <usata@gentoo.org> -scim-tables-0.5.2.ebuild, + scim-tables-0.5.3.ebuild: + Do not enable arts if arts USE is not set. Thanks to kasim.terzic@gmail.com; + bug #102853. *scim-tables-0.5.3 (17 Aug 2005) diff --git a/app-i18n/scim-tables/files/digest-scim-tables-0.5.2 b/app-i18n/scim-tables/files/digest-scim-tables-0.5.2 deleted file mode 100644 index 46787ace3244..000000000000 --- a/app-i18n/scim-tables/files/digest-scim-tables-0.5.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 04749a3341bd37af20820497f1d68f7a scim-tables-0.5.2.tar.gz 5539476 diff --git a/app-i18n/scim-tables/scim-tables-0.5.2.ebuild b/app-i18n/scim-tables/scim-tables-0.5.2.ebuild deleted file mode 100644 index ebf3d6619199..000000000000 --- a/app-i18n/scim-tables/scim-tables-0.5.2.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/scim-tables-0.5.2.ebuild,v 1.1 2005/08/11 13:49:33 usata Exp $ - -inherit kde-functions - -DESCRIPTION="Smart Common Input Method (SCIM) Generic Table Input Method Server" -HOMEPAGE="http://www.scim-im.org/" -SRC_URI="mirror://sourceforge/scim/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" -IUSE="" - -DEPEND="|| ( >=app-i18n/scim-1.1 >=app-i18n/scim-cvs-1.1 )" - -src_compile() { - econf || die "econf failed" - emake || die "make failed" -} - -src_install() { - make DESTDIR=${D} install || die "install failed" - dodoc README ChangeLog AUTHORS -} diff --git a/app-i18n/scim-tables/scim-tables-0.5.3.ebuild b/app-i18n/scim-tables/scim-tables-0.5.3.ebuild index d5b7c176f02c..da6eeec27bc8 100644 --- a/app-i18n/scim-tables/scim-tables-0.5.3.ebuild +++ b/app-i18n/scim-tables/scim-tables-0.5.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/scim-tables-0.5.3.ebuild,v 1.1 2005/08/17 10:08:56 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/scim-tables-0.5.3.ebuild,v 1.2 2005/09/29 10:08:38 usata Exp $ inherit kde-functions @@ -10,13 +10,13 @@ SRC_URI="mirror://sourceforge/scim/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" -IUSE="" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc x86" +IUSE="arts" DEPEND="|| ( >=app-i18n/scim-1.1 >=app-i18n/scim-cvs-1.1 )" src_compile() { - econf || die "econf failed" + econf $(use_with arts) || die "econf failed" emake || die "make failed" } |