diff options
author | Marius Mauch <genone@gentoo.org> | 2007-01-24 14:12:20 +0000 |
---|---|---|
committer | Marius Mauch <genone@gentoo.org> | 2007-01-24 14:12:20 +0000 |
commit | fc04330924013c8d169132ec3e83055aa0d427d2 (patch) | |
tree | 85b349c6f3c3b685d1d22e0bbff11b654b210cbb /app-admin | |
parent | Replacing einfo with elog (diff) | |
download | gentoo-2-fc04330924013c8d169132ec3e83055aa0d427d2.tar.gz gentoo-2-fc04330924013c8d169132ec3e83055aa0d427d2.tar.bz2 gentoo-2-fc04330924013c8d169132ec3e83055aa0d427d2.zip |
Replacing einfo with elog
(Portage version: 2.1.2-r2)
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/fam/ChangeLog | 5 | ||||
-rw-r--r-- | app-admin/fam/fam-2.7.0-r4.ebuild | 36 |
2 files changed, 22 insertions, 19 deletions
diff --git a/app-admin/fam/ChangeLog b/app-admin/fam/ChangeLog index b46739e0a1b9..73689be5acbf 100644 --- a/app-admin/fam/ChangeLog +++ b/app-admin/fam/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-admin/fam # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/fam/ChangeLog,v 1.46 2007/01/04 13:48:37 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/fam/ChangeLog,v 1.47 2007/01/24 14:12:20 genone Exp $ + + 24 Jan 2007; Marius Mauch <genone@gentoo.org> fam-2.7.0-r4.ebuild: + Replacing einfo with elog 04 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> fam-2.7.0-r4.ebuild: Don't run libtoolize, if you need to, what you want is eautoreconf, so fix diff --git a/app-admin/fam/fam-2.7.0-r4.ebuild b/app-admin/fam/fam-2.7.0-r4.ebuild index 70ec39113e1b..c24bc8318c9d 100644 --- a/app-admin/fam/fam-2.7.0-r4.ebuild +++ b/app-admin/fam/fam-2.7.0-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/fam/fam-2.7.0-r4.ebuild,v 1.15 2007/01/04 13:48:37 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/fam/fam-2.7.0-r4.ebuild,v 1.16 2007/01/24 14:12:20 genone Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -56,30 +56,30 @@ src_install() { pkg_postinst() { - einfo "To enable fam on boot you will have to add it to the" - einfo "default profile, issue the following command as root to do so." - echo - einfo "rc-update add famd default" + elog "To enable fam on boot you will have to add it to the" + elog "default profile, issue the following command as root to do so." + elog + elog "rc-update add famd default" # temporary warning for people upgrading # 6-12-03 foser <foser@gentoo.org> if [ -e /etc/init.d/fam ] then echo + elog "IMPORTANT INFO FOR USERS UPGRADING FROM OLDER (<2.7.0) FAM VERSIONS :" + elog + elog "With the 2.7.0 version the fam daemon moved to sbin and was" + elog "renamed from 'fam' to 'famd'. These changes are for consistency" + elog "reasons also applied to the Gentoo init script. This means you" + elog "will have to remove fam from the default runlevel and add famd." + elog "This can be done by issueing the following commands :" + elog + elog "rc-update del fam" + elog "rc-update add famd default" + elog "rm /etc/init.d/fam" + elog + elog "The last command removes the old init script." echo - ewarn "IMPORTANT INFO FOR USERS UPGRADING FROM OLDER (<2.7.0) FAM VERSIONS :" - echo - einfo "With the 2.7.0 version the fam daemon moved to sbin and was" - einfo "renamed from 'fam' to 'famd'. These changes are for consistency" - einfo "reasons also applied to the Gentoo init script. This means you" - einfo "will have to remove fam from the default runlevel and add famd." - einfo "This can be done by issueing the following commands :" - echo - einfo "rc-update del fam" - einfo "rc-update add famd default" - einfo "rm /etc/init.d/fam" - echo - einfo "The last command removes the old init script." fi } |