diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2008-06-26 23:13:51 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2008-06-26 23:13:51 +0000 |
commit | 05a66f8b8b9c20fd46bb61e1ec426114e7ae5a5e (patch) | |
tree | 30c3f28745462d87f359859d3c0caf4c5e559535 /app-laptop | |
parent | Version bump. (diff) | |
download | gentoo-2-05a66f8b8b9c20fd46bb61e1ec426114e7ae5a5e.tar.gz gentoo-2-05a66f8b8b9c20fd46bb61e1ec426114e7ae5a5e.tar.bz2 gentoo-2-05a66f8b8b9c20fd46bb61e1ec426114e7ae5a5e.zip |
Make USE=smapi the default (bug #229281 by jkt). Change einfo to elog.
(Portage version: 2.2_rc1/cvs/Linux 2.6.25-gentoo-r5 x86_64)
Diffstat (limited to 'app-laptop')
-rw-r--r-- | app-laptop/kthinkbat/ChangeLog | 5 | ||||
-rw-r--r-- | app-laptop/kthinkbat/kthinkbat-0.2.9.ebuild | 35 |
2 files changed, 20 insertions, 20 deletions
diff --git a/app-laptop/kthinkbat/ChangeLog b/app-laptop/kthinkbat/ChangeLog index 16e0d42fe7c1..903a7d98fad1 100644 --- a/app-laptop/kthinkbat/ChangeLog +++ b/app-laptop/kthinkbat/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-laptop/kthinkbat # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-laptop/kthinkbat/ChangeLog,v 1.1 2008/04/12 18:36:16 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-laptop/kthinkbat/ChangeLog,v 1.2 2008/06/26 23:13:51 dirtyepic Exp $ + + 26 Jun 2008; Ryan Hill <dirtyepic@gentoo.org> kthinkbat-0.2.9.ebuild: + Make USE=smapi the default (bug #229281 by jkt). Change einfo to elog. *kthinkbat-0.2.9 (12 Apr 2008) diff --git a/app-laptop/kthinkbat/kthinkbat-0.2.9.ebuild b/app-laptop/kthinkbat/kthinkbat-0.2.9.ebuild index 052de44f6af9..5efe7627aadb 100644 --- a/app-laptop/kthinkbat/kthinkbat-0.2.9.ebuild +++ b/app-laptop/kthinkbat/kthinkbat-0.2.9.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-laptop/kthinkbat/kthinkbat-0.2.9.ebuild,v 1.1 2008/04/12 18:36:16 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-laptop/kthinkbat/kthinkbat-0.2.9.ebuild,v 1.2 2008/06/26 23:13:51 dirtyepic Exp $ + +EAPI=1 inherit kde @@ -10,7 +12,7 @@ SRC_URI="http://lepetitfou.dyndns.org/download/kthinkbat/src/kthinkbat-0.2.x/${P LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="smapi" +IUSE="+smapi" DEPEND="" RDEPEND="smapi? ( app-laptop/tp_smapi )" @@ -23,23 +25,18 @@ src_install() { } pkg_postinst() { - einfo - einfo "KThinkBat can make use of the SMAPI BIOS interface found on most" - einfo "ThinkPads. " - einfo - einfo "If you want to use this feature, make sure you have" - einfo "the kernel module tp_smapi (from app-laptop/tp_smapi)" - einfo "loaded." - einfo - einfo "To autoload this kernel module at system startup type" - einfo - einfo " # echo \"tp_smapi\" >> /etc/modules.autoload.d/kernel-2.6" - einfo + elog + elog "KThinkBat can make use of the SMAPI BIOS interface found on most" + elog "ThinkPads. " + elog + elog "If you want to use this feature, make sure you have" + elog "the kernel module tp_smapi (from app-laptop/tp_smapi)" + elog "loaded." + elog + elog "To autoload this kernel module at system startup type" + elog + elog " # echo \"tp_smapi\" >> /etc/modules.autoload.d/kernel-2.6" + elog buildsycoca } - -src_install() { - kde_src_install - dodoc COPYING* Contributors README -} |