summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarol Wojtaszek <sekretarz@gentoo.org>2005-05-07 14:34:23 +0000
committerKarol Wojtaszek <sekretarz@gentoo.org>2005-05-07 14:34:23 +0000
commitd097a4b6feb35ecc863c6e2d99995b6917deadae (patch)
tree251ab69cfa52d28e43c9705ebfa354586577fc33 /sys-power/ncpufreqd
parentFix typo. (diff)
downloadhistorical-d097a4b6feb35ecc863c6e2d99995b6917deadae.tar.gz
historical-d097a4b6feb35ecc863c6e2d99995b6917deadae.tar.bz2
historical-d097a4b6feb35ecc863c6e2d99995b6917deadae.zip
Initial add, thanks to nelchael for app and ebuild, bug #68953
Package-Manager: portage-2.0.51.21-r1
Diffstat (limited to 'sys-power/ncpufreqd')
-rw-r--r--sys-power/ncpufreqd/ChangeLog10
-rw-r--r--sys-power/ncpufreqd/Manifest14
-rw-r--r--sys-power/ncpufreqd/files/digest-ncpufreqd-1.71
-rw-r--r--sys-power/ncpufreqd/metadata.xml8
-rw-r--r--sys-power/ncpufreqd/ncpufreqd-1.7.ebuild27
5 files changed, 60 insertions, 0 deletions
diff --git a/sys-power/ncpufreqd/ChangeLog b/sys-power/ncpufreqd/ChangeLog
new file mode 100644
index 000000000000..3a8601e32bbc
--- /dev/null
+++ b/sys-power/ncpufreqd/ChangeLog
@@ -0,0 +1,10 @@
+# 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 $
+
+*ncpufreqd-1.7 (07 May 2005)
+
+ 07 May 2005; Karol Wojtaszek <sekretarz@gentoo.org> +metadata.xml,
+ +ncpufreqd-1.7.ebuild:
+ Initial add, thanks to nelchael for app and ebuild, bug #68953
+
diff --git a/sys-power/ncpufreqd/Manifest b/sys-power/ncpufreqd/Manifest
new file mode 100644
index 000000000000..9b25b937954b
--- /dev/null
+++ b/sys-power/ncpufreqd/Manifest
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+MD5 d7e55479cefa74a3546b5f4091787932 ncpufreqd-1.7.ebuild 734
+MD5 1af5b273d437a641393bfe364cc045ab ChangeLog 404
+MD5 8629d3ef30ef3be4b273182406eef4f2 metadata.xml 224
+MD5 5a68bba703ba30752199e581013e643d files/digest-ncpufreqd-1.7 65
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.1 (GNU/Linux)
+
+iD8DBQFCfNJVZ/iYVBmujdURAs1WAKCwJoZ+3CajqV9WMoxzVvQv6KRJSACg3Rb6
+3EeTZbmZZmCPUejtda9xE0Q=
+=ENyC
+-----END PGP SIGNATURE-----
diff --git a/sys-power/ncpufreqd/files/digest-ncpufreqd-1.7 b/sys-power/ncpufreqd/files/digest-ncpufreqd-1.7
new file mode 100644
index 000000000000..46abc7da9470
--- /dev/null
+++ b/sys-power/ncpufreqd/files/digest-ncpufreqd-1.7
@@ -0,0 +1 @@
+MD5 c146292b6498dc036e931c7d9ca10cf1 ncpufreqd-1.7.tar.bz2 12818
diff --git a/sys-power/ncpufreqd/metadata.xml b/sys-power/ncpufreqd/metadata.xml
new file mode 100644
index 000000000000..950cb3623ca7
--- /dev/null
+++ b/sys-power/ncpufreqd/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>mobile</herd>
+<maintainer>
+ <email>sekretarz@gentoo.org</email>
+</maintainer>
+</pkgmetadata>
diff --git a/sys-power/ncpufreqd/ncpufreqd-1.7.ebuild b/sys-power/ncpufreqd/ncpufreqd-1.7.ebuild
new file mode 100644
index 000000000000..4e132f75a2f5
--- /dev/null
+++ b/sys-power/ncpufreqd/ncpufreqd-1.7.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.7.ebuild,v 1.1 2005/05/07 14:34:23 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
+}