diff options
author | Donnie Berkholz <spyderous@gentoo.org> | 2005-10-20 00:35:21 +0000 |
---|---|---|
committer | Donnie Berkholz <spyderous@gentoo.org> | 2005-10-20 00:35:21 +0000 |
commit | e15710169c27c71beb32c0875056a0f698c7a6a5 (patch) | |
tree | 81e4149a5df0d9a9dfd4db5c03bd3f60347056dc /eclass | |
parent | added ~mips keyword (diff) | |
download | gentoo-2-e15710169c27c71beb32c0875056a0f698c7a6a5.tar.gz gentoo-2-e15710169c27c71beb32c0875056a0f698c7a6a5.tar.bz2 gentoo-2-e15710169c27c71beb32c0875056a0f698c7a6a5.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'.
Diffstat (limited to 'eclass')
-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" |