# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/apmd/apmd-3.2.0.ebuild,v 1.12 2005/07/09 16:00:13 swegener Exp $ inherit eutils IUSE="X nls" S="${WORKDIR}/${P}.orig" DESCRIPTION="Advanced Power Management Daemon" HOMEPAGE="http://www.worldvisions.ca/~apenwarr/apmd/" SRC_URI="mirror://debian/pool/main/a/apmd/${PN}_${PV}.orig.tar.gz" SLOT="0" LICENSE="GPL-2" KEYWORDS="~x86 ~amd64 ~ppc" DEPEND=">=sys-apps/debianutils-1.16 X? ( virtual/x11 )" src_unpack() { unpack ${A} ; cd ${S} cp Makefile Makefile.orig sed -e "s:\(PREFIX=\)\(/usr\):\1\$\{DESTDIR\}\2:" \ -e "s:\(APMD_PROXY_DIR\=\)\(/etc\):\1\$\{DESTDIR\}\2/apm:" \ -e "97d" \ -e "s:\(MANDIR\=\${PREFIX}\)\(/man\):\1/share\2:" \ Makefile.orig > Makefile if use X ; then echo -e "xinstall:\n\tinstall\txapm\t\${PREFIX}/bin" >> Makefile else cp Makefile Makefile.orig sed -e "/^EXES=/s/xapm//" \ -e "/install.*xapm/d" \ Makefile.orig > Makefile fi # This closes bug #1472: fixes compilation with recent 2.4 kernels epatch ${FILESDIR}/apmsleep.c.diff.3.2.0 # This closes bug #29636: needs 2.6 patching [plasmaroo@gentoo.org] # If this does not compile with newer versions, rediff the patch # and DO NOT just ignore it. epatch ${FILESDIR}/apmd-3.2.0.kernel26x.patch } src_install() { dodir /usr/sbin make DESTDIR=${D} PREFIX=/usr install || die "install failed" dodir /etc/apm/{event.d,suspend.d,resume.d} exeinto /etc/apm ; doexe apmd_proxy dodoc ANNOUNCE BUGS.apmsleep COPYING* README* ChangeLog LSM insinto /etc/conf.d ; newins ${FILESDIR}/apmd.confd apmd exeinto /etc/init.d ; newexe ${FILESDIR}/apmd.rc6 apmd if use X ; then make DESTDIR=${D} xinstall || die "xinstall failed" fi if ! use nls then rm -rf ${D}/usr/share/man/fr fi }