urbanterror: Update to 4.2.009.

This commit is contained in:
Александр Цамутали 2013-02-16 21:43:34 +04:00
parent ad057db2d6
commit bcc14b65c3
1 changed files with 23 additions and 47 deletions

View File

@ -1,72 +1,48 @@
{ stdenv, fetchurl, unzip, SDL, mesa, openal, curl }: { stdenv, fetchurl, unzip, SDL, mesa, openal, curl }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "urbanterror-${version}"; name = "urbanterror-${version}";
version = "4.1"; version = "4.2.009";
src1 = fetchurl { srcs =
url = "http://ftp.snt.utwente.nl/pub/games/urbanterror/UrbanTerror_41_FULL.zip"; [ (fetchurl {
sha256 = "0pr6xpwq8zllc0xsdxl8cfd0zz5fhggw5fsbrizygr6hhdvra1jp"; url = "http://download.urbanterror.info/urt/42/zips/UrbanTerror42_full_009.zip";
}; sha256 = "0m423zy6l1z4kxz55knlh1ypnqq58ghh08i8ziv4lm00ygm6mx2i";
src2 = fetchurl { })
url = "http://ftp.snt.utwente.nl/pub/games/urbanterror/iourbanterror/source/complete/ioUrbanTerrorSource_2007_12_20.zip"; (fetchurl {
sha256 = "1s1wq9m7shhvvk7s4400yrmz7dys501i4c9ln1mglc9dhmi8dmcn"; url = "https://github.com/Barbatos/ioq3-for-UrbanTerror-4/archive/release-4.2.007.tar.gz";
}; sha256 = "1299j0i94697m2bbcgraxfbb7q1g6nc43l1xqlgqvcsjp799mwwn";
})
];
buildInputs = [ unzip SDL mesa openal curl ]; buildInputs = [ unzip SDL mesa openal curl ];
unpackPhase = '' sourceRoot = "ioq3-for-UrbanTerror-4-release-4.2.007";
mkdir urbanterror
cd urbanterror
unzip $src1
unzip $src2
'';
patches = [ ./l_script.patch ];
patchPhase = ''
for d in ioUrbanTerrorClientSource ioUrbanTerrorServerSource
do
cd "$d"
patch -p 0 < "''${patches[0]}"
cd ..
done
'';
configurePhase = '' configurePhase = ''
cd ioUrbanTerrorClientSource
echo "USE_OPENAL = 1" > Makefile.local echo "USE_OPENAL = 1" > Makefile.local
echo "USE_OPENAL_DLOPEN = 0" >> Makefile.local echo "USE_OPENAL_DLOPEN = 0" >> Makefile.local
echo "USE_CURL = 1" >> Makefile.local echo "USE_CURL = 1" >> Makefile.local
echo "USE_CURL_DLOPEN = 0" >> Makefile.local echo "USE_CURL_DLOPEN = 0" >> Makefile.local
substituteInPlace code/tools/asm/Makefile --replace -Werror ""
cd ..
'';
buildPhase = ''
for d in ioUrbanTerrorClientSource ioUrbanTerrorServerSource
do
cd $d
make
cd ..
done
''; '';
installPhase = '' installPhase = ''
destDir="$out/opt/urbanterror" destDir="$out/opt/urbanterror"
mkdir -p "$destDir" ensureDir "$destDir" "$out/bin"
mkdir -p "$out/bin" cp -v build/release-linux-*/Quake3-UrT.* \
cp -v ioUrbanTerrorClientSource/build/release-linux-*/ioUrbanTerror.* \ "$destDir/Quake3-UrT"
"$destDir/ioUrbanTerror" cp -v build/release-linux-*/Quake3-UrT-Ded.* \
cp -v ioUrbanTerrorServerSource/build/release-linux-*/ioUrTded.* \ "$destDir/Quake3-UrT-Ded"
"$destDir/ioUrTded" cp -rv ../UrbanTerror42/q3ut4 "$destDir"
cp -rv UrbanTerror/q3ut4 "$destDir"
cat << EOF > "$out/bin/urbanterror" cat << EOF > "$out/bin/urbanterror"
#!/bin/sh #! ${stdenv.shell}
cd "$destDir" cd "$destDir"
exec ./ioUrbanTerror "\$@" exec ./Quake3-UrT "\$@"
EOF EOF
chmod +x "$out/bin/urbanterror" chmod +x "$out/bin/urbanterror"
cat << EOF > "$out/bin/urbanterror-ded" cat << EOF > "$out/bin/urbanterror-ded"
#!/bin/sh #! ${stdenv.shell}
cd "$destDir" cd "$destDir"
exec ./ioUrTded "\$@" exec ./Quake3-UrT-Ded "\$@"
EOF EOF
chmod +x "$out/bin/urbanterror-ded" chmod +x "$out/bin/urbanterror-ded"
''; '';
postFixup = '' postFixup = ''
p=$out/opt/urbanterror/ioUrbanTerror p=$out/opt/urbanterror/Quake3-UrT
cur_rpath=$(patchelf --print-rpath $p) cur_rpath=$(patchelf --print-rpath $p)
patchelf --set-rpath $cur_rpath:${mesa}/lib $p patchelf --set-rpath $cur_rpath:${mesa}/lib $p
''; '';