diff options
author | Mike Gardiner <obz@gentoo.org> | 2004-07-23 13:10:02 +0000 |
---|---|---|
committer | Mike Gardiner <obz@gentoo.org> | 2004-07-23 13:10:02 +0000 |
commit | 83fbb5e7ff9711132dffd56db5dceab6ca44b7b3 (patch) | |
tree | 70b7429675f04c88220b57398b27d01bf5b4743c | |
parent | Moving to gnustep-apps/gnumail (diff) | |
download | gentoo-2-83fbb5e7ff9711132dffd56db5dceab6ca44b7b3.tar.gz gentoo-2-83fbb5e7ff9711132dffd56db5dceab6ca44b7b3.tar.bz2 gentoo-2-83fbb5e7ff9711132dffd56db5dceab6ca44b7b3.zip |
Fixed PVP to be an array using () instead of "". Apologies.
-rw-r--r-- | eclass/gnome.org.eclass | 4 | ||||
-rw-r--r-- | eclass/gst-plugins.eclass | 4 | ||||
-rw-r--r-- | eclass/gtk-engines.eclass | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/eclass/gnome.org.eclass b/eclass/gnome.org.eclass index 3affd67174ed..aad48b2068af 100644 --- a/eclass/gnome.org.eclass +++ b/eclass/gnome.org.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnome.org.eclass,v 1.6 2004/07/23 05:39:58 obz Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnome.org.eclass,v 1.7 2004/07/23 13:10:02 obz Exp $ # # Authors: # Spidler <spidler@gentoo.org> @@ -12,6 +12,6 @@ ECLASS="gnome.org" INHERITED="$INHERITED $ECLASS" [ -z "${GNOME_TARBALL_SUFFIX}" ] && export GNOME_TARBALL_SUFFIX="bz2" -PVP="${PV//[-\._]/ }" +PVP=(${PV//[-\._]/ }) SRC_URI="mirror://gnome/sources/${PN}/${PVP[0]}.${PVP[1]}/${P}.tar.${GNOME_TARBALL_SUFFIX}" diff --git a/eclass/gst-plugins.eclass b/eclass/gst-plugins.eclass index 13b71bca2d5d..dc816bfa7dea 100644 --- a/eclass/gst-plugins.eclass +++ b/eclass/gst-plugins.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins.eclass,v 1.16 2004/07/23 05:25:28 obz Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gst-plugins.eclass,v 1.17 2004/07/23 13:10:02 obz Exp $ # Author : foser <foser@gentoo.org> @@ -24,7 +24,7 @@ inherit libtool debug ### # Create a major/minor combo for our SLOT and executables suffix -PVP="${PV//[-\._]/ }" +PVP=(${PV//[-\._]/ }) PV_MAJ_MIN=${PVP[0]}.${PVP[1]} MY_P=gst-plugins-${PV} diff --git a/eclass/gtk-engines.eclass b/eclass/gtk-engines.eclass index 68384c0f66e9..cafa59ac7ae2 100644 --- a/eclass/gtk-engines.eclass +++ b/eclass/gtk-engines.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-engines.eclass,v 1.28 2004/07/23 05:34:13 obz Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-engines.eclass,v 1.29 2004/07/23 13:10:02 obz Exp $ # # The gtk-engines eclass is inherited by all gtk-engines-* ebuilds. # @@ -132,12 +132,12 @@ then elif [ "X${ENGINE}" = "Xcrux" ] then - PVP="${PV//[-\._]/ }" + PVP=(${PV//[-\._]/ }) SRC_URI="mirror://gnome/sources/${MY_PN}/${PVP[0]}.${PVP[1]}/${MY_P}.tar.bz2" elif [ "X${MY_PN}" = "Xgtk-engines" ] && [ "$SLOT" -eq "2" ] then - PVP="${PV//[-\._]/ }" + PVP=(${PV//[-\._]/ }) SRC_URI="mirror://gnome/sources/${MY_PN}/${PVP[0]}.${PVP[1]}/${MY_P}.tar.bz2" else |