diff options
author | Ferris McCormick <fmccor@gentoo.org> | 2005-08-12 13:23:55 +0000 |
---|---|---|
committer | Ferris McCormick <fmccor@gentoo.org> | 2005-08-12 13:23:55 +0000 |
commit | 57437c62814fc3027a97745652c314548846232f (patch) | |
tree | cc536ece87e3c0a434a0b0432d1efee4f9237921 /media-libs/mesa | |
parent | stable on alpha wrt bug #99769 (diff) | |
download | historical-57437c62814fc3027a97745652c314548846232f.tar.gz historical-57437c62814fc3027a97745652c314548846232f.tar.bz2 historical-57437c62814fc3027a97745652c314548846232f.zip |
Install the actual *_dri drivers into /usr/lib/xorg/modules/dri, and remove my ill-considered IUSE=dri flag.
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'media-libs/mesa')
-rw-r--r-- | media-libs/mesa/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/mesa/Manifest | 11 | ||||
-rw-r--r-- | media-libs/mesa/mesa-6.3.1.1.ebuild | 13 |
3 files changed, 22 insertions, 10 deletions
diff --git a/media-libs/mesa/ChangeLog b/media-libs/mesa/ChangeLog index a3ad1f5844da..75c5b11edbbe 100644 --- a/media-libs/mesa/ChangeLog +++ b/media-libs/mesa/ChangeLog @@ -1,6 +1,12 @@ # 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.20 2005/08/11 22:05:50 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.21 2005/08/12 13:23:55 fmccor Exp $ + + 12 Aug 2005; Ferris McCormick <fmccor@gentoo.org> mesa-6.3.1.1.ebuild: + 1. General cleanup for sparc, get rid of the ill-considered + IUSE=dri; + 2. Make sure to install the actual dri drivers as well as the + base libGL package. 11 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>; Manifest: Fix manifest. diff --git a/media-libs/mesa/Manifest b/media-libs/mesa/Manifest index 20bfe72d96e0..c3e9e5e9cf07 100644 --- a/media-libs/mesa/Manifest +++ b/media-libs/mesa/Manifest @@ -1,10 +1,7 @@ -MD5 17448cd1b54fc3dcea75242f44812119 ChangeLog 4370 -MD5 55ab52946fe547df9b992e33e1bbbb3d mesa-6.3.1.1.ebuild 4562 +MD5 ff4cb48e1aa3b13c8289a774db3caf2c ChangeLog 4607 +MD5 29239caee0e5997cb4059b3da7ca91ad mesa-6.3.1.1.ebuild 4828 MD5 327ad9473f146d09e0d0bd9198bb6a99 files/digest-mesa-6.3.1.1 129 -MD5 dba6d6acff3459c88499ffb1aa802d63 files/fix-include-locations.patch 3046 MD5 14a7882e4e2dc41b7ef845dc11bd9a0c files/fix-xthreads-location.patch 1718 -MD5 ceae0782c8844ebdc68ede6b4d8969d9 files/makedepend-location.patch 375 MD5 de65b33347d4dd56da17835ab42daf9a files/use-xthreads.patch 8355 -MD5 f0ebdc72043e76ad7eddc4ad91349927 files/lib/libGL.la 763 -MD5 9abdd26694e6f1d7bd93193f900acc6c files/lib/libGLU.la 752 -MD5 0883c9996cac1056781bdcd2aab60e66 files/lib/libOSMesa.la 765 +MD5 dba6d6acff3459c88499ffb1aa802d63 files/fix-include-locations.patch 3046 +MD5 ceae0782c8844ebdc68ede6b4d8969d9 files/makedepend-location.patch 375 diff --git a/media-libs/mesa/mesa-6.3.1.1.ebuild b/media-libs/mesa/mesa-6.3.1.1.ebuild index 522272485f36..b521c857dedf 100644 --- a/media-libs/mesa/mesa-6.3.1.1.ebuild +++ b/media-libs/mesa/mesa-6.3.1.1.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.3.1.1.ebuild,v 1.11 2005/08/11 19:08:38 fmccor Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-6.3.1.1.ebuild,v 1.12 2005/08/12 13:23:55 fmccor Exp $ inherit eutils toolchain-funcs @@ -18,7 +18,7 @@ SRC_URI="http://xorg.freedesktop.org/extras/${MY_P}.tar.gz LICENSE="LGPL-2" SLOT="0" KEYWORDS="~sparc ~x86" -IUSE="dri motif" +IUSE="motif" RDEPEND="dev-libs/expat x11-libs/libX11 @@ -98,6 +98,15 @@ src_compile() { src_install() { dodir /usr make DESTDIR=${D}/usr install || die "Installation failed" + + ## + # Install the actual drivers --- 'make install' doesn't install them + # anywhere. + dodir /usr/$(get_libdir)/xorg/modules/dri + exeinto /usr/$(get_libdir)/xorg/modules/dri + einfo "Installing drivers to ${EXEDESTTREE}." + find ${S}/lib -name '*_dri.so' | xargs doexe + fix_opengl_symlinks dynamic_libgl_install |