From: Perforce Review Daemon <p4review AT smee.org>
To: "Andrew Stitt" <a AT t.armory.com>, "Arjan Bouter" <abouter AT sourcemage.org>, "SM-Commit Daemon" <sm-commit AT lists.ibiblio.org>, "duane_malcolm" <d.malcolm AT auckland.ac.nz>, "Ethan Grammatikidis" <eekee AT eekee.is-a-geek.org>, "Gareth Clay" <gareth AT caffeinefuelled.co.uk>, "Maurizio Boriani" <baux AT member.fsf.org>, "Pieter Lenaerts" <e-type AT sourcemage.org>, "Robin Cook" <rcook AT wyrms.net>, "Seth Woolley" <seth AT swoolley.homeip.net>, "Unet" <unet AT sourcemage.org>, "vladimir_marek" <vlmarek AT volny.cz>
Subject: [SM-Commit] PERFORCE change 78785 by Robin Cook for review
Date: Tue, 2 May 2006 03:00:01 +0100 (BST)
Change 78785 by robin_cook AT CuZnDragon-pheuri.wyrms.net on 2006/05/02 02:59:28
radiusclient-ng: new
ser: new
mesalib: slight change in volatile
nvidia_driver: work with both monolithic and modular
@@ -1,3 +1,6 @@
+2006-05-01 Robin Cook <rcook AT wyrms.net>
+ * volatiles: modified for the libGL.so.* files
+
2006-04-30 Robin Cook <rcook AT wyrms.net>
* volatiles: added for the files nvidia_driver installs
@@ -1,3 +1,10 @@
+2006-05-01 Robin Cook <rcook AT wyrms.net>
+ * PRE_BUILD: set GL_LIB depending on mesalib installed
+ check for file existence before moving
+ * POST_REMOVE: set GL_LIB depending on mesalib installed
+ check for file existence before moving
+ * volatiles: added for xorg-modular location
+
2006-04-30 Robin Cook <rcook AT wyrms.net>
* DEPENDS: uncommented the X11-SERVER depends
* INSTALL: added X_PRE and X_MOD to local variables
message "${MESSAGE_COLOR}Restoring X/mesalib headers and libs${SPELL_COLOR}"
&&
-for i in gl.h glext.h glx.h glxext.h; do
- mv -v $X_DIR/$i $GL_DIR
+for i in gl.h glext.h glx.h glxext.h; do
+ if [ -e $X_DIR/$i ]; then
+ mv -v $X_DIR/$i $GL_DIR
+ fi
done &&
-for i in libGL.so libGL.so.1 libGL.so.1.2; do
- mv -v $X_DIR/$i $GL_LIB
-done &&
+for i in $X-DIR/libGL.so.*; do
+ if [ -e $i ]; then
+ mv -v $i $GL_LIB
+ fi
+done &&
if ! [[ -f $X_DIR/done ]]; then
- for i in gl.h glext.h glx.h glxext.h; do
- mv -v $GL_DIR/$i $X_DIR
- touch $X_DIR/done
+ for i in gl.h glext.h glx.h glxext.h; do
+ if [ -e $GL_DIR/$i ]; then
+ mv -v $GL_DIR/$i $X_DIR &&
+ fi
done
- for i in libGL.so libGL.so.1 libGL.so.1.2; do
- mv -v $GL_LIB/$i $X_DIR &&
- touch $X_DIR/done
+ for i in $GL_LIB/libGL.so.*; do
+ if [ -e $i ]; then
+ mv -v $i $X_DIR &&
+ fi
done
+ touch $X_DIR/done
else
- message "${SPELL_COLOR}X headers already backed up${DEFAULT_COLOR}"
+ message "${SPELL_COLOR}X/mesalib headers and libs already backed
up${DEFAULT_COLOR}"
fi &&