diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-10-16 18:30:12 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-10-16 18:30:12 +0000 |
commit | 48127898ce709501e62110ed8c1f7b83c70777fd (patch) | |
tree | 0213f281a6599a037537d81e1f09304171fd00aa /app-i18n/scim-tables | |
parent | Add missing pkg-config depedency, thanks to Patrick Lauer for reporting in bu... (diff) | |
download | historical-48127898ce709501e62110ed8c1f7b83c70777fd.tar.gz historical-48127898ce709501e62110ed8c1f7b83c70777fd.tar.bz2 historical-48127898ce709501e62110ed8c1f7b83c70777fd.zip |
Add missing pkg-config depedency, thanks to Patrick Lauer for reporting in bug #151618.
Remove arts useflag, as it's pointless.
Package-Manager: portage-2.1.2_pre3-r2
Diffstat (limited to 'app-i18n/scim-tables')
-rw-r--r-- | app-i18n/scim-tables/ChangeLog | 7 | ||||
-rw-r--r-- | app-i18n/scim-tables/scim-tables-0.5.3.ebuild | 10 |
2 files changed, 12 insertions, 5 deletions
diff --git a/app-i18n/scim-tables/ChangeLog b/app-i18n/scim-tables/ChangeLog index d032de6336e6..3dc5445e13aa 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-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/ChangeLog,v 1.41 2006/08/14 13:11:56 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/ChangeLog,v 1.42 2006/10/16 18:25:33 flameeyes Exp $ + + 16 Oct 2006; Diego Pettenò <flameeyes@gentoo.org> + scim-tables-0.5.3.ebuild: + Add missing pkg-config depedency, thanks to Patrick Lauer for reporting in + bug #151618. Remove arts useflag, as it's pointless. 14 Aug 2006; Alastair Tse <liquidx@gentoo.org> scim-tables-0.5.6-r1.ebuild: 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 395f7164582a..d5c4c519b801 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-2006 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.7 2006/07/03 18:59:44 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/scim-tables-0.5.3.ebuild,v 1.8 2006/10/16 18:25:33 flameeyes Exp $ inherit kde-functions eutils @@ -11,10 +11,12 @@ SRC_URI="mirror://sourceforge/scim/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha amd64 ppc ~sparc x86" -IUSE="arts" +IUSE="" -DEPEND="|| ( x11-libs/libXt virtual/x11 ) +RDEPEND="|| ( x11-libs/libXt virtual/x11 ) || ( >=app-i18n/scim-1.1 >=app-i18n/scim-cvs-1.1 )" +DEPEND="${RDEPEND} + dev-util/pkgconfig" src_unpack() { unpack ${A} @@ -23,7 +25,7 @@ src_unpack() { } src_compile() { - econf $(use_with arts) || die "econf failed" + econf --without-arts || die "econf failed" emake || die "make failed" } |