Magellan Linux

Diff of /tags/openglupdate-2_2_10/opengl-update.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 617 by niro, Wed Nov 14 18:15:11 2007 UTC revision 621 by niro, Wed Nov 14 18:20:10 2007 UTC
# Line 1  Line 1 
1  #!/bin/bash  #!/bin/bash
2  # Copyright 1999-2004 Gentoo Foundation  # Copyright 1999-2004 Gentoo Foundation
3  # Distributed under the terms of the GNU General Public License v2  # Distributed under the terms of the GNU General Public License v2
4  # $Header: /home/cvsd/magellan-cvs/magellan-src/opengl-update/opengl-update.sh,v 1.2 2007-11-14 18:15:11 niro Exp $  # $Header: /home/cvsd/magellan-cvs/magellan-src/opengl-update/opengl-update.sh,v 1.6 2007-11-14 18:20:10 niro Exp $
5  # Author:  Martin Schlemmer <azarah@gentoo.org>  # Author:  Martin Schlemmer <azarah@gentoo.org>
6  # Further modifications by Donnie Berkholz <spyderous@gentoo.org>  # Further modifications by Donnie Berkholz <spyderous@gentoo.org>
7  # Further modifications based off submissions to bug #54984 <cyfred@gentoo.org>  # Further modifications based off submissions to bug #54984 <cyfred@gentoo.org>
# Line 170  parse_options() Line 170  parse_options()
170    
171   --impl-headers) USE_PROFILE_HEADERS="yes" ;;   --impl-headers) USE_PROFILE_HEADERS="yes" ;;
172    
173   --help|-h|-?) ACION="usage" ;;   --help|-h|-?) ACTION="usage" ;;
174    
175   --version) ACTION="version" ;;   --version) ACTION="version" ;;
176    
# Line 367  set-new-implementation() Line 367  set-new-implementation()
367    
368   done   done
369    
370   echo "LDPATH=\"${ldpath}\"" > ${ENV_D}   # put only one LDPATH per line!
371     local i
372     for i in $(echo ${ldpath} | sed "s:\::\ :g")
373     do
374     echo "LDPATH=\"${i}\"" >> ${ENV_D}
375     done
376   echo "OPENGL_PROFILE=\"${GL_IMPLEM}\"" >> ${ENV_D}   echo "OPENGL_PROFILE=\"${GL_IMPLEM}\"" >> ${ENV_D}
377    
378   env-rebuild   env-rebuild
# Line 385  DST_PREFIX="/usr" Line 390  DST_PREFIX="/usr"
390  AVAIL_IMPLEMS=$(get_implementations)  AVAIL_IMPLEMS=$(get_implementations)
391  CURRENT_GL_IMPLEM=$(get_current_implem)  CURRENT_GL_IMPLEM=$(get_current_implem)
392  USE_PROFILE_HEADERS="no"  USE_PROFILE_HEADERS="no"
393  VERSION="2.2.4"  VERSION="@@VERSION@@"
394    
395  parse_options ${@}  parse_options ${@}
396    

Legend:
Removed from v.617  
changed lines
  Added in v.621