diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2004-10-11 06:43:06 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2004-10-11 06:43:06 +0000 |
commit | 0c9c4ac38411b5c2788662422ea8fa714c62dd5f (patch) | |
tree | 2ada2e56d71dd96521a47304a1302d57b6a15c57 /x11-base | |
parent | Want to get this into CVS for the case someone needs it now. (diff) | |
download | historical-0c9c4ac38411b5c2788662422ea8fa714c62dd5f.tar.gz historical-0c9c4ac38411b5c2788662422ea8fa714c62dd5f.tar.bz2 historical-0c9c4ac38411b5c2788662422ea8fa714c62dd5f.zip |
Fix new installs with USE=debug. X tries to use makeg, which doesn't exist on the system yet -- use the one within the source instead.
Diffstat (limited to 'x11-base')
-rw-r--r-- | x11-base/xorg-x11/ChangeLog | 7 | ||||
-rw-r--r-- | x11-base/xorg-x11/Manifest | 14 | ||||
-rw-r--r-- | x11-base/xorg-x11/xorg-x11-6.8.0-r1.ebuild | 5 |
3 files changed, 11 insertions, 15 deletions
diff --git a/x11-base/xorg-x11/ChangeLog b/x11-base/xorg-x11/ChangeLog index 252d2f00728b..0a23d868fa05 100644 --- a/x11-base/xorg-x11/ChangeLog +++ b/x11-base/xorg-x11/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-base/xorg-x11 # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-x11/ChangeLog,v 1.131 2004/09/30 03:58:31 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-x11/ChangeLog,v 1.132 2004/10/11 06:43:06 spyderous Exp $ + + 10 Oct 2004; Donnie Berkholz <spyderous@gentoo.org>; + xorg-x11-6.8.0-r1.ebuild: + Fix new installs with USE=debug. X tries to use makeg, which doesn't exist on + the system yet -- use the one within the source instead. 29 Sep 2004; Donnie Berkholz <spyderous@gentoo.org>; -xorg-x11-6.7.0-r1.ebuild, -xorg-x11-6.8.0.ebuild: diff --git a/x11-base/xorg-x11/Manifest b/x11-base/xorg-x11/Manifest index d18472ad844e..106c5efdc4b1 100644 --- a/x11-base/xorg-x11/Manifest +++ b/x11-base/xorg-x11/Manifest @@ -1,16 +1,6 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 5bb39052405c3266fb341d17a95e7ae1 ChangeLog 29694 +MD5 0995c37240bac0c86416feb6ea747dcb ChangeLog 29917 MD5 36a69eed0e585f3dcf096cc82ac54575 metadata.xml 230 MD5 c32f9bc44ffd10b49297b4898097096b xorg-x11-6.7.0-r2.ebuild 38142 -MD5 36a1fcf51b072805c8853945699b36a1 xorg-x11-6.8.0-r1.ebuild 41360 +MD5 be0502e3bcf5c95baa0d084d04749e2a xorg-x11-6.8.0-r1.ebuild 41421 MD5 a3314fbdc270d7d84ea14fd477b8d048 files/digest-xorg-x11-6.7.0-r2 904 MD5 a3ef47fa1d11b9b29589eea734a6c6d2 files/digest-xorg-x11-6.8.0-r1 906 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.9.10 (GNU/Linux) - -iD8DBQFBXV64HTu7gpaalycRAjCjAJ9czE2QPx+UkYN5PbQtNKjmeU7jhgCgvJna -PcOJbR3MDdLbkxQiMLsGERA= -=ZODQ ------END PGP SIGNATURE----- diff --git a/x11-base/xorg-x11/xorg-x11-6.8.0-r1.ebuild b/x11-base/xorg-x11/xorg-x11-6.8.0-r1.ebuild index d205b86c64dc..a74ac9204bee 100644 --- a/x11-base/xorg-x11/xorg-x11-6.8.0-r1.ebuild +++ b/x11-base/xorg-x11/xorg-x11-6.8.0-r1.ebuild @@ -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/x11-base/xorg-x11/xorg-x11-6.8.0-r1.ebuild,v 1.12 2004/10/01 13:42:06 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-x11/xorg-x11-6.8.0-r1.ebuild,v 1.13 2004/10/11 06:43:06 spyderous Exp $ # Set TDFX_RISKY to "yes" to get 16-bit, 1024x768 or higher on low-memory # voodoo3 cards. @@ -621,7 +621,8 @@ src_compile() { einfo "Building xorg-x11..." if use debug then - FAST=1 makeg World WORLDOPTS="" || die + chmod u+x ${S}/config/util/makeg.sh + FAST=1 ${S}/config/util/makeg.sh World WORLDOPTS="" || die else FAST=1 emake World WORLDOPTS="" || die fi |