diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2005-03-23 18:35:58 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2005-03-23 18:35:58 +0000 |
commit | a5ef3c964a2d1fa2744156675338f02f14e171e8 (patch) | |
tree | 0da9557875afe9e692739e5c1a2ed674699924cf /app-emulation/vmware-console | |
parent | Keyworded ~sparc wrt #84992 (diff) | |
download | gentoo-2-a5ef3c964a2d1fa2744156675338f02f14e171e8.tar.gz gentoo-2-a5ef3c964a2d1fa2744156675338f02f14e171e8.tar.bz2 gentoo-2-a5ef3c964a2d1fa2744156675338f02f14e171e8.zip |
sed is NOT allowed in global scope in ebuilds, so changed MY_PV munging to bash substitution instead.
(Portage version: 1.585-cvs)
Diffstat (limited to 'app-emulation/vmware-console')
-rw-r--r-- | app-emulation/vmware-console/ChangeLog | 7 | ||||
-rw-r--r-- | app-emulation/vmware-console/vmware-console-3.0.0.7592.ebuild | 4 | ||||
-rw-r--r-- | app-emulation/vmware-console/vmware-console-3.1.0.9089.ebuild | 4 |
3 files changed, 10 insertions, 5 deletions
diff --git a/app-emulation/vmware-console/ChangeLog b/app-emulation/vmware-console/ChangeLog index 60c22a41ac8e..e307e946e467 100644 --- a/app-emulation/vmware-console/ChangeLog +++ b/app-emulation/vmware-console/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emulation/vmware-console # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-console/ChangeLog,v 1.11 2005/01/05 15:36:51 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-console/ChangeLog,v 1.12 2005/03/23 18:35:58 seemant Exp $ + + 23 Mar 2005; Seemant Kulleen <seemant@gentoo.org> + vmware-console-3.0.0.7592.ebuild, vmware-console-3.1.0.9089.ebuild: + sed is NOT allowed in global scope in ebuilds, so changed MY_PV munging to + bash substitution instead. 05 Jan 2005; Chris Gianelloni <wolf31o2@gentoo.org> metadata.xml: Changed herd to new vmware herd. diff --git a/app-emulation/vmware-console/vmware-console-3.0.0.7592.ebuild b/app-emulation/vmware-console/vmware-console-3.0.0.7592.ebuild index 08eac6485e6e..b068785d4f36 100644 --- a/app-emulation/vmware-console/vmware-console-3.0.0.7592.ebuild +++ b/app-emulation/vmware-console/vmware-console-3.0.0.7592.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-console/vmware-console-3.0.0.7592.ebuild,v 1.8 2005/01/01 14:19:18 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-console/vmware-console-3.0.0.7592.ebuild,v 1.9 2005/03/23 18:35:58 seemant Exp $ MY_PN="VMware-console" -MY_PV=`echo ${PV} | sed -e 's/\.\([0-9]\+\)$/-\1/'` +MY_PV=${PV%.*}-${PV##*.} MY_P="${MY_PN}-${MY_PV}" FN="${MY_P}.tar.gz" S="${WORKDIR}/vmware-console-distrib" diff --git a/app-emulation/vmware-console/vmware-console-3.1.0.9089.ebuild b/app-emulation/vmware-console/vmware-console-3.1.0.9089.ebuild index f44c7f2d2d37..ae1b1770d922 100644 --- a/app-emulation/vmware-console/vmware-console-3.1.0.9089.ebuild +++ b/app-emulation/vmware-console/vmware-console-3.1.0.9089.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-console/vmware-console-3.1.0.9089.ebuild,v 1.4 2005/01/01 14:19:18 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-console/vmware-console-3.1.0.9089.ebuild,v 1.5 2005/03/23 18:35:58 seemant Exp $ MY_PN="VMware-console" -MY_PV=`echo ${PV} | sed -e 's/\.\([0-9]\+\)$/-\1/'` +MY_PV=${PV%.*}-${PV##*.} MY_P="${MY_PN}-${MY_PV}" FN="${MY_P}.tar.gz" S="${WORKDIR}/vmware-console-distrib" |