diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2006-08-09 14:40:46 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2006-08-09 14:40:46 +0000 |
commit | 547d78f8b2834697df72d31fee223ddd5368a79c (patch) | |
tree | fef9ef6b104b5e96130f3337ce62bf21d7e6a328 /app-laptop | |
parent | Removing broken old ebuild. (diff) | |
download | gentoo-2-547d78f8b2834697df72d31fee223ddd5368a79c.tar.gz gentoo-2-547d78f8b2834697df72d31fee223ddd5368a79c.tar.bz2 gentoo-2-547d78f8b2834697df72d31fee223ddd5368a79c.zip |
USE flag split tcltk->tcl & tk per bug #17808
(Portage version: 2.1.1_pre4-r4)
Diffstat (limited to 'app-laptop')
-rw-r--r-- | app-laptop/i8kutils/ChangeLog | 5 | ||||
-rw-r--r-- | app-laptop/i8kutils/i8kutils-1.25.ebuild | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/app-laptop/i8kutils/ChangeLog b/app-laptop/i8kutils/ChangeLog index a5b4089cef43..19bbe6ed0702 100644 --- a/app-laptop/i8kutils/ChangeLog +++ b/app-laptop/i8kutils/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-laptop/i8kutils # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-laptop/i8kutils/ChangeLog,v 1.11 2006/01/16 04:45:43 halcy0n Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-laptop/i8kutils/ChangeLog,v 1.12 2006/08/09 14:40:46 cardoe Exp $ + + 09 Aug 2006; <dougg@gentoo.org> i8kutils-1.25.ebuild: + USE flag split tcltk->tcl & tk per bug #17808 16 Jan 2006; Mark Loeser <halcy0n@gentoo.org> i8kutils-1.25.ebuild: Whitespace fix diff --git a/app-laptop/i8kutils/i8kutils-1.25.ebuild b/app-laptop/i8kutils/i8kutils-1.25.ebuild index ba3a0bbaa1ed..c106cda34be3 100644 --- a/app-laptop/i8kutils/i8kutils-1.25.ebuild +++ b/app-laptop/i8kutils/i8kutils-1.25.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-laptop/i8kutils/i8kutils-1.25.ebuild,v 1.8 2006/01/16 04:45:43 halcy0n Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-laptop/i8kutils/i8kutils-1.25.ebuild,v 1.9 2006/08/09 14:40:46 cardoe Exp $ @@ -11,10 +11,10 @@ SRC_URI="http://people.debian.org/~dz/i8k/${P/-/_}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="-* x86 amd64" -IUSE="tcltk" +IUSE="tk" DEPEND="virtual/libc - tcltk? ( >=dev-lang/tk-8.3.3 )" + tk? ( >=dev-lang/tk-8.3.3 )" src_compile() { make all || die @@ -34,7 +34,7 @@ src_install() { insinto /etc/conf.d newins ${FILESDIR}/i8k.conf i8k - if use tcltk + if use tk then dobin i8kmon doman i8kmon.1 @@ -42,7 +42,7 @@ src_install() { dodoc i8kmon.conf else echo >> ${D}/etc/conf.d/i8k - echo '# i8kmon disabled because the package was installed without USE=tcltk' >> ${D}/etc/conf.d/i8k + echo '# i8kmon disabled because the package was installed without USE=tk' >> ${D}/etc/conf.d/i8k echo 'NOMON=1' >> ${D}/etc/conf.d/i8k fi |