diff options
Diffstat (limited to 'community/acpitool')
-rw-r--r-- | community/acpitool/PKGBUILD | 32 | ||||
-rw-r--r-- | community/acpitool/linux-3.0.patch | 18 | ||||
-rw-r--r-- | community/acpitool/sysfs-battery.patch | 52 |
3 files changed, 0 insertions, 102 deletions
diff --git a/community/acpitool/PKGBUILD b/community/acpitool/PKGBUILD deleted file mode 100644 index acd8be747..000000000 --- a/community/acpitool/PKGBUILD +++ /dev/null @@ -1,32 +0,0 @@ -# $Id: PKGBUILD 58302 2011-11-10 17:58:29Z spupykin $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: Gerhard Brauer <gerhard.brauer@web.de> -# Contributor: Milosz Piglas <archeofuture@gmail.com> - -pkgname=acpitool -pkgver=0.5.1 -pkgrel=5 -pkgdesc="ACPI client - replacement for apm tool" -url="http://sourceforge.net/projects/acpitool/" -arch=('i686' 'x86_64' 'mips64el') -license=('GPL') -depends=('gcc-libs') -source=(http://downloads.sourceforge.net/sourceforge/acpitool/acpitool-$pkgver.tar.bz2 - linux-3.0.patch - sysfs-battery.patch) -md5sums=('9e4ec55201be0be71ffbc56d38b42b57' - 'eb149edb32be6cdf20a7d16beb3e9f70' - '969fc4929cc215756db27168646c2b7a') - -build() { - cd "$srcdir/$pkgname-$pkgver" - patch -p1 <$srcdir/linux-3.0.patch - patch -p1 <$srcdir/sysfs-battery.patch - ./configure --prefix=/usr - make -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - make prefix="$pkgdir/usr" install -} diff --git a/community/acpitool/linux-3.0.patch b/community/acpitool/linux-3.0.patch deleted file mode 100644 index ba454a0c2..000000000 --- a/community/acpitool/linux-3.0.patch +++ /dev/null @@ -1,18 +0,0 @@ -diff -wbBur acpitool-0.5.1/src/acpitool.cpp acpitool-0.5.1.my/src/acpitool.cpp ---- acpitool-0.5.1/src/acpitool.cpp 2009-08-13 23:37:48.000000000 +0400 -+++ acpitool-0.5.1.my/src/acpitool.cpp 2011-08-11 21:53:17.000000000 +0400 -@@ -205,8 +205,12 @@ - Kernel_24 = 1; - Kernel_26 = 0; - } -- -- if(strncmp(str,"2.6",3)==0) -+ else if(strncmp(str,"2.6",3)==0) -+ { -+ Kernel_24 = 0; -+ Kernel_26 = 1; -+ } -+ else - { - Kernel_24 = 0; - Kernel_26 = 1; diff --git a/community/acpitool/sysfs-battery.patch b/community/acpitool/sysfs-battery.patch deleted file mode 100644 index 4f6898a78..000000000 --- a/community/acpitool/sysfs-battery.patch +++ /dev/null @@ -1,52 +0,0 @@ -diff -wbBur acpitool-0.5.1/src/acpitool.h acpitool-0.5.1.my/src/acpitool.h ---- acpitool-0.5.1/src/acpitool.h 2008-10-16 19:38:12.000000000 +0400 -+++ acpitool-0.5.1.my/src/acpitool.h 2011-11-10 21:55:23.000000000 +0400 -@@ -29,11 +29,11 @@ - - struct Battery_Info { - int Battery_Present; -- char Charging_State[12]; -- char Remaining_Cap[10]; -- char Design_Cap[10]; -- char LastFull_Cap[10]; -- char Present_Rate[10]; -+ char Charging_State[13]; -+ char Remaining_Cap[13]; -+ char Design_Cap[13]; -+ char LastFull_Cap[13]; -+ char Present_Rate[13]; - char Technology[13]; - char Model[13]; - char Serial[13]; -diff -wbBur acpitool-0.5.1/src/battery.cpp acpitool-0.5.1.my/src/battery.cpp ---- acpitool-0.5.1/src/battery.cpp 2009-08-13 23:42:43.000000000 +0400 -+++ acpitool-0.5.1.my/src/battery.cpp 2011-11-10 21:48:22.000000000 +0400 -@@ -614,7 +614,7 @@ - } - - memset(str, '\0', 100); -- for(int t=0; t<5; t++) -+ for(int t=0; t<1; t++) - fgets(str, 100, power_fp); /* skip first 5 lines */ - - /* get battery status (full, charging, ...) */ -@@ -664,8 +664,8 @@ - - - -- fgets(str, 100, power_fp); /* skip 1 line */ -- -+ fgets(str, 100, power_fp); /* cycle count - skip 1 line */ -+ fgets(str, 100, power_fp); /* voltage_min - skip 1 line */ - - /* get voltage_now */ - memset(str, '\0', 100); -@@ -756,7 +756,7 @@ - else - strncpy(batt_info->Model, "unknown", 7); - -- fgets(str, 100, power_fp); -+ fgets(str, 100, power_fp); /* manufacturer - skip 1 line */ - - /* get serial */ - memset(str, '\0', 100); |