acpid: adopted. Updated to 2.0.28

This commit is contained in:
Fredrik Rinnestam 2016-12-31 00:02:54 +01:00
parent 5b2ea03d27
commit 3a9820d2fe
3 changed files with 12 additions and 11 deletions

View File

@ -8,11 +8,12 @@ drwxr-xr-x root/root etc/rc.d/
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/acpi_listen
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/acpi_listen.8.gz
-rw-r--r-- root/root usr/man/man8/acpid.8.gz
-rw-r--r-- root/root usr/man/man8/kacpimon.8.gz
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/acpid
-rwxr-xr-x root/root usr/sbin/kacpimon
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man8/
-rw-r--r-- root/root usr/share/man/man8/acpi_listen.8.gz
-rw-r--r-- root/root usr/share/man/man8/acpid.8.gz
-rw-r--r-- root/root usr/share/man/man8/kacpimon.8.gz

View File

@ -1,4 +1,4 @@
c8ba756030d1b21fc973ec3d640f27f1 acpid-2.0.22.tar.xz
0432407b5ff75ae8e08afb43052fde2b acpid-2.0.28.tar.xz
d9cfda3e2ce4161edb19ed737950f7db acpid.rc
a0d3f9a8480faf602a7415d03267f49f default
270a4cddfe84c89c0fe534ece700d98b default.sh

View File

@ -1,20 +1,20 @@
# Description: Advanced Configuration and Power Interface event management daemon with netlink suppport
# URL: http://sourceforge.net/projects/acpid2/
# Maintainer: Mikhail Kolesnik, mike at openbunker dot org
# Maintainer: Fredrik Rinnestam, fredrik at crux dot guru
name=acpid
version=2.0.22
version=2.0.28
release=1
source=(http://downloads.sourceforge.net/sourceforge/acpid2/$name-$version.tar.xz \
acpid.rc default default.sh)
build() {
cd $name-$version
./configure --prefix=/usr --mandir=/usr/man
./configure --prefix=/usr
make
make DESTDIR=$PKG MANDIR=/usr/man install
make DESTDIR=$PKG install
install -D -m 755 $SRC/acpid.rc $PKG/etc/rc.d/acpid
install -D -m 755 $SRC/default.sh $PKG/etc/acpi/default.sh
install -D -m 644 $SRC/default $PKG/etc/acpi/events/default
rm -rf $PKG/usr/share
rm -r $PKG/usr/share/doc
}