diff options
author | Jeroen Roovers <jer@gentoo.org> | 2010-05-25 15:45:13 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2010-05-25 15:45:13 +0000 |
commit | eb0f3186f21ff727ef63d9edc8981614b14bea20 (patch) | |
tree | 300dd849605e26338868a5fb5e88b40639d5d9d3 /sys-power/athcool | |
parent | Adding missing base_src_prepare (diff) | |
download | gentoo-2-eb0f3186f21ff727ef63d9edc8981614b14bea20.tar.gz gentoo-2-eb0f3186f21ff727ef63d9edc8981614b14bea20.tar.bz2 gentoo-2-eb0f3186f21ff727ef63d9edc8981614b14bea20.zip |
Really respect CC.
(Portage version: 2.2_rc67/cvs/Linux i686)
Diffstat (limited to 'sys-power/athcool')
-rw-r--r-- | sys-power/athcool/ChangeLog | 10 | ||||
-rw-r--r-- | sys-power/athcool/athcool-0.3.11-r2.ebuild (renamed from sys-power/athcool/athcool-0.3.11.ebuild) | 15 |
2 files changed, 18 insertions, 7 deletions
diff --git a/sys-power/athcool/ChangeLog b/sys-power/athcool/ChangeLog index 69b472681307..80abcb5c0e98 100644 --- a/sys-power/athcool/ChangeLog +++ b/sys-power/athcool/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-power/athcool -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/athcool/ChangeLog,v 1.7 2008/11/27 19:31:11 vapier Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-power/athcool/ChangeLog,v 1.8 2010/05/25 15:45:13 jer Exp $ + +*athcool-0.3.11-r2 (25 May 2010) + + 25 May 2010; Jeroen Roovers <jer@gentoo.org> -athcool-0.3.11.ebuild, + +athcool-0.3.11-r2.ebuild: + Really respect CC. 27 Nov 2008; Mike Frysinger <vapier@gentoo.org> athcool-0.3.11-r1.ebuild: File system corruption (due to system instability) is also possible diff --git a/sys-power/athcool/athcool-0.3.11.ebuild b/sys-power/athcool/athcool-0.3.11-r2.ebuild index 7f2e7ce943a0..9d57b56fefeb 100644 --- a/sys-power/athcool/athcool-0.3.11.ebuild +++ b/sys-power/athcool/athcool-0.3.11-r2.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/athcool/athcool-0.3.11.ebuild,v 1.3 2006/06/24 05:29:04 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-power/athcool/athcool-0.3.11-r2.ebuild,v 1.1 2010/05/25 15:45:13 jer Exp $ -inherit eutils +inherit eutils toolchain-funcs DESCRIPTION="small utility to toggle Powersaving mode for AMD Athlon/Duron processors" HOMEPAGE="http://members.jcom.home.ne.jp/jacobi/linux/softwares.html#athcool" @@ -10,11 +10,15 @@ SRC_URI="http://members.jcom.home.ne.jp/jacobi/linux/files/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="-* x86" +KEYWORDS="-* ~x86" IUSE="" DEPEND="sys-apps/pciutils" +pkg_setup() { + tc-export CC +} + src_unpack() { unpack ${A} cd "${S}" @@ -32,7 +36,8 @@ pkg_postinst() { ewarn "enabling powersaving mode may cause:" ewarn " * noisy or distorted sound playback" ewarn " * a slowdown in harddisk performance" - ewarn " * system locks or instability" + ewarn " * system locks or unpredictable behavior" + ewarn " * file system corruption" ewarn "If you met those problems, you should not use athcool. Please use" ewarn "athcool AT YOUR OWN RISK!" } |