summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonnie Berkholz <spyderous@gentoo.org>2005-01-21 21:26:46 +0000
committerDonnie Berkholz <spyderous@gentoo.org>2005-01-21 21:26:46 +0000
commitefc564371948b8bc9a72ecafee1664e649c0ed35 (patch)
tree29252d889eee7fe83a47e7bb961a9a10ec7f1340 /x11-base
parentstable wrt 77805 (diff)
downloadgentoo-2-efc564371948b8bc9a72ecafee1664e649c0ed35.tar.gz
gentoo-2-efc564371948b8bc9a72ecafee1664e649c0ed35.tar.bz2
gentoo-2-efc564371948b8bc9a72ecafee1664e649c0ed35.zip
Install OpenGL stuff to /usr/libdir/opengl/$PN/lib, not /usr/libdir/opengl/$PN/libdir. Again thanks to eradicator for the libdir advice.
(Portage version: 2.0.51-r14)
Diffstat (limited to 'x11-base')
-rw-r--r--x11-base/xorg-x11/ChangeLog9
-rw-r--r--x11-base/xorg-x11/xorg-x11-6.8.0-r4.ebuild13
-rw-r--r--x11-base/xorg-x11/xorg-x11-6.8.1.901-r1.ebuild13
-rw-r--r--x11-base/xorg-x11/xorg-x11-6.8.1.902.ebuild13
4 files changed, 20 insertions, 28 deletions
diff --git a/x11-base/xorg-x11/ChangeLog b/x11-base/xorg-x11/ChangeLog
index 33247b2ff697..cd1689ad1009 100644
--- a/x11-base/xorg-x11/ChangeLog
+++ b/x11-base/xorg-x11/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for x11-base/xorg-x11
# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-x11/ChangeLog,v 1.292 2005/01/21 19:54:00 spyderous Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-x11/ChangeLog,v 1.293 2005/01/21 21:26:46 spyderous Exp $
+
+ 21 Jan 2005; Donnie Berkholz <spyderous@gentoo.org>;
+ xorg-x11-6.8.0-r4.ebuild, xorg-x11-6.8.1.901-r1.ebuild,
+ xorg-x11-6.8.1.902.ebuild:
+ Install OpenGL stuff to /usr/libdir/opengl/$PN/lib, not
+ /usr/libdir/opengl/$PN/libdir. Again thanks to eradicator for the libdir
+ advice.
21 Jan 2005; Donnie Berkholz <spyderous@gentoo.org>;
xorg-x11-6.8.0-r4.ebuild, xorg-x11-6.8.1.901-r1.ebuild,
diff --git a/x11-base/xorg-x11/xorg-x11-6.8.0-r4.ebuild b/x11-base/xorg-x11/xorg-x11-6.8.0-r4.ebuild
index e45a3252b0f6..612156e5318f 100644
--- a/x11-base/xorg-x11/xorg-x11-6.8.0-r4.ebuild
+++ b/x11-base/xorg-x11/xorg-x11-6.8.0-r4.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/x11-base/xorg-x11/xorg-x11-6.8.0-r4.ebuild,v 1.58 2005/01/21 19:54:00 spyderous Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-x11/xorg-x11-6.8.0-r4.ebuild,v 1.59 2005/01/21 21:26:46 spyderous Exp $
# Set TDFX_RISKY to "yes" to get 16-bit, 1024x768 or higher on low-memory
# voodoo3 cards.
@@ -1196,7 +1196,7 @@ etc_files_install() {
setup_dynamic_libgl() {
# next section is to setup the dynamic libGL stuff
ebegin "Moving libGL and friends for dynamic switching"
- dodir /usr/$(get_libdir)/opengl/${PN}/{$(get_libdir),extensions,include}
+ dodir /usr/$(get_libdir)/opengl/${PN}/{lib,extensions,include}
local x=""
for x in ${D}/usr/$(get_libdir)/libGL.so* \
${D}/usr/$(get_libdir)/libGL.la \
@@ -1204,7 +1204,7 @@ setup_dynamic_libgl() {
${D}/usr/$(get_libdir)/libMesaGL.so; do
if [ -f ${x} -o -L ${x} ]; then
# libGL.a cause problems with tuxracer, etc
- mv -f ${x} ${D}/usr/$(get_libdir)/opengl/${PN}/$(get_libdir)
+ mv -f ${x} ${D}/usr/$(get_libdir)/opengl/${PN}/lib
fi
done
for x in ${D}/usr/$(get_libdir)/modules/extensions/libglx*; do
@@ -1221,11 +1221,6 @@ setup_dynamic_libgl() {
# Since we added glext.h and don't have new opengl-update yet, do this
# Avoids circular opengl-update/xorg-x11 dependency
dosym ../../../$(get_libdir)/opengl/${PN}/include/glext.h /usr/X11R6/include/GL/
- # Even if libdir isnt lib, we need a lib symlink for opengl-update and
- # friends. See bug 62990 for more info.
- if [ "$(get_libdir)" != "lib" ]; then
- dosym $(get_libdir) /usr/$(get_libdir)/opengl/${PN}/lib
- fi
eend 0
}
@@ -1256,7 +1251,7 @@ strip_execs() {
fi
done
# Now do the libraries ...
- for x in ${D}/usr/{$(get_libdir),$(get_libdir)/opengl/${PN}/$(get_libdir)}/*.so.* \
+ for x in ${D}/usr/{$(get_libdir),$(get_libdir)/opengl/${PN}/lib}/*.so.* \
$(get_libdir)/X11/locale/$(get_libdir)/common}/*.so.*; do
if [ -f ${x} ]; then
echo "$(echo ${x/${D}})"
diff --git a/x11-base/xorg-x11/xorg-x11-6.8.1.901-r1.ebuild b/x11-base/xorg-x11/xorg-x11-6.8.1.901-r1.ebuild
index 31f02f9ea19e..a72896914175 100644
--- a/x11-base/xorg-x11/xorg-x11-6.8.1.901-r1.ebuild
+++ b/x11-base/xorg-x11/xorg-x11-6.8.1.901-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/x11-base/xorg-x11/xorg-x11-6.8.1.901-r1.ebuild,v 1.11 2005/01/21 19:54:00 spyderous Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-x11/xorg-x11-6.8.1.901-r1.ebuild,v 1.12 2005/01/21 21:26:46 spyderous Exp $
# Set TDFX_RISKY to "yes" to get 16-bit, 1024x768 or higher on low-memory
# voodoo3 cards.
@@ -1195,7 +1195,7 @@ etc_files_install() {
setup_dynamic_libgl() {
# next section is to setup the dynamic libGL stuff
ebegin "Moving libGL and friends for dynamic switching"
- dodir /usr/$(get_libdir)/opengl/${PN}/{$(get_libdir),extensions,include}
+ dodir /usr/$(get_libdir)/opengl/${PN}/{lib,extensions,include}
local x=""
for x in ${D}/usr/$(get_libdir)/libGL.so* \
${D}/usr/$(get_libdir)/libGL.la \
@@ -1203,7 +1203,7 @@ setup_dynamic_libgl() {
${D}/usr/$(get_libdir)/libMesaGL.so; do
if [ -f ${x} -o -L ${x} ]; then
# libGL.a cause problems with tuxracer, etc
- mv -f ${x} ${D}/usr/$(get_libdir)/opengl/${PN}/$(get_libdir)
+ mv -f ${x} ${D}/usr/$(get_libdir)/opengl/${PN}/lib
fi
done
for x in ${D}/usr/$(get_libdir)/modules/extensions/libglx*; do
@@ -1220,11 +1220,6 @@ setup_dynamic_libgl() {
# Since we added glext.h and don't have new opengl-update yet, do this
# Avoids circular opengl-update/xorg-x11 dependency
dosym ../../../$(get_libdir)/opengl/${PN}/include/glext.h /usr/X11R6/include/GL/
- # Even if libdir isnt lib, we need a lib symlink for opengl-update and
- # friends. See bug 62990 for more info.
- if [ "$(get_libdir)" != "lib" ]; then
- dosym $(get_libdir) /usr/$(get_libdir)/opengl/${PN}/lib
- fi
eend 0
}
@@ -1255,7 +1250,7 @@ strip_execs() {
fi
done
# Now do the libraries ...
- for x in ${D}/usr/{$(get_libdir),$(get_libdir)/opengl/${PN}/$(get_libdir)}/*.so.* \
+ for x in ${D}/usr/{$(get_libdir),$(get_libdir)/opengl/${PN}/lib}/*.so.* \
$(get_libdir)/X11/locale/$(get_libdir)/common}/*.so.*; do
if [ -f ${x} ]; then
echo "$(echo ${x/${D}})"
diff --git a/x11-base/xorg-x11/xorg-x11-6.8.1.902.ebuild b/x11-base/xorg-x11/xorg-x11-6.8.1.902.ebuild
index 4adff898c4c1..1605a80a89f4 100644
--- a/x11-base/xorg-x11/xorg-x11-6.8.1.902.ebuild
+++ b/x11-base/xorg-x11/xorg-x11-6.8.1.902.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/x11-base/xorg-x11/xorg-x11-6.8.1.902.ebuild,v 1.16 2005/01/21 19:54:00 spyderous Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-base/xorg-x11/xorg-x11-6.8.1.902.ebuild,v 1.17 2005/01/21 21:26:46 spyderous Exp $
# Set TDFX_RISKY to "yes" to get 16-bit, 1024x768 or higher on low-memory
# voodoo3 cards.
@@ -1195,7 +1195,7 @@ etc_files_install() {
setup_dynamic_libgl() {
# next section is to setup the dynamic libGL stuff
ebegin "Moving libGL and friends for dynamic switching"
- dodir /usr/$(get_libdir)/opengl/${PN}/{$(get_libdir),extensions,include}
+ dodir /usr/$(get_libdir)/opengl/${PN}/{lib,extensions,include}
local x=""
for x in ${D}/usr/$(get_libdir)/libGL.so* \
${D}/usr/$(get_libdir)/libGL.la \
@@ -1203,7 +1203,7 @@ setup_dynamic_libgl() {
${D}/usr/$(get_libdir)/libMesaGL.so; do
if [ -f ${x} -o -L ${x} ]; then
# libGL.a cause problems with tuxracer, etc
- mv -f ${x} ${D}/usr/$(get_libdir)/opengl/${PN}/$(get_libdir)
+ mv -f ${x} ${D}/usr/$(get_libdir)/opengl/${PN}/lib
fi
done
for x in ${D}/usr/$(get_libdir)/modules/extensions/libglx*; do
@@ -1220,11 +1220,6 @@ setup_dynamic_libgl() {
# Since we added glext.h and don't have new opengl-update yet, do this
# Avoids circular opengl-update/xorg-x11 dependency
dosym ../../../$(get_libdir)/opengl/${PN}/include/glext.h /usr/X11R6/include/GL/
- # Even if libdir isnt lib, we need a lib symlink for opengl-update and
- # friends. See bug 62990 for more info.
- if [ "$(get_libdir)" != "lib" ]; then
- dosym $(get_libdir) /usr/$(get_libdir)/opengl/${PN}/lib
- fi
eend 0
}
@@ -1255,7 +1250,7 @@ strip_execs() {
fi
done
# Now do the libraries ...
- for x in ${D}/usr/{$(get_libdir),$(get_libdir)/opengl/${PN}/$(get_libdir)}/*.so.* \
+ for x in ${D}/usr/{$(get_libdir),$(get_libdir)/opengl/${PN}/lib}/*.so.* \
$(get_libdir)/X11/locale/$(get_libdir)/common}/*.so.*; do
if [ -f ${x} ]; then
echo "$(echo ${x/${D}})"