# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-laptop/acpi4asus/acpi4asus-0.41.ebuild,v 1.2 2007/07/15 07:10:12 mr_bones_ Exp $ inherit linux-mod eutils DESCRIPTION="Acpi daemon and kernel module to control ASUS Laptop Hotkeys" HOMEPAGE="http://sourceforge.net/projects/acpi4asus" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="" MODULE_NAMES="asus-laptop(acpi:${S}/driver)" BUILD_TARGETS=" " RDEPEND="sys-power/acpid" CONFIG_CHECK="LEDS_CLASS" pkg_setup() { if kernel_is ge 2 6 23; then ewarn "This package is already bundled with kernel. Don't use this ebuild" ewarn "Its description is: CONFIG_ASUS_LAPTOP." ewarn "Path for make menuconfig:" ewarn "Device Drivers ---> Misc devices ---> Asus Laptop Extras (EXPERIMENTAL)" die "Too new kernel version :)" fi linux-mod_pkg_setup BUILD_PARAMS="KDIR=${KV_DIR}" } src_unpack() { unpack ${A} if kernel_is ge 2 6 21 ; then epatch ${FILESDIR}/cvs.patch fi } src_compile() { linux-mod_src_compile emake -C asus_acpid } src_install() { linux-mod_src_install dobin asus_acpid/asus_acpid doman asus_acpid/asus_acpid.8 dodoc README Changelog dodir /usr/share/${PN}/samples dodir /usr/share/${PN}/samples/actions insinto /usr/share/${PN}/samples/actions doins samples/actions/*.sh dodir /usr/share/${PN}/samples/events insinto /usr/share/${PN}/samples/events doins samples/events/* } pkg_postinst() { linux-mod_pkg_postinst einfo einfo "Don't forget to create your ~/.asus_acpi," einfo "see /usr/share/doc/${PF}/README.gz for details" einfo }