diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2003-01-08 07:33:12 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2003-01-08 07:33:12 +0000 |
commit | d5b7a94cec7d147ded3cd99e8d16e869bc40eb47 (patch) | |
tree | 81db59460a1bcc76149e8aba30afed5470045933 /eclass | |
parent | Marked stable. (diff) | |
download | historical-d5b7a94cec7d147ded3cd99e8d16e869bc40eb47.tar.gz historical-d5b7a94cec7d147ded3cd99e8d16e869bc40eb47.tar.bz2 historical-d5b7a94cec7d147ded3cd99e8d16e869bc40eb47.zip |
Fixed the crux SRC_URI to work on the new gnome ftp scheme
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gtk-engines.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/gtk-engines.eclass b/eclass/gtk-engines.eclass index 578ab66ed623..e306c10fb7c5 100644 --- a/eclass/gtk-engines.eclass +++ b/eclass/gtk-engines.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-engines.eclass,v 1.14 2002/11/28 07:54:09 leonardop Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-engines.eclass,v 1.15 2003/01/08 07:33:12 spider Exp $ # The gtk-engines eclass is inheritd by all gtk-engines-* ebuilds. @@ -118,7 +118,8 @@ then elif [ "X${ENGINE}" = "Xcrux" ] then - SRC_URI="mirror://gnome/2.0.1/sources/${MY_PN}/${MY_P}.tar.bz2" + PVP=($(echo " $PV " | sed 's:[-\._]: :g')) + 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 |