diff options
author | Olivier Crête <tester@gentoo.org> | 2006-01-15 16:14:28 +0000 |
---|---|---|
committer | Olivier Crête <tester@gentoo.org> | 2006-01-15 16:14:28 +0000 |
commit | 2fdeb20be19b2fea8a0ee56ec06b39b8728d24b8 (patch) | |
tree | 667a403f57cb43fab6a414ee107384ba88b3f069 /app-laptop | |
parent | Removed old version. (diff) | |
download | gentoo-2-2fdeb20be19b2fea8a0ee56ec06b39b8728d24b8.tar.gz gentoo-2-2fdeb20be19b2fea8a0ee56ec06b39b8728d24b8.tar.bz2 gentoo-2-2fdeb20be19b2fea8a0ee56ec06b39b8728d24b8.zip |
More fixing of the installation of i8kmon
(Portage version: 2.0.53)
Diffstat (limited to 'app-laptop')
-rw-r--r-- | app-laptop/i8kutils/ChangeLog | 5 | ||||
-rw-r--r-- | app-laptop/i8kutils/i8kutils-1.25.ebuild | 21 |
2 files changed, 19 insertions, 7 deletions
diff --git a/app-laptop/i8kutils/ChangeLog b/app-laptop/i8kutils/ChangeLog index 01fb2801dcf6..252290c302bd 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.9 2006/01/06 04:42:26 tester Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-laptop/i8kutils/ChangeLog,v 1.10 2006/01/15 16:14:28 tester Exp $ + + 15 Jan 2006; Olivier Crête <tester@gentoo.org> i8kutils-1.25.ebuild: + More fixing of the installation of i8kmon 06 Jan 2006; Olivier Crête <tester@gentoo.org> metadata.xml, -i8kutils-1.17.ebuild, -i8kutils-1.17-r1.ebuild, i8kutils-1.25.ebuild: diff --git a/app-laptop/i8kutils/i8kutils-1.25.ebuild b/app-laptop/i8kutils/i8kutils-1.25.ebuild index 336ebe5f63e4..aaebbb57f841 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.6 2006/01/06 04:42:26 tester Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-laptop/i8kutils/i8kutils-1.25.ebuild,v 1.7 2006/01/15 16:14:28 tester Exp $ @@ -21,14 +21,10 @@ src_compile() { } src_install() { - dobin i8kbuttons i8kctl i8kfan i8kmon - use tcltk && dobin i8kmon + dobin i8kbuttons i8kctl doman i8kbuttons.1 i8kctl.1 - use tcltk && doman i8kmon.1 dosym /usr/bin/i8kctl /usr/bin/i8kfan dodoc README.i8kutils - dodoc i8kmon.conf - dodoc Configure.help.i8k docinto examples/ dodoc examples/* @@ -37,4 +33,17 @@ src_install() { fperms 755 /etc/init.d/i8k insinto /etc/conf.d newins ${FILESDIR}/i8k.conf i8k + + if use tcltk + then + dobin i8kmon + doman i8kmon.1 + docinto / + 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 'NOMON=1' >> ${D}/etc/conf.d/i8k + fi + } |