From: Hauke Mehrtens Date: Mon, 13 Jul 2015 19:34:38 +0000 (+0000) Subject: acpid: moved to github X-Git-Url: http://git.openwrt.org/ubox.git?a=commitdiff_plain;h=c03a3fe7775490a12bd7c9a43e4cc0b5a89ca320;p=openwrt%2Fsvn-archive%2Fpackages.git acpid: moved to github Signed-off-by: Hauke Mehrtens SVN-Revision: 46323 --- diff --git a/utils/acpid/Makefile b/utils/acpid/Makefile deleted file mode 100644 index c772f00d0..000000000 --- a/utils/acpid/Makefile +++ /dev/null @@ -1,65 +0,0 @@ -# -# Copyright (C) 2012 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# - -include $(TOPDIR)/rules.mk - -PKG_NAME:=acpid -PKG_VERSION:=2.0.10 -PKG_RELEASE:=1 - -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=http://tedfelix.com/linux/ -PKG_MD5SUM:=d5dd88bcfaa4a0bf51905e95115da6df - -include $(INCLUDE_DIR)/package.mk - -define Package/acpid - SECTION:=utils - CATEGORY:=Utilities - TITLE:=The ACPI Daemon (acpid) With Netlink Support - URL:=http://tedfelix.com/linux/acpid-netlink.html - DEPENDS:=+kmod-input-evdev +kmod-acpi-button -endef - -define Package/acpid/description - The ACPI Daemon (acpid) With Netlink Support -endef - -define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) \ - CC="$(TARGET_CC)" \ - LD="$(TARGET_CC)" \ - LDFLAGS="$(TARGET_LDFLAGS)" \ - all -endef - -define Package/acpid/install - $(INSTALL_DIR) $(1)/usr/sbin - $(INSTALL_BIN) $(PKG_BUILD_DIR)/acpid $(1)/usr/sbin/ - $(INSTALL_BIN) $(PKG_BUILD_DIR)/acpi_listen $(1)/usr/sbin/ - $(INSTALL_DIR) $(1)/etc/acpi/events - $(INSTALL_CONF) ./files/default $(1)/etc/acpi/events/default - $(INSTALL_DIR) $(1)/etc/init.d - $(INSTALL_CONF) ./files/acpid.init $(1)/etc/init.d/acpid - chmod 0750 $(1)/etc/init.d/acpid - $(INSTALL_DIR) $(1)/etc/hotplug.d/input/ - $(INSTALL_CONF) ./files/acpid.hotplug $(1)/etc/hotplug.d/input/ -endef - -define Package/acpid/postinst -#!/bin/sh -[ -n "$${IPKG_INSTROOT}" ] || { - echo "waiting for input devices to come up" - /etc/init.d/acpid enable - sleep 5 - /etc/init.d/acpid start - echo "please try the power button" - exit 0 -} -endef - -$(eval $(call BuildPackage,acpid)) diff --git a/utils/acpid/files/acpid.hotplug b/utils/acpid/files/acpid.hotplug deleted file mode 100644 index 6e08d01a2..000000000 --- a/utils/acpid/files/acpid.hotplug +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -. /lib/functions.sh - -if [ "$ACTION" = add ] && [ "$DEVICENAME" = event0 ]; then - ( /etc/init.d/acpid/stop; sleep 3; /usr/sbin/acpid )& -fi diff --git a/utils/acpid/files/acpid.init b/utils/acpid/files/acpid.init deleted file mode 100644 index 3365aa022..000000000 --- a/utils/acpid/files/acpid.init +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/ash /etc/rc.common -# Copyright (C) 2009-2010 OpenWrt.org - -START=99 -STOP=80 - -ACPID_BIN="/usr/sbin/acpid" -ACPID_PID="/var/run/acpid.pid" - -start() { - [ -x "$ACPID_BIN" ] || return 1 - start-stop-daemon -S -x $ACPID_BIN -p $ACPID_PID -} - -boot() { - # Do nothing on boot - [ -x "$ACPID_BIN" ] || return 1 - start-stop-daemon -S -x $ACPID_BIN -p $ACPID_PID - exit 0 -} - -stop() { - service_kill ${ACPID_BIN##*/} $ACPID_PID - rm -f $ACPID_PID -} diff --git a/utils/acpid/files/default b/utils/acpid/files/default deleted file mode 100644 index cf8d9a3f2..000000000 --- a/utils/acpid/files/default +++ /dev/null @@ -1,5 +0,0 @@ -# This is a sample ACPID configuration - -event=button/power.* -action=/sbin/poweroff -