diff options
Diffstat (limited to 'packages/acpid')
| -rw-r--r-- | packages/acpid/.mtn2git_empty | 0 | ||||
| -rw-r--r-- | packages/acpid/acpid-1.0.2/.mtn2git_empty | 0 | ||||
| -rwxr-xr-x | packages/acpid/acpid-1.0.2/init | 26 | ||||
| -rw-r--r-- | packages/acpid/acpid-1.0.3/.mtn2git_empty | 0 | ||||
| -rw-r--r-- | packages/acpid/acpid-1.0.3/gcc40.patch | 13 | ||||
| -rwxr-xr-x | packages/acpid/acpid-1.0.3/init | 26 | ||||
| -rw-r--r-- | packages/acpid/acpid_1.0.2.bb | 32 | ||||
| -rw-r--r-- | packages/acpid/acpid_1.0.3.bb | 33 |
8 files changed, 0 insertions, 130 deletions
diff --git a/packages/acpid/.mtn2git_empty b/packages/acpid/.mtn2git_empty deleted file mode 100644 index e69de29bb2..0000000000 --- a/packages/acpid/.mtn2git_empty +++ /dev/null diff --git a/packages/acpid/acpid-1.0.2/.mtn2git_empty b/packages/acpid/acpid-1.0.2/.mtn2git_empty deleted file mode 100644 index e69de29bb2..0000000000 --- a/packages/acpid/acpid-1.0.2/.mtn2git_empty +++ /dev/null diff --git a/packages/acpid/acpid-1.0.2/init b/packages/acpid/acpid-1.0.2/init deleted file mode 100755 index 4937e71e9f..0000000000 --- a/packages/acpid/acpid-1.0.2/init +++ /dev/null @@ -1,26 +0,0 @@ -#! /bin/sh -e - -test -x /usr/sbin/acpid || exit 0 -test -d /proc/acpi || exit 0 - -case "$1" in - start) - echo -n "Starting Advanced Configuration and Power Interface daemon: " - start-stop-daemon -S -x /usr/sbin/acpid -- -c /etc/acpi/events -s /var/run/.acpid.socket - echo "acpid." - ;; - stop) - echo -n "Stopping Advanced Configuration and Power Interface daemon: " - start-stop-daemon -K -x /usr/sbin/acpid - echo "acpid." - ;; - restart|force-reload) - $0 stop - $0 start - ;; - *) - echo "Usage: /etc/init.d/acpid {start|stop|restart|force-reload}" - exit 1 -esac - -exit 0 diff --git a/packages/acpid/acpid-1.0.3/.mtn2git_empty b/packages/acpid/acpid-1.0.3/.mtn2git_empty deleted file mode 100644 index e69de29bb2..0000000000 --- a/packages/acpid/acpid-1.0.3/.mtn2git_empty +++ /dev/null diff --git a/packages/acpid/acpid-1.0.3/gcc40.patch b/packages/acpid/acpid-1.0.3/gcc40.patch deleted file mode 100644 index dbe090ba41..0000000000 --- a/packages/acpid/acpid-1.0.3/gcc40.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: acpid-1.0.3/ud_socket.c -=================================================================== ---- acpid-1.0.3.orig/ud_socket.c 2003-11-17 14:24:58.000000000 -0700 -+++ acpid-1.0.3/ud_socket.c 2005-06-27 14:44:17.785576106 -0700 -@@ -58,7 +58,7 @@ - while (1) { - int newsock = 0; - struct sockaddr_un cliaddr; -- int len = sizeof(struct sockaddr_un); -+ socklen_t len = sizeof(struct sockaddr_un); - - newsock = accept(listenfd, (struct sockaddr *)&cliaddr, &len); - if (newsock < 0) { diff --git a/packages/acpid/acpid-1.0.3/init b/packages/acpid/acpid-1.0.3/init deleted file mode 100755 index 4937e71e9f..0000000000 --- a/packages/acpid/acpid-1.0.3/init +++ /dev/null @@ -1,26 +0,0 @@ -#! /bin/sh -e - -test -x /usr/sbin/acpid || exit 0 -test -d /proc/acpi || exit 0 - -case "$1" in - start) - echo -n "Starting Advanced Configuration and Power Interface daemon: " - start-stop-daemon -S -x /usr/sbin/acpid -- -c /etc/acpi/events -s /var/run/.acpid.socket - echo "acpid." - ;; - stop) - echo -n "Stopping Advanced Configuration and Power Interface daemon: " - start-stop-daemon -K -x /usr/sbin/acpid - echo "acpid." - ;; - restart|force-reload) - $0 stop - $0 start - ;; - *) - echo "Usage: /etc/init.d/acpid {start|stop|restart|force-reload}" - exit 1 -esac - -exit 0 diff --git a/packages/acpid/acpid_1.0.2.bb b/packages/acpid/acpid_1.0.2.bb deleted file mode 100644 index c96f431224..0000000000 --- a/packages/acpid/acpid_1.0.2.bb +++ /dev/null @@ -1,32 +0,0 @@ -SECTION = "base" -DESCRIPTION = "A daemon for delivering ACPI events." -LICENSE="GPL" - -SRC_URI = "${SOURCEFORGE_MIRROR}/acpid/acpid-${PV}.tar.gz \ - file://init" - -EXTRA_OEMAKE = "" -do_compile () { - oe_runmake 'CC=${CC}' 'CROSS=${HOST_PREFIX}' -} - -do_install () { - oe_runmake 'INSTPREFIX=${D}' install - install -d ${D}${sysconfdir}/init.d - cat ${WORKDIR}/init | sed -e's,/usr/sbin,${sbindir},g' > ${D}${sysconfdir}/init.d/acpid - chmod 755 ${D}${sysconfdir}/init.d/acpid -} - -pkg_postinst () { - if test -n "${D}"; then - D="-r $D" - fi - update-rc.d $D acpid defaults -} - -pkg_prerm () { - if test -n "${D}"; then - D="-r $D" - fi - update-rc.d $D acpid remove -} diff --git a/packages/acpid/acpid_1.0.3.bb b/packages/acpid/acpid_1.0.3.bb deleted file mode 100644 index 4ce3878785..0000000000 --- a/packages/acpid/acpid_1.0.3.bb +++ /dev/null @@ -1,33 +0,0 @@ -SECTION = "base" -DESCRIPTION = "A daemon for delivering ACPI events." -LICENSE="GPL" - -SRC_URI = "${SOURCEFORGE_MIRROR}/acpid/acpid-${PV}.tar.gz \ - file://gcc40.patch;patch=1 \ - file://init" - -EXTRA_OEMAKE = "" -do_compile () { - oe_runmake 'CC=${CC}' 'CROSS=${HOST_PREFIX}' -} - -do_install () { - oe_runmake 'INSTPREFIX=${D}' install - install -d ${D}${sysconfdir}/init.d - cat ${WORKDIR}/init | sed -e's,/usr/sbin,${sbindir},g' > ${D}${sysconfdir}/init.d/acpid - chmod 755 ${D}${sysconfdir}/init.d/acpid -} - -pkg_postinst () { - if test -n "${D}"; then - D="-r $D" - fi - update-rc.d $D acpid defaults -} - -pkg_prerm () { - if test -n "${D}"; then - D="-r $D" - fi - update-rc.d $D acpid remove -} |
