summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Huddleston <eradicator@gentoo.org>2005-08-15 17:50:51 +0000
committerJeremy Huddleston <eradicator@gentoo.org>2005-08-15 17:50:51 +0000
commit2785083c8ff7fa00e71812c824fa80b66904ef74 (patch)
tree96d7affad506cc7b0068882cc4237e3242094d80 /x11-base/opengl-update
parentfix manifest (diff)
downloadgentoo-2-2785083c8ff7fa00e71812c824fa80b66904ef74.tar.gz
gentoo-2-2785083c8ff7fa00e71812c824fa80b66904ef74.tar.bz2
gentoo-2-2785083c8ff7fa00e71812c824fa80b66904ef74.zip
Further style cleanups.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'x11-base/opengl-update')
-rw-r--r--x11-base/opengl-update/files/opengl-update-3.0.0.eselect22
1 files changed, 8 insertions, 14 deletions
diff --git a/x11-base/opengl-update/files/opengl-update-3.0.0.eselect b/x11-base/opengl-update/files/opengl-update-3.0.0.eselect
index 3538e12e6c86..92613933e3d6 100644
--- a/x11-base/opengl-update/files/opengl-update-3.0.0.eselect
+++ b/x11-base/opengl-update/files/opengl-update-3.0.0.eselect
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-base/opengl-update/files/opengl-update-3.0.0.eselect,v 1.3 2005/08/13 20:29:11 eradicator Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-base/opengl-update/files/opengl-update-3.0.0.eselect,v 1.4 2005/08/15 17:50:51 eradicator Exp $
# Author: Martin Schlemmer <azarah@gentoo.org>
# Further modifications by Donnie Berkholz <spyderous@gentoo.org>
# Further modifications based off submissions to bug #54984 <cyfred@gentoo.org>
@@ -18,12 +18,6 @@ PREFIX="${ROOT}/usr"
DST_PREFIX="${ROOT}/usr"
USE_PROFILE_HEADERS="no"
-check_user() {
- if [[ $(id -u) -ne 0 ]]; then
- die -q "Must be run as root."
- fi
-}
-
check_version() {
if portageq has_version / 'x11-base/xorg-x11'; then
if ! portageq has_version / '>=x11-base/xorg-x11-6.8.0-r4'; then
@@ -67,7 +61,7 @@ set_new_implementation() {
local AVAIL_IMPLEMS=$(get_implementations)
check_version
- check_user
+ check_root
# Set a sane umask... bug #83115
umask 022
@@ -108,11 +102,11 @@ set_new_implementation() {
# linked just needs the .so
for file in ${PREFIX}/${LIBDIR}/opengl/${GL_LOCAL}/lib/libGL{,core}.{so,a,la}; do
[[ -f "${file}" ]] || continue
- [[ -f "${file##*/}" ]] && rm -f ${file##*/}
+ [[ -f "$(basename ${file})" ]] && rm -f $(basename ${file})
# Fix libtool archives (#48297)
if [[ "${file%.la}" != "${file}" ]]; then
- sed "s:${PREFIX}/[^/]*/opengl/[^/]*/lib:${DST_PREFIX}/${LIBDIR}:g" ${file} > ${file##*/}
+ sed "s:${PREFIX}/[^/]*/opengl/[^/]*/lib:${DST_PREFIX}/${LIBDIR}:g" ${file} > $(basename ${file})
else
ln -s ${file}
fi
@@ -129,11 +123,11 @@ set_new_implementation() {
for file in ${PREFIX}/${LIBDIR}/opengl/${GL_LOCAL}/lib/tls/libGL{,core}.{so,a,la}; do
[[ -f "${file}" ]] || continue
- [[ -f "${file##*/}" ]] && rm -f ${file##*/}
+ [[ -f "$(basename ${file})" ]] && rm -f $(basename ${file})
# Fix libtool archives (#48297)
if [ "${file%.la}" != "${file}" ]; then
- sed "s:${PREFIX}/[^/]*/opengl/[^/]*/lib:${DST_PREFIX}/${LIBDIR}:g" ${file} > ${file##*/}
+ sed "s:${PREFIX}/[^/]*/opengl/[^/]*/lib:${DST_PREFIX}/${LIBDIR}:g" ${file} > $(basename ${file})
else
ln -s ${file}
fi
@@ -158,11 +152,11 @@ set_new_implementation() {
for file in ${PREFIX}/${LIBDIR}/opengl/${GL_LOCAL}/extensions/*.{so,a,la}; do
[[ -f "${file}" ]] || continue
- [[ -f "${file##*/}" ]] && rm -f ${file##*/}
+ [[ -f "$(basename ${file})" ]] && rm -f $(basename ${file})
# Fix libtool archives (#48297)
if [[ "${file%.la}" != "${file}" ]]; then
- sed "s:${PREFIX}/[^/]*/opengl/[^/]*/lib:${DST_PREFIX}/${LIBDIR}:g" ${file} > ${file##*/}
+ sed "s:${PREFIX}/[^/]*/opengl/[^/]*/lib:${DST_PREFIX}/${LIBDIR}:g" ${file} > $(basename ${file})
else
ln -s ${file}
fi