diff options
author | Christoph Junghans <ottxor@gentoo.org> | 2013-06-26 14:05:53 +0000 |
---|---|---|
committer | Christoph Junghans <ottxor@gentoo.org> | 2013-06-26 14:05:53 +0000 |
commit | cb23b418fc36f84d77125873972530eea427aaa9 (patch) | |
tree | 3892de3aa583eade32314559bb6c87b2ca1dfe72 | |
parent | remove old, fix posix compatibility (bug #474142#c4) (diff) | |
download | gentoo-2-cb23b418fc36f84d77125873972530eea427aaa9.tar.gz gentoo-2-cb23b418fc36f84d77125873972530eea427aaa9.tar.bz2 gentoo-2-cb23b418fc36f84d77125873972530eea427aaa9.zip |
remove old, fix posix compatibility (bug #474142#c4)
(Portage version: 2.2.0_alpha185/cvs/Linux x86_64, signed Manifest commit with key C2000586)
-rw-r--r-- | app-laptop/hdapsd/ChangeLog | 6 | ||||
-rw-r--r-- | app-laptop/hdapsd/files/hdapsd.init.3 | 2 | ||||
-rw-r--r-- | app-laptop/hdapsd/hdapsd-20090401-r2.ebuild | 6 |
3 files changed, 9 insertions, 5 deletions
diff --git a/app-laptop/hdapsd/ChangeLog b/app-laptop/hdapsd/ChangeLog index 99b20a3b32af..0379e0afa29d 100644 --- a/app-laptop/hdapsd/ChangeLog +++ b/app-laptop/hdapsd/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-laptop/hdapsd # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-laptop/hdapsd/ChangeLog,v 1.26 2013/06/26 14:04:11 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-laptop/hdapsd/ChangeLog,v 1.27 2013/06/26 14:05:53 ottxor Exp $ + + 26 Jun 2013; Christoph Junghans <ottxor@gentoo.org> files/hdapsd.init.3, + hdapsd-20090401-r2.ebuild: + remove old, fix posix compatibility (bug #474142#c4) 25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> hdapsd-20090401-r2.ebuild: Stable for amd64, wrt bug #474142 diff --git a/app-laptop/hdapsd/files/hdapsd.init.3 b/app-laptop/hdapsd/files/hdapsd.init.3 index d2405232e246..d7894fbc8ada 100644 --- a/app-laptop/hdapsd/files/hdapsd.init.3 +++ b/app-laptop/hdapsd/files/hdapsd.init.3 @@ -38,7 +38,7 @@ checkconfig() { modprobe tp_smapi 2>/dev/null fi - if [ ! -d /sys/devices/platform/hdaps ]; then + if [ ! -d /sys/devices/platform/hdaps ] ; then ebegin "Loading hdaps module" modprobe hdaps eend $? || return 1 diff --git a/app-laptop/hdapsd/hdapsd-20090401-r2.ebuild b/app-laptop/hdapsd/hdapsd-20090401-r2.ebuild index 36ec6f172e8c..857cd98311d7 100644 --- a/app-laptop/hdapsd/hdapsd-20090401-r2.ebuild +++ b/app-laptop/hdapsd/hdapsd-20090401-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-laptop/hdapsd/hdapsd-20090401-r2.ebuild,v 1.4 2013/06/25 12:49:05 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-laptop/hdapsd/hdapsd-20090401-r2.ebuild,v 1.5 2013/06/26 14:05:53 ottxor Exp $ EAPI=4 inherit linux-info readme.gentoo @@ -15,8 +15,8 @@ KEYWORDS="amd64 x86" IUSE="" pkg_setup() { - # We require the hdaps module which can either come from kernel sources or - # from the tp_smapi package. + # We require the hdaps module which can either come from kernel sources + # or from the tp_smapi package. if ! has_version app-laptop/tp_smapi[hdaps]; then CONFIG_CHECK="~SENSORS_HDAPS" ERROR_SENSORS_HDAPS="${P} requires app-laptop/tp_smapi (with hdaps USE enabled) or support for CONFIG_SENSORS_HDAPS enabled" |