diff options
author | Marius Mauch <genone@gentoo.org> | 2007-05-01 17:42:04 +0000 |
---|---|---|
committer | Marius Mauch <genone@gentoo.org> | 2007-05-01 17:42:04 +0000 |
commit | f45ba8c6792f7a5d98c0ccaba293e54e0597a576 (patch) | |
tree | 9c726d85ebbea0291b406cfa0b73e06d3241d7df /net-analyzer/base | |
parent | Replacing einfo with elog (diff) | |
download | gentoo-2-f45ba8c6792f7a5d98c0ccaba293e54e0597a576.tar.gz gentoo-2-f45ba8c6792f7a5d98c0ccaba293e54e0597a576.tar.bz2 gentoo-2-f45ba8c6792f7a5d98c0ccaba293e54e0597a576.zip |
Replacing einfo with elog
(Portage version: 2.1.2.5)
Diffstat (limited to 'net-analyzer/base')
-rw-r--r-- | net-analyzer/base/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/base/base-1.2.7-r2.ebuild | 22 |
2 files changed, 15 insertions, 12 deletions
diff --git a/net-analyzer/base/ChangeLog b/net-analyzer/base/ChangeLog index e50cd0d535ff..cc9b09b972fb 100644 --- a/net-analyzer/base/ChangeLog +++ b/net-analyzer/base/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/base # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/base/ChangeLog,v 1.9 2007/02/01 21:14:01 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/base/ChangeLog,v 1.10 2007/05/01 17:42:04 genone Exp $ + + 01 May 2007; Marius Mauch <genone@gentoo.org> base-1.2.7-r2.ebuild: + Replacing einfo with elog 01 Feb 2007; Markus Ullmann <jokey@gentoo.org> base-1.2.7-r2.ebuild: typo fun diff --git a/net-analyzer/base/base-1.2.7-r2.ebuild b/net-analyzer/base/base-1.2.7-r2.ebuild index f4bf4bc74292..16cbd86d9590 100644 --- a/net-analyzer/base/base-1.2.7-r2.ebuild +++ b/net-analyzer/base/base-1.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-analyzer/base/base-1.2.7-r2.ebuild,v 1.2 2007/02/01 21:14:01 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/base/base-1.2.7-r2.ebuild,v 1.3 2007/05/01 17:42:04 genone Exp $ inherit webapp versionator eutils depend.apache depend.php @@ -67,14 +67,14 @@ pkg_setup() { BASE_DBTYPE=${db} let dbtypecnt++ elif [ ${dbtypecnt} -ge 1 ]; then - einfo "You set multiple database types in your USE flags." + ewarn "You set multiple database types in your USE flags." ewarn "You will have to setup DBtype configuration manually." fi fi done if [ ${dbtypecnt} -eq 0 ]; then - einfo "No database type selected in your USE flags." + ewarn "No database type selected in your USE flags." ewarn "You will have to setup DBtype manually." fi @@ -202,12 +202,12 @@ pkg_postinst() { ewarn "chown root:${HTTPD_GROUP} ${CONF_DIR}/${CONF_NEW}" fi - einfo "" - einfo "You should edit \"${CONF_DIR}/${CONF_NEW}\" before using BASE." - einfo "" - einfo "To setup your initial database, direct your web browser to the" - einfo "location you installed BASE/base_db_setup.php" - einfo "You can find instructions in /usr/share/doc/${P}/README" - einfo "There is a guide at http://gentoo-wiki.com/HOWTO_Apache2_with_BASE" - einfo "" + elog "" + elog "You should edit \"${CONF_DIR}/${CONF_NEW}\" before using BASE." + elog "" + elog "To setup your initial database, direct your web browser to the" + elog "location you installed BASE/base_db_setup.php" + elog "You can find instructions in /usr/share/doc/${P}/README" + elog "There is a guide at http://gentoo-wiki.com/HOWTO_Apache2_with_BASE" + elog "" } |