diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2006-07-28 19:28:30 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2006-07-28 19:28:30 +0000 |
commit | c49352631f02fcce81d5f561e2b84c3d87a61c42 (patch) | |
tree | db3a685f6a18c8d058e2ba4aa2cef4ea25dda797 /dev-db/sqlite/sqlite-3.3.5.ebuild | |
parent | Added ~x86-fbsd keyword. (diff) | |
download | gentoo-2-c49352631f02fcce81d5f561e2b84c3d87a61c42.tar.gz gentoo-2-c49352631f02fcce81d5f561e2b84c3d87a61c42.tar.bz2 gentoo-2-c49352631f02fcce81d5f561e2b84c3d87a61c42.zip |
USE flag change. tcltk -> tcl per bug #17808
(Portage version: 2.1.1_pre3-r5)
Diffstat (limited to 'dev-db/sqlite/sqlite-3.3.5.ebuild')
-rw-r--r-- | dev-db/sqlite/sqlite-3.3.5.ebuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/dev-db/sqlite/sqlite-3.3.5.ebuild b/dev-db/sqlite/sqlite-3.3.5.ebuild index 4428b1ffaebb..69b41a1e74c1 100644 --- a/dev-db/sqlite/sqlite-3.3.5.ebuild +++ b/dev-db/sqlite/sqlite-3.3.5.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/dev-db/sqlite/sqlite-3.3.5.ebuild,v 1.5 2006/05/06 20:46:32 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.3.5.ebuild,v 1.6 2006/07/28 19:28:30 cardoe Exp $ inherit eutils alternatives @@ -11,11 +11,11 @@ SRC_URI="http://www.sqlite.org/${P}.tar.gz" LICENSE="as-is" SLOT="3" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc-macos ~ppc64 ~sh ~sparc ~x86" -IUSE="nothreadsafe doc tcltk debug" +IUSE="nothreadsafe doc tcl debug" DEPEND="virtual/libc doc? ( dev-lang/tcl ) - tcltk? ( dev-lang/tcl )" + tcl? ( dev-lang/tcl )" SOURCE="/usr/bin/lemon" ALTERNATIVES="${SOURCE}-3 ${SOURCE}-0" @@ -27,8 +27,8 @@ src_unpack() { ewarn "The userpriv feature must be enabled to run tests." ewarn "The testsuite will not be run. fi - if ! use tcltk; then - ewarn "The tcltk useflag must be enabled to run tests." + if ! use tcl; then + ewarn "The tcl useflag must be enabled to run tests." ewarn "The testsuite will not be run. fi fi @@ -59,7 +59,7 @@ src_compile() { myconf="${myconf} --disable-threadsafe" fi - if ! use tcltk; then + if ! use tcl; then myconf="${myconf} --disable-tcl" fi @@ -76,7 +76,7 @@ src_compile() { } src_test() { - if use tcltk ; then + if use tcl ; then if has userpriv ${FEATURES} ; then cd ${S} if use debug; then |