diff options
author | 2008-01-18 21:48:35 +0000 | |
---|---|---|
committer | 2008-01-18 21:48:35 +0000 | |
commit | 762067396f389ea53df709eea20e897118a69709 (patch) | |
tree | 1c90c8848c1c09a3051b6a8e9bb62db036e3567a /sys-apps/dbus/dbus-1.1.4.ebuild | |
parent | Version bump (diff) | |
download | gentoo-2-762067396f389ea53df709eea20e897118a69709.tar.gz gentoo-2-762067396f389ea53df709eea20e897118a69709.tar.bz2 gentoo-2-762067396f389ea53df709eea20e897118a69709.zip |
Change src_install to use emake. Add warning to let users know that restarting dbus when X is built with the hal use flag will cause their X session to restart as well.
(Portage version: 2.1.4)
Diffstat (limited to 'sys-apps/dbus/dbus-1.1.4.ebuild')
-rw-r--r-- | sys-apps/dbus/dbus-1.1.4.ebuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys-apps/dbus/dbus-1.1.4.ebuild b/sys-apps/dbus/dbus-1.1.4.ebuild index 8630d5d3cb5b..730a13043fbe 100644 --- a/sys-apps/dbus/dbus-1.1.4.ebuild +++ b/sys-apps/dbus/dbus-1.1.4.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/dbus/dbus-1.1.4.ebuild,v 1.1 2008/01/17 21:26:13 steev Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.1.4.ebuild,v 1.2 2008/01/18 21:48:35 steev Exp $ inherit eutils multilib autotools flag-o-matic @@ -61,7 +61,7 @@ src_test() { } src_install() { - make DESTDIR="${D}" install || die "make install failed" + emake DESTDIR="${D}" install || die "make install failed" # initscript newinitd "${FILESDIR}"/dbus.init-1.0 dbus @@ -106,4 +106,8 @@ pkg_postinst() { ewarn "You MUST run 'revdep-rebuild' after emerging this package" elog "If you notice any issues, please rebuild sys-apps/hal" ewarn + ewarn "If you are currently running X with the hal useflag enabled" + ewarn "restarting the dbus service WILL restart X as well" + ebeep 5 + ewarn } |