summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-02-01 20:35:47 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-02-01 20:35:47 +0000
commite72fdbe8956e3ab4bc483868225117d79b8eb98d (patch)
tree9c5c8f6da8f033d0903da3b80f0eef93c326d004
parentf2ee71dc9618ff123ba0fec2efe5c971a3a5cede (diff)
downloadaports-e72fdbe8956e3ab4bc483868225117d79b8eb98d.tar.bz2
aports-e72fdbe8956e3ab4bc483868225117d79b8eb98d.tar.xz
main/cpufrequtils: upgrade to 007
-rw-r--r--main/cpufrequtils/APKBUILD6
-rw-r--r--main/cpufrequtils/cpufrequtils-005-build.patch24
2 files changed, 2 insertions, 28 deletions
diff --git a/main/cpufrequtils/APKBUILD b/main/cpufrequtils/APKBUILD
index cddef63f..377fe021 100644
--- a/main/cpufrequtils/APKBUILD
+++ b/main/cpufrequtils/APKBUILD
@@ -1,6 +1,6 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=cpufrequtils
-pkgver=006
+pkgver=007
pkgrel=0
pkgdesc="Userspace tools for the kernel cpufreq subsystem"
url="http://www.kernel.org/pub/linux/utils/kernel/cpufreq/cpufrequtils.html"
@@ -9,7 +9,6 @@ subpackages="$pkgname-dev $pkgname-doc"
depends="sysfsutils"
makedepends="sysfsutils-dev libtool"
source="http://www.kernel.org/pub/linux/utils/kernel/cpufreq/$pkgname-$pkgver.tar.bz2
- cpufrequtils-005-build.patch
cpufrequtils-006-nls.patch
$pkgname.initd
$pkgname.confd"
@@ -38,8 +37,7 @@ package() {
install -D -m755 ../$pkgname.initd "$pkgdir"/etc/init.d/$pkgname
install -D -m644 ../$pkgname.confd "$pkgdir"/etc/conf.d/$pkgname
}
-md5sums="124b0de8f3a4d672539a85ce13eed869 cpufrequtils-006.tar.bz2
-0b007dbd9fcb3acf55a8570f21b2f5d4 cpufrequtils-005-build.patch
+md5sums="fdd833ce70a9ae40ae8bce5b18f2becf cpufrequtils-007.tar.bz2
aa4c6f19766a741a68ae1ad352c6bad9 cpufrequtils-006-nls.patch
b9b80ef2f1b6c5e7ce0476037a8bce6b cpufrequtils.initd
d47ff635eef03248c633486eaeec191d cpufrequtils.confd"
diff --git a/main/cpufrequtils/cpufrequtils-005-build.patch b/main/cpufrequtils/cpufrequtils-005-build.patch
deleted file mode 100644
index 7dbe5704..00000000
--- a/main/cpufrequtils/cpufrequtils-005-build.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- a/Makefile
-+++ b/Makefile
-@@ -158,10 +158,10 @@ endif
-
- # if DEBUG is enabled, then we do not strip or optimize
- ifeq ($(strip $(DEBUG)),true)
-- CFLAGDEF += -O1 -g -DDEBUG
-+ CFLAGDEF += -DDEBUG
- STRIPCMD = /bin/true -Since_we_are_debugging
- else
-- CFLAGDEF += $(OPTIMIZATION) -fomit-frame-pointer
-+ CFLAGDEF += $(OPTIMIZATION)
- STRIPCMD = $(STRIP) -s --remove-section=.note --remove-section=.comment
- endif
-
-@@ -191,7 +191,7 @@ libcpufreq: libcpufreq.la
-
- cpufreq-%: libcpufreq.la $(UTIL_OBJS)
- $(QUIET) $(CC) $(CFLAGDEF) $(CFLAGS) -g -I. -I./lib/ -c -o utils/$@.o utils/$*.c
-- $(QUIET) $(CC) $(CFLAGDEF) $(CFLAGS) -g -I./lib/ -L. -L./.libs/ -lcpufreq -o $@ utils/$@.o
-+ $(QUIET) $(CC) $(CFLAGDEF) $(CFLAGS) -g $(LDFLAGS) -I./lib/ -L. -L./.libs/ -o $@ utils/$@.o -lcpufreq
- $(QUIET) $(STRIPCMD) $@
-
- utils: cpufreq-info cpufreq-set