nixpkgs/pkgs/misc/screensavers/rss-glx/builder.sh
Eelco Dolstra 3ba77c1b40 * Get the Unreal Tournament 2004 demo to work with the new scheme for
handling OpenGL.

svn path=/nixpkgs/trunk/; revision=4616
2006-01-30 11:44:39 +00:00

32 lines
610 B
Bash

source $stdenv/setup
# This is a very dirty hack to prevent the binaries from putting the
# Mesa libraries in their RPATHs.
ensureDir $out/tmp
ln -s $mesa/lib/* $out/tmp/
ensureDir $out/lib
ln -s $mesa/lib/libGLU* $out/lib/
export NIX_LDFLAGS="-L$out/tmp $NIX_LDFLAGS"
genericBuild
rm -rf $out/tmp
# Add a wrapper around each program to use the appropriate OpenGL driver.
ensureDir $out/bin/.orig
for i in $(cd $out/bin && ls); do
mv $out/bin/$i $out/bin/.orig/$i
cat >$out/bin/$i <<EOF
#! $SHELL -e
mesa=$mesa
$(cat $mesaSwitch)
exec $out/bin/.orig/$i "\$@"
EOF
chmod +x $out/bin/$i
done