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 | 78693febe095de5d6a6c9a3cd8d1202402028f1e (patch) | |
tree | 924e2a55e2d7ef03519a4c24a8cf0da1ab10619b /dev-db/sqlite/sqlite-2.8.16-r1.ebuild | |
parent | Added ~x86-fbsd keyword. (diff) | |
download | historical-78693febe095de5d6a6c9a3cd8d1202402028f1e.tar.gz historical-78693febe095de5d6a6c9a3cd8d1202402028f1e.tar.bz2 historical-78693febe095de5d6a6c9a3cd8d1202402028f1e.zip |
USE flag change. tcltk -> tcl per bug #17808
Package-Manager: portage-2.1.1_pre3-r5
Diffstat (limited to 'dev-db/sqlite/sqlite-2.8.16-r1.ebuild')
-rw-r--r-- | dev-db/sqlite/sqlite-2.8.16-r1.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dev-db/sqlite/sqlite-2.8.16-r1.ebuild b/dev-db/sqlite/sqlite-2.8.16-r1.ebuild index 2ea337cf4850..4b4d3d8d9f0c 100644 --- a/dev-db/sqlite/sqlite-2.8.16-r1.ebuild +++ b/dev-db/sqlite/sqlite-2.8.16-r1.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-2.8.16-r1.ebuild,v 1.12 2006/06/11 18:28:03 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-2.8.16-r1.ebuild,v 1.13 2006/07/28 19:28:30 cardoe Exp $ inherit eutils toolchain-funcs @@ -11,10 +11,10 @@ SRC_URI="http://www.sqlite.org/${P}.tar.gz" LICENSE="as-is" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc-macos ppc64 sh sparc x86" -IUSE="nls doc tcltk" +IUSE="nls doc tcl" DEPEND="doc? ( dev-lang/tcl ) - tcltk? ( dev-lang/tcl )" + tcl? ( dev-lang/tcl )" src_unpack() { unpack ${A} @@ -53,7 +53,7 @@ src_compile() { emake doc || die fi - if use tcltk; then + if use tcl; then cp -P ${FILESDIR}/maketcllib.sh ${S} chmod +x ./maketcllib.sh ./maketcllib.sh @@ -74,7 +74,7 @@ src_install () { dohtml doc/*.html doc/*.txt doc/*.png fi - if use tcltk; then + if use tcl; then mkdir ${D}/usr/lib/tclsqlite${PV} cp ${S}/tclsqlite.so ${D}/usr/lib/tclsqlite${PV}/ cp ${S}/pkgIndex.tcl ${D}/usr/lib/tclsqlite${PV}/ |