diff options
author | 2007-01-24 02:19:17 +0000 | |
---|---|---|
committer | 2007-01-24 02:19:17 +0000 | |
commit | aa60f70604381c2a497e304b2348f094f3f7fc4f (patch) | |
tree | dd3144c4e3c021269a63a62b216ffccb4baa7105 /app-cdr | |
parent | Fix the path for 4.0, Closes bug #163529. Thanks to Jose daLuz <jdaluz@gmail.... (diff) | |
download | gentoo-2-aa60f70604381c2a497e304b2348f094f3f7fc4f.tar.gz gentoo-2-aa60f70604381c2a497e304b2348f094f3f7fc4f.tar.bz2 gentoo-2-aa60f70604381c2a497e304b2348f094f3f7fc4f.zip |
Replacing einfo with elog
(Portage version: 2.1.2-r2)
Diffstat (limited to 'app-cdr')
-rw-r--r-- | app-cdr/cdw/ChangeLog | 7 | ||||
-rw-r--r-- | app-cdr/cdw/cdw-0.2.4.ebuild | 24 |
2 files changed, 17 insertions, 14 deletions
diff --git a/app-cdr/cdw/ChangeLog b/app-cdr/cdw/ChangeLog index 1f94d278497a..1558f4741e7d 100644 --- a/app-cdr/cdw/ChangeLog +++ b/app-cdr/cdw/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-cdr/cdw -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdw/ChangeLog,v 1.19 2006/11/23 15:26:29 vivo Exp $ +# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdw/ChangeLog,v 1.20 2007/01/24 02:19:17 genone Exp $ + + 24 Jan 2007; Marius Mauch <genone@gentoo.org> cdw-0.2.4.ebuild: + Replacing einfo with elog 23 Nov 2006; Francesco Riosa <vivo@gentoo.org> cdw-0.2.4.ebuild: dev-db/mysql => virtual/mysql diff --git a/app-cdr/cdw/cdw-0.2.4.ebuild b/app-cdr/cdw/cdw-0.2.4.ebuild index d66a286a0749..51b3818aba0c 100644 --- a/app-cdr/cdw/cdw-0.2.4.ebuild +++ b/app-cdr/cdw/cdw-0.2.4.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdw/cdw-0.2.4.ebuild,v 1.9 2006/12/04 10:21:23 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdw/cdw-0.2.4.ebuild,v 1.10 2007/01/24 02:19:17 genone Exp $ inherit eutils flag-o-matic @@ -80,15 +80,15 @@ src_install() { pkg_postinst() { if use mysql || use sqlite ; then - echo - einfo "You have chosen, either by selecting 'USE=mysql' or 'USE=sqlite'" - einfo "to install Disk Catalog support." - einfo "You will have a new tool called cdwdic." - echo - einfo "The directory /usr/share/${PF}/" - einfo "contains a cdw.sql file. You must install this to your system" - einfo "for using the Disk Catalog. The installation process is very" - einfo "simple, you can find the instructions in" - einfo "/usr/share/doc/${PF}/README.gz" + elog + elog "You have chosen, either by selecting 'USE=mysql' or 'USE=sqlite'" + elog "to install Disk Catalog support." + elog "You will have a new tool called cdwdic." + elog + elog "The directory /usr/share/${PF}/" + elog "contains a cdw.sql file. You must install this to your system" + elog "for using the Disk Catalog. The installation process is very" + elog "simple, you can find the instructions in" + elog "/usr/share/doc/${PF}/README.gz" fi } |