diff options
author | Marius Mauch <genone@gentoo.org> | 2007-05-06 12:41:07 +0000 |
---|---|---|
committer | Marius Mauch <genone@gentoo.org> | 2007-05-06 12:41:07 +0000 |
commit | 6d00aebd542efc108766c95100a7cc9bc18cf84f (patch) | |
tree | 6dbc6c5a124f0948f463831083f4cb5f6c525e5a /net-irc | |
parent | Replacing einfo with elog (diff) | |
download | gentoo-2-6d00aebd542efc108766c95100a7cc9bc18cf84f.tar.gz gentoo-2-6d00aebd542efc108766c95100a7cc9bc18cf84f.tar.bz2 gentoo-2-6d00aebd542efc108766c95100a7cc9bc18cf84f.zip |
Replacing einfo with elog
(Portage version: 2.1.2.5)
Diffstat (limited to 'net-irc')
-rw-r--r-- | net-irc/psybnc/ChangeLog | 5 | ||||
-rw-r--r-- | net-irc/psybnc/psybnc-2.3.2.7-r2.ebuild | 23 |
2 files changed, 15 insertions, 13 deletions
diff --git a/net-irc/psybnc/ChangeLog b/net-irc/psybnc/ChangeLog index 48eab9a21fd1..796a15e4633c 100644 --- a/net-irc/psybnc/ChangeLog +++ b/net-irc/psybnc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-irc/psybnc # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/psybnc/ChangeLog,v 1.6 2007/02/26 12:35:49 gurligebis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/psybnc/ChangeLog,v 1.7 2007/05/06 12:41:07 genone Exp $ + + 06 May 2007; Marius Mauch <genone@gentoo.org> psybnc-2.3.2.7-r2.ebuild: + Replacing einfo with elog 26 Feb 2007; Bjarke Istrup Pedersen <gurligebis@gentoo.org>: Fixes several compiler warnings, output should be much cleaner. diff --git a/net-irc/psybnc/psybnc-2.3.2.7-r2.ebuild b/net-irc/psybnc/psybnc-2.3.2.7-r2.ebuild index 17cffb47bc68..d2d910ac7c75 100644 --- a/net-irc/psybnc/psybnc-2.3.2.7-r2.ebuild +++ b/net-irc/psybnc/psybnc-2.3.2.7-r2.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/net-irc/psybnc/psybnc-2.3.2.7-r2.ebuild,v 1.2 2007/02/26 12:35:49 gurligebis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/psybnc/psybnc-2.3.2.7-r2.ebuild,v 1.3 2007/05/06 12:41:07 genone Exp $ inherit eutils versionator toolchain-funcs MY_PV="$(replace_version_separator 3 -)" @@ -112,16 +112,15 @@ pkg_config() { pkg_postinst() { if use ssl then - einfo - einfo "Please run \"emerge --config =${CATEGORY}/${PF}\" to create needed SSL certificates." + elog + elog "Please run \"emerge --config =${CATEGORY}/${PF}\" to create needed SSL certificates." fi - - einfo - einfo "You can connect to psyBNC on port 23998 with user gentoo and password gentoo." - einfo "Please edit the psyBNC configuration at /etc/psybnc/psybnc.conf to change this." - einfo - einfo "To be able to reuse an existing psybnc.conf, you need to make sure that the" - einfo "old salt.h is available at /usr/share/psybnc/salt.h when compiling a new" - einfo "version of psyBNC. It is needed for password encryption and decryption." - einfo + elog + elog "You can connect to psyBNC on port 23998 with user gentoo and password gentoo." + elog "Please edit the psyBNC configuration at /etc/psybnc/psybnc.conf to change this." + elog + elog "To be able to reuse an existing psybnc.conf, you need to make sure that the" + elog "old salt.h is available at /usr/share/psybnc/salt.h when compiling a new" + elog "version of psyBNC. It is needed for password encryption and decryption." + elog } |