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 | f239c89e692f73fe6b1129ae850be8709db999d7 (patch) | |
tree | f2229fbd7d5fdd5295d6ac4a46450cf9fb82d194 /media-libs | |
parent | stable on alpha wrt bug #99769 (diff) | |
download | gentoo-2-f239c89e692f73fe6b1129ae850be8709db999d7.tar.gz gentoo-2-f239c89e692f73fe6b1129ae850be8709db999d7.tar.bz2 gentoo-2-f239c89e692f73fe6b1129ae850be8709db999d7.zip |
Install the actual *_dri drivers into /usr/lib/xorg/modules/dri, and remove my ill-considered IUSE=dri flag.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/mesa/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/mesa/mesa-6.3.1.1.ebuild | 13 |
2 files changed, 18 insertions, 3 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/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 |