diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2007-01-11 21:12:08 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2007-01-11 21:12:08 +0000 |
commit | 29884ff88babf92d3f63e9740c1c54520c927452 (patch) | |
tree | f9d2a1135869c134b26183803b953a926f380b3e /eclass | |
parent | guile again: fix a typo - zomg (diff) | |
download | historical-29884ff88babf92d3f63e9740c1c54520c927452.tar.gz historical-29884ff88babf92d3f63e9740c1c54520c927452.tar.bz2 historical-29884ff88babf92d3f63e9740c1c54520c927452.zip |
Since vmware-player uses vmplayer and not vmware-player, add a check for it and display differently. Closes bug #159607.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/vmware.eclass | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/eclass/vmware.eclass b/eclass/vmware.eclass index 5638ff93b29e..beeb4aaea593 100644 --- a/eclass/vmware.eclass +++ b/eclass/vmware.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vmware.eclass,v 1.20 2007/01/05 18:11:58 ikelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vmware.eclass,v 1.21 2007/01/11 21:12:08 wolf31o2 Exp $ # This eclass is for all vmware-* ebuilds in the tree and should contain all # of the common components across the multiple packages. @@ -372,7 +372,12 @@ vmware_pkg_postinst() { einfo "For VMware Add-Ons just visit" einfo "http://www.vmware.com/download/downloadaddons.html" echo - elog "After configuring, run ${PN} to launch" + if [ "${PN}" == "vmware-player" ] + then + elog "After configuring, run vmplayer to launch" + else + elog "After configuring, run ${PN} to launch" + fi echo if [ "${product}" == "vmware" -o "${product}" == "vmware-tools" ] then |