summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarol Wojtaszek <sekretarz@gentoo.org>2005-05-12 15:16:02 +0000
committerKarol Wojtaszek <sekretarz@gentoo.org>2005-05-12 15:16:02 +0000
commita39062cf1f5cbcc7b6750b987e472d6d82739d7a (patch)
treef2d162ded965a9b99b709c177b4c756206867a9e /sys-power
parentstable on amd64 (diff)
downloadhistorical-a39062cf1f5cbcc7b6750b987e472d6d82739d7a.tar.gz
historical-a39062cf1f5cbcc7b6750b987e472d6d82739d7a.tar.bz2
historical-a39062cf1f5cbcc7b6750b987e472d6d82739d7a.zip
Version bump, bug #91957
Package-Manager: portage-2.0.51.21-r1
Diffstat (limited to 'sys-power')
-rw-r--r--sys-power/ncpufreqd/ChangeLog7
-rw-r--r--sys-power/ncpufreqd/Manifest10
-rw-r--r--sys-power/ncpufreqd/files/digest-ncpufreqd-1.81
-rw-r--r--sys-power/ncpufreqd/ncpufreqd-1.8.ebuild27
4 files changed, 40 insertions, 5 deletions
diff --git a/sys-power/ncpufreqd/ChangeLog b/sys-power/ncpufreqd/ChangeLog
index 3a8601e32bbc..258cb1dab89c 100644
--- a/sys-power/ncpufreqd/ChangeLog
+++ b/sys-power/ncpufreqd/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-power/ncpufreqd
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-power/ncpufreqd/ChangeLog,v 1.1 2005/05/07 14:34:23 sekretarz Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-power/ncpufreqd/ChangeLog,v 1.2 2005/05/12 15:16:02 sekretarz Exp $
+
+*ncpufreqd-1.8 (12 May 2005)
+
+ 12 May 2005; Karol Wojtaszek <sekretarz@gentoo.org> +ncpufreqd-1.8.ebuild:
+ Version bump
*ncpufreqd-1.7 (07 May 2005)
diff --git a/sys-power/ncpufreqd/Manifest b/sys-power/ncpufreqd/Manifest
index 9b25b937954b..d15ed71a399c 100644
--- a/sys-power/ncpufreqd/Manifest
+++ b/sys-power/ncpufreqd/Manifest
@@ -2,13 +2,15 @@
Hash: SHA1
MD5 d7e55479cefa74a3546b5f4091787932 ncpufreqd-1.7.ebuild 734
-MD5 1af5b273d437a641393bfe364cc045ab ChangeLog 404
+MD5 7a08774c0d574d156465da00227cd42f ncpufreqd-1.8.ebuild 734
+MD5 f4189e368d57308d0b9c189669bafb8b ChangeLog 527
MD5 8629d3ef30ef3be4b273182406eef4f2 metadata.xml 224
MD5 5a68bba703ba30752199e581013e643d files/digest-ncpufreqd-1.7 65
+MD5 17679febecd68dbfa353f7b58ee2abf4 files/digest-ncpufreqd-1.8 65
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
-iD8DBQFCfNJVZ/iYVBmujdURAs1WAKCwJoZ+3CajqV9WMoxzVvQv6KRJSACg3Rb6
-3EeTZbmZZmCPUejtda9xE0Q=
-=ENyC
+iD8DBQFCg3NOZ/iYVBmujdURAi3DAJ412Ll6saz4AmEN2izNoDfzT6gscACdHlVA
+FltOvqDEhukNZ8mPETY4EcY=
+=no8Q
-----END PGP SIGNATURE-----
diff --git a/sys-power/ncpufreqd/files/digest-ncpufreqd-1.8 b/sys-power/ncpufreqd/files/digest-ncpufreqd-1.8
new file mode 100644
index 000000000000..0ec81d2f197c
--- /dev/null
+++ b/sys-power/ncpufreqd/files/digest-ncpufreqd-1.8
@@ -0,0 +1 @@
+MD5 7da494634fc076770f1d6fb393e9c3ae ncpufreqd-1.8.tar.bz2 12707
diff --git a/sys-power/ncpufreqd/ncpufreqd-1.8.ebuild b/sys-power/ncpufreqd/ncpufreqd-1.8.ebuild
new file mode 100644
index 000000000000..48e28b48400f
--- /dev/null
+++ b/sys-power/ncpufreqd/ncpufreqd-1.8.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-power/ncpufreqd/ncpufreqd-1.8.ebuild,v 1.1 2005/05/12 15:16:02 sekretarz Exp $
+
+DESCRIPTION="Daemon controlling CPU speed and temperature"
+HOMEPAGE="http://fatcat.ftj.agh.edu.pl/~nelchael/"
+SRC_URI="http://fatcat.ftj.agh.edu.pl/~nelchael/files/ncpufreqd/${P}.tar.bz2"
+LICENSE="ZLIB"
+
+SLOT="0"
+KEYWORDS="~x86 ~amd64"
+
+IUSE=""
+
+DEPEND="virtual/logger"
+
+src_compile() {
+ ./configure --prefix=${D} || die "could not configure"
+ emake || die "emake failed"
+}
+
+src_install() {
+ make DESTDIR=${D} install || die "emake install failed"
+
+ exeinto /etc/init.d
+ doexe ${S}/gentoo-init.d/ncpufreqd
+}