diff options
author | Joshua Baergen <joshuabaergen@gentoo.org> | 2005-11-27 20:18:19 +0000 |
---|---|---|
committer | Joshua Baergen <joshuabaergen@gentoo.org> | 2005-11-27 20:18:19 +0000 |
commit | b6a1d884743885f793e0e9e14465a673569e440d (patch) | |
tree | 7b5c9db37511647a0cdcb04cdc3517fc0b3f0fd9 /media-libs/mesa | |
parent | New Package. Thanks to all users involved in bug #91419. (diff) | |
download | gentoo-2-b6a1d884743885f793e0e9e14465a673569e440d.tar.gz gentoo-2-b6a1d884743885f793e0e9e14465a673569e440d.tar.bz2 gentoo-2-b6a1d884743885f793e0e9e14465a673569e440d.zip |
Added Diego's patch for FreeBSD support. Closes bug #111145.
(Portage version: 2.0.53_rc7)
Diffstat (limited to 'media-libs/mesa')
-rw-r--r-- | media-libs/mesa/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/mesa/mesa-6.4-r1.ebuild | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/media-libs/mesa/ChangeLog b/media-libs/mesa/ChangeLog index e728e0aa797d..3c4b42bc3046 100644 --- a/media-libs/mesa/ChangeLog +++ b/media-libs/mesa/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/mesa # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.51 2005/11/16 05:05:08 joshuabaergen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.52 2005/11/27 20:18:19 joshuabaergen Exp $ + + 27 Nov 2005; Joshua Baergen <joshuabaergen@gentoo.org> mesa-6.4-r1.ebuild: + Added Diego's patch for FreeBSD support. Closes bug #111145. 16 Nov 2005; Joshua Baergen <joshuabaergen@gentoo.org> mesa-6.4-r1.ebuild: Changed xorg-x11 blocker for clarity. diff --git a/media-libs/mesa/mesa-6.4-r1.ebuild b/media-libs/mesa/mesa-6.4-r1.ebuild index f48c919021c8..b5b38057e739 100644 --- a/media-libs/mesa/mesa-6.4-r1.ebuild +++ b/media-libs/mesa/mesa-6.4-r1.ebuild @@ -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/media-libs/mesa/mesa-6.4-r1.ebuild,v 1.2 2005/11/16 05:05:08 joshuabaergen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-6.4-r1.ebuild,v 1.3 2005/11/27 20:18:19 joshuabaergen Exp $ inherit eutils toolchain-funcs multilib @@ -46,7 +46,9 @@ S="${WORKDIR}/${MY_P}" # Think about: ggi, svga, fbcon, no-X configs pkg_setup() { - if use x86; then + if [[ ${KERNEL} == "FreeBSD" ]]; then + CONFIG="freebsd" + elif use x86; then CONFIG="linux-dri-x86" # amd64 people need to look at this file to deal with lib64 issues, unless # they're fine with hardcoded lib64. |