diff options
Diffstat (limited to 'sys-apps/hal/hal-0.5.11-r1.ebuild')
-rw-r--r-- | sys-apps/hal/hal-0.5.11-r1.ebuild | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/sys-apps/hal/hal-0.5.11-r1.ebuild b/sys-apps/hal/hal-0.5.11-r1.ebuild index f4894325f5a1..44188364eb25 100644 --- a/sys-apps/hal/hal-0.5.11-r1.ebuild +++ b/sys-apps/hal/hal-0.5.11-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/hal/hal-0.5.11-r1.ebuild,v 1.12 2008/12/22 21:44:12 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hal/hal-0.5.11-r1.ebuild,v 1.13 2008/12/23 20:43:00 cardoe Exp $ inherit eutils linux-info autotools flag-o-matic @@ -207,22 +207,23 @@ src_compile() { } src_install() { - make DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog NEWS README + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog NEWS README || die "docs failed" # hal umount for unclean unmounts exeinto /lib/udev/ - newexe "${FILESDIR}/hal-unmount.dev" hal_unmount + newexe "${FILESDIR}/hal-unmount.dev" hal_unmount || die "udev helper failed" # initscript - newinitd "${FILESDIR}/0.5.10-hald.rc" hald + newinitd "${FILESDIR}/0.5.10-hald.rc" hald || die "init script failed" # configuration - cp "${FILESDIR}/0.5.10-hald.conf" "${WORKDIR}/" + cp "${FILESDIR}/0.5.10-hald.conf" "${WORKDIR}/" || \ + die "failed to copy hald.conf" if use debug; then sed -e 's:HALD_VERBOSE="no":HALD_VERBOSE="yes":' \ - -i "${WORKDIR}/0.5.10-hald.conf" + -i "${WORKDIR}/0.5.10-hald.conf" || die "failed to change verbose" fi newconfd "${WORKDIR}/0.5.10-hald.conf" hald |