diff options
Diffstat (limited to 'community/ibam')
-rw-r--r-- | community/ibam/PKGBUILD | 34 | ||||
-rw-r--r-- | community/ibam/ibam-0.5.2-sysfs.patch | 17 | ||||
-rw-r--r-- | community/ibam/ibam.install | 8 |
3 files changed, 59 insertions, 0 deletions
diff --git a/community/ibam/PKGBUILD b/community/ibam/PKGBUILD new file mode 100644 index 000000000..bf9cf289c --- /dev/null +++ b/community/ibam/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 43317 2011-03-24 19:43:55Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Kessia 'even' Pinheiro <kessiapinheiro at gmail.com> +# Contributor: Penguin <TGates81.at.gmail.dot.com> + +pkgname=ibam +pkgver=0.5.2 +pkgrel=4 +pkgdesc="An intelligent battery monitor" +arch=('i686' 'x86_64') +url="http://ibam.sourceforge.net/" +license=('GPL') +depends=('gcc-libs') +makedepends=('sed' 'make') +optdepends=('gnuplot: graphs support') +install="ibam.install" +source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz" + ibam-0.5.2-sysfs.patch) +md5sums=('2d5222ff504dd19e7c1ea8acc2f13cf5' + 'c3aafebd5ad9159c89f71beab4a0f414') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + install -m0755 -d ${pkgdir}/usr/bin + + sed -i \ + -e "s|/local/bin|/bin|g" \ + -e "s|^CFLAGS=-O3|CFLAGS=${CFLAGS}|g" \ + Makefile + patch -p1 <$srcdir/ibam-0.5.2-sysfs.patch + + make + install -m0755 -D ${srcdir}/${pkgname}-${pkgver}/ibam ${pkgdir}/usr/bin/ibam +} diff --git a/community/ibam/ibam-0.5.2-sysfs.patch b/community/ibam/ibam-0.5.2-sysfs.patch new file mode 100644 index 000000000..d9d73f924 --- /dev/null +++ b/community/ibam/ibam-0.5.2-sysfs.patch @@ -0,0 +1,17 @@ +diff -wbBur ibam-0.5.2/ibam.inl ibam-0.5.2.my/ibam.inl +--- ibam-0.5.2/ibam.inl 2009-03-09 16:53:20.000000000 +0000 ++++ ibam-0.5.2.my/ibam.inl 2011-03-24 19:41:32.000000000 +0000 +@@ -959,7 +959,13 @@ + acpi.close(); + apm = new acpi_status(); + } else { ++ sysfs.open((sysfs_path+"/BAT0/charge_full").c_str()); ++ if(!sysfs.is_open()) { + sysfs.open((sysfs_path+"/BAT1/charge_full").c_str()); ++ } ++ if(!sysfs.is_open()) { ++ sysfs.open((sysfs_path+"/BAT2/charge_full").c_str()); ++ } + if(sysfs.is_open()) { + #ifdef IBAM_DEBUG + cout << "using sysfs" << endl; diff --git a/community/ibam/ibam.install b/community/ibam/ibam.install new file mode 100644 index 000000000..507c1581d --- /dev/null +++ b/community/ibam/ibam.install @@ -0,0 +1,8 @@ +post_install() { + echo -e "-> install gnuplot to use the \`--plot' switch." + /bin/true +} + +post_upgrade() { + post_install $1 +} |