diff options
author | 2006-02-13 15:47:31 +0000 | |
---|---|---|
committer | 2006-02-13 15:47:31 +0000 | |
commit | a144af317327022bbbbc5f088d6e981571e8ac4b (patch) | |
tree | eeece5683af7e540f87f4162e2e2f9ea74b6185e /sys-power/acpid | |
parent | Stable on x86. (diff) | |
download | gentoo-2-a144af317327022bbbbc5f088d6e981571e8ac4b.tar.gz gentoo-2-a144af317327022bbbbc5f088d6e981571e8ac4b.tar.bz2 gentoo-2-a144af317327022bbbbc5f088d6e981571e8ac4b.zip |
Pruned old ebuild.
(Portage version: 2.0.54)
Diffstat (limited to 'sys-power/acpid')
-rw-r--r-- | sys-power/acpid/ChangeLog | 6 | ||||
-rw-r--r-- | sys-power/acpid/acpid-1.0.2-r2.ebuild | 51 | ||||
-rwxr-xr-x | sys-power/acpid/files/acpid.rc6 | 28 | ||||
-rw-r--r-- | sys-power/acpid/files/default.sh-gentoo.patch | 27 | ||||
-rw-r--r-- | sys-power/acpid/files/digest-acpid-1.0.2-r2 | 1 |
5 files changed, 5 insertions, 108 deletions
diff --git a/sys-power/acpid/ChangeLog b/sys-power/acpid/ChangeLog index 597c6556c76a..6e946777787a 100644 --- a/sys-power/acpid/ChangeLog +++ b/sys-power/acpid/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-power/acpid # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/acpid/ChangeLog,v 1.18 2006/01/19 19:35:11 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-power/acpid/ChangeLog,v 1.19 2006/02/13 15:45:03 brix Exp $ + + 13 Feb 2006; Henrik Brix Andersen <brix@gentoo.org> -files/acpid.rc6, + -files/default.sh-gentoo.patch, -acpid-1.0.2-r2.ebuild: + Pruned old ebuild. 19 Jan 2006; Marcus D. Hanwell <cryos@gentoo.org> acpid-1.0.4-r2.ebuild: Stable on amd64. diff --git a/sys-power/acpid/acpid-1.0.2-r2.ebuild b/sys-power/acpid/acpid-1.0.2-r2.ebuild deleted file mode 100644 index f34fdc55fe8b..000000000000 --- a/sys-power/acpid/acpid-1.0.2-r2.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/acpid/acpid-1.0.2-r2.ebuild,v 1.2 2005/09/08 13:01:50 brix Exp $ - -inherit eutils - -DESCRIPTION="Daemon for Advanced Configuration and Power Interface" -HOMEPAGE="http://acpid.sourceforge.net/" -SRC_URI="mirror://sourceforge/acpid/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 -ppc alpha amd64 ia64" -IUSE="" - -# We need the patched kernel with latest ACPI code, or else it will -# be broken. Hopefully it will be merge into release kernel soon. -DEPEND="virtual/libc" - -src_compile() { - # Fix bug # 22238 (default.sh broken) - cd debian && epatch ${FILESDIR}/default.sh-gentoo.patch && cd .. - - # DO NOT COMPILE WITH OPTIMISATIONS. - # That is a note to the devs. IF you are a user, go ahead and optimise - # if you want, but we won't support bugs associated with that" - make INSTPREFIX=${D} || die -} - -src_install() { - make INSTPREFIX=${D} install || die - - dodir /etc/acpi/events - exeinto /etc/acpi - doexe debian/default.sh - insinto /etc/acpi/events - doins debian/default - - dodoc README Changelog - - exeinto /etc/init.d - newexe ${FILESDIR}/acpid.rc6 acpid -} - -pkg_postinst() { - echo - einfo "You may wish to read the Gentoo Linux Power Management Guide," - einfo "which can be found online at:" - einfo " http://www.gentoo.org/doc/en/power-management-guide.xml" - echo -} diff --git a/sys-power/acpid/files/acpid.rc6 b/sys-power/acpid/files/acpid.rc6 deleted file mode 100755 index 29a8629774ff..000000000000 --- a/sys-power/acpid/files/acpid.rc6 +++ /dev/null @@ -1,28 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/acpid/files/acpid.rc6,v 1.1 2005/03/15 19:15:53 ciaranm Exp $ - -depend() { - need localmount -} - -checkconfig() { - if [ ! -e /proc/acpi ] ; then - eerror "ACPI support has not been compiled into the kernel" - return 1 - fi -} - -start() { - checkconfig || return 1 - ebegin "Starting acpid" - start-stop-daemon --start --quiet --exec /usr/sbin/acpid -- -c /etc/acpi/events - eend $? -} - -stop() { - ebegin "Stopping acpid" - start-stop-daemon --stop --quiet --exec /usr/sbin/acpid - eend $? -} diff --git a/sys-power/acpid/files/default.sh-gentoo.patch b/sys-power/acpid/files/default.sh-gentoo.patch deleted file mode 100644 index 6da547d2ded1..000000000000 --- a/sys-power/acpid/files/default.sh-gentoo.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- acpi/default.sh 2003-07-27 19:06:47.000000000 +0200 -+++ acpi-gentoo/default.sh 2003-07-27 19:11:45.000000000 +0200 -@@ -3,17 +3,20 @@ - - set $* - --case "$1" in -+group=${1/\/*/} -+action=${1/*\//} -+ -+case "$group" in - button) -- case "$2" in -+ case "$action" in - power) /sbin/init 0 - ;; -- *) logger "ACPI action $2 is not defined" -+ *) logger "ACPI action $action is not defined" - ;; - esac - ;; - - *) -- logger "ACPI group $1 / action $2 is not defined" -+ logger "ACPI group $group / action $action is not defined" - ;; - esac diff --git a/sys-power/acpid/files/digest-acpid-1.0.2-r2 b/sys-power/acpid/files/digest-acpid-1.0.2-r2 deleted file mode 100644 index ea5c9cf27a55..000000000000 --- a/sys-power/acpid/files/digest-acpid-1.0.2-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 15884aaf0b82717954f9366b5c00808b acpid-1.0.2.tar.gz 23554 |