# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-laptop/laptop-mode-tools/laptop-mode-tools-1.62.ebuild,v 1.1 2013/01/02 21:18:14 pacho Exp $ EAPI=5 inherit eutils systemd MY_P=${PN}_${PV} DESCRIPTION="Linux kernel laptop_mode user-space utilities" HOMEPAGE="http://www.samwel.tk/laptop_mode/" SRC_URI="http://www.samwel.tk/laptop_mode/tools/downloads/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" IUSE="+acpi apm bluetooth scsi" RDEPEND="net-wireless/wireless-tools sys-apps/ethtool sys-apps/hdparm acpi? ( sys-power/acpid ) apm? ( sys-apps/apmd ) bluetooth? ( net-wireless/bluez:= ) scsi? ( sys-apps/sdparm )" DEPEND="" S=${WORKDIR}/${MY_P} src_prepare() { # Install 99-laptop-mode.rules to rules.d directory in /usr/lib instead of /etc sed -i -e '/udev/s:/etc:/usr/lib:' install.sh || die # This should avoid conflict with pm-powersave wrt #327443 and #396703 cat <<-EOF > "${T}"/${PN} HOOK_BLACKLIST="00powersave" EOF # Install systemd files in proper place sed -i -e "s:/lib/systemd/system:$(systemd_get_unitdir):" install.sh || die # Remove HAL references, bug #345723 epatch "${FILESDIR}/${P}-remove-hal.patch" } src_compile() { :; } src_install() { DESTDIR="${D}" \ INIT_D="none" \ MAN_D="/usr/share/man" \ ACPI="$(use acpi && echo force || echo disabled)" \ PMU="$(false && echo force || echo disabled)" \ APM="$(use apm && echo force || echo disabled)" \ ./install.sh || die dodoc Documentation/*.txt README newinitd "${FILESDIR}"/laptop_mode.init-1.4 laptop_mode # See src_prepare() insinto /etc/pm/config.d doins "${T}"/${PN} } pkg_postinst() { if use acpi || use apm; then if use acpi; then daemon_name="acpid" elif use apm; then deamon_name="apmd" fi if [ "$(rc-config list default | grep laptop_mode)" = "" ] || [ "$(rc-config list default | grep ${daemon_name} )" = "" ]; then ewarn "To enable automatic power state event handling," ewarn "e.g. enabling laptop_mode after unplugging the battery," ewarn "both laptop_mode and the ${daemon_name} daemon must be" ewarn "added to default runlevel:" if [ "$(rc-config list default | grep laptop_mode)" = "" ]; then ewarn "# rc-update add laptop_mode default" fi if [ "$(rc-config list default | grep ${daemon_name} )" = "" ]; then ewarn "# rc-update add ${daemon_name} default" fi fi else ewarn "Without USE=\"acpi\" or USE=\"apm\" ${PN} can not" ewarn "automatically disable laptop_mode on low battery." ewarn ewarn "This means you can lose up to 10 minutes of work if running" ewarn "out of battery while laptop_mode is enabled." ewarn ewarn "Please see laptop-mode.txt in /usr/share/doc/${PF} for further" ewarn "information." ewarn fi }