diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2005-10-20 00:35:21 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2005-10-20 00:35:21 +0000 |
commit | 81e32c9ecfd9d9f525e5ae3428ac4cd4370e8082 (patch) | |
tree | 4daf820edb5d249e15684c5546d960d955b0adb0 | |
parent | added ~mips keyword (diff) | |
download | historical-81e32c9ecfd9d9f525e5ae3428ac4cd4370e8082.tar.gz historical-81e32c9ecfd9d9f525e5ae3428ac4cd4370e8082.tar.bz2 historical-81e32c9ecfd9d9f525e5ae3428ac4cd4370e8082.zip |
Update SRC_URI to look in 7.0 RC1 location first, then RC0. Also only active font code if pkg starts with 'font-', not just 'font'.
-rw-r--r-- | eclass/x-modular.eclass | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/eclass/x-modular.eclass b/eclass/x-modular.eclass index b00fb4197933..c3f91c2b1f71 100644 --- a/eclass/x-modular.eclass +++ b/eclass/x-modular.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.13 2005/09/12 21:44:16 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.14 2005/10/20 00:35:21 spyderous Exp $ # # Author: Donnie Berkholz <spyderous@gentoo.org> # @@ -19,7 +19,8 @@ XDIR="/usr" IUSE="" HOMEPAGE="http://xorg.freedesktop.org/" -SRC_URI="http://xorg.freedesktop.org/X11R7.0-RC0/everything/${P}.tar.bz2" +SRC_URI="http://xorg.freedesktop.org/releases/X11R7.0-RC1/everything/${P}.tar.bz2 + http://xorg.freedesktop.org/releases/X11R7.0-RC0/everything/${P}.tar.bz2" LICENSE="X11" SLOT="0" @@ -34,7 +35,7 @@ if [ -n "${SNAPSHOT}" ]; then fi # If we're a font package, but not the font.alias one -if [[ "${PN/#font}" != "${PN}" ]] && [[ "${PN}" != "font-alias" ]]; then +if [[ "${PN/#font-}" != "${PN}" ]] && [[ "${PN}" != "font-alias" ]]; then # Activate font code in the rest of the eclass FONT="yes" |