diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-07-03 19:37:47 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-07-03 19:37:47 +0000 |
commit | fbc9892f82049d012a484487885eb191fcffbdf0 (patch) | |
tree | 1b6e37846b88879160b599638ca49a31d95c615b /app-i18n | |
parent | Marked ppc-macos stable (bug #135853) (diff) | |
download | gentoo-2-fbc9892f82049d012a484487885eb191fcffbdf0.tar.gz gentoo-2-fbc9892f82049d012a484487885eb191fcffbdf0.tar.bz2 gentoo-2-fbc9892f82049d012a484487885eb191fcffbdf0.zip |
Add nls useflag, disable static libraries and dependency tracking as scim-pinyin.
(Portage version: 2.1.1_pre2-r2)
Diffstat (limited to 'app-i18n')
-rw-r--r-- | app-i18n/scim-tables/ChangeLog | 7 | ||||
-rw-r--r-- | app-i18n/scim-tables/scim-tables-0.5.6.ebuild | 13 |
2 files changed, 15 insertions, 5 deletions
diff --git a/app-i18n/scim-tables/ChangeLog b/app-i18n/scim-tables/ChangeLog index 2cbe2971357d..eba0e02457f4 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.38 2006/07/03 18:59:44 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/ChangeLog,v 1.39 2006/07/03 19:37:47 flameeyes Exp $ + + 03 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> + scim-tables-0.5.6.ebuild: + Add nls useflag, disable static libraries and dependency tracking as + scim-pinyin. 03 Jul 2006; Diego Pettenò <flameeyes@gentoo.org> +files/scim-tables-qt335.patch, diff --git a/app-i18n/scim-tables/scim-tables-0.5.6.ebuild b/app-i18n/scim-tables/scim-tables-0.5.6.ebuild index 52306cd0450a..47ab31fa9247 100644 --- a/app-i18n/scim-tables/scim-tables-0.5.6.ebuild +++ b/app-i18n/scim-tables/scim-tables-0.5.6.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.6.ebuild,v 1.2 2006/07/03 18:59:44 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/scim-tables-0.5.6.ebuild,v 1.3 2006/07/03 19:37:47 flameeyes Exp $ inherit kde-functions autotools @@ -12,13 +12,15 @@ SRC_URI="mirror://sourceforge/scim/${P}.tar.gz LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" -IUSE="kde" +IUSE="kde nls" RDEPEND="|| ( x11-libs/libXt virtual/x11 ) || ( >=app-i18n/scim-1.1 >=app-i18n/scim-cvs-1.1 ) - !alpha? ( !sparc? ( kde? ( app-i18n/skim ) ) )" + !alpha? ( !sparc? ( kde? ( app-i18n/skim ) ) ) + nls? ( virtual/libintl )" DEPEND="${RDEPEND} - dev-util/pkgconfig" + dev-util/pkgconfig + nls? ( sys-devel/gettext )" RESTRICT="confcache" @@ -34,6 +36,9 @@ src_unpack() { src_compile() { econf \ $(use_enable kde skim-support) \ + $(use_enable nls) \ + --disable-static \ + --disable-dependency-tracking \ --without-arts || die "econf failed" emake || die "make failed" } |