Deb package building working and wired up.
This commit is contained in:
@@ -1,5 +1,16 @@
|
||||
openra (20100907-1) unstable; urgency=low
|
||||
openra (20100914) unstable; urgency=low
|
||||
|
||||
* Changed MiG prerequisites to AFLD+STEK * Removed KENN, build DOG directly from BARR now * Chronotank can only teleport when fully charged * Improved OpenGL error logging * Fixed targeting of FIX * Fixed crash when an engineer is trying to repair a building, but it dies/gets sold/* etc. * Added muzzle flashes to Yak and Hind chainguns * Fixed bounding boxes on some units * Fixed accuracy of Tesla weapons * Changed ownership of GUN and GTWR in CNC to both * Fixed crash on destroying things that have a building reserved * If ordered to move to an unpathable cell, move somewhere nearby that is pathable * instead * Fixed RPM linux package
|
||||
* Changed MiG prerequisites to AFLD+STEK
|
||||
* Removed KENN, build DOG directly from BARR now
|
||||
* Chronotank can only teleport when fully charged
|
||||
* Improved OpenGL error logging
|
||||
* Fixed targeting of FIX
|
||||
* Fixed crash when an engineer is trying to repair a building, but it dies/gets sold/etc.
|
||||
* Added muzzle flashes to Yak and Hind chainguns * Fixed bounding boxes on some units
|
||||
* Fixed accuracy of Tesla weapons
|
||||
* Changed ownership of GUN and GTWR in CNC to both
|
||||
* Fixed crash on destroying things that have a building reserved
|
||||
* If ordered to move to an unpathable cell, move somewhere nearby that is pathable instead
|
||||
* Fixed RPM linux package
|
||||
|
||||
-- Maikel van den Hout <ma1kelvdh@gmail.com> Thu, 09 Sep 2010 16:34:03 +0200
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
Package: openra
|
||||
Version: 20100907-1
|
||||
Version: 20100914
|
||||
Architecture: i386
|
||||
Maintainer: Matthew Bowra-Dean <matthew@ijw.co.nz>
|
||||
Uploaders: Maikel van den Hout <ma1kelvdh@gmail.com>
|
||||
Installed-Size: 31623
|
||||
Installed-Size: 8306
|
||||
Depends: nvidia-cg-toolkit (>= 2.2), libopenal1, mono-runtime, libmono-winforms2.0-cil, libfreetype6, libsdl1.2debian, libgl1-mesa-glx, libgl1-mesa-dri, zenity, wget, unzip
|
||||
Section: games
|
||||
Priority: extra
|
||||
|
||||
@@ -6,40 +6,40 @@ if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
|
||||
fi
|
||||
# End automatically added section
|
||||
|
||||
start_directory=$( pwd )
|
||||
cd /tmp
|
||||
|
||||
anw=`zenity --question --text "Download and install RA packages? [Y/n]"; echo $?`
|
||||
if [ $anw = 0 ] ; then
|
||||
cd /tmp/
|
||||
wget "http://open-ra.org/get-dependency.php?file=ra-packages" -O ra-packages.zip
|
||||
mkdir -p /usr/share/openra/mods/ra/packages
|
||||
unzip -f ra-packages.zip -d /usr/share/openra/mods/ra/packages
|
||||
rm ra-packages.zip
|
||||
cd $start_directory
|
||||
else
|
||||
zenity --info --text "The RA packages will need to be manually extracted from http://open-ra.org/get-dependency.php?file=ra-packages \
|
||||
to /usr/share/openra/mods/ra/packages before the RA mod will work."
|
||||
break
|
||||
fi
|
||||
|
||||
|
||||
anw=`zenity --question --text "Download and install C&C packages? [Y/n]"; echo $?`
|
||||
if [ $anw = 0 ] ; then
|
||||
cd /tmp/
|
||||
wget "http://open-ra.org/get-dependency.php?file=cnc-packages" -O cnc-packages.zip
|
||||
mkdir -p /usr/share/openra/mods/cnc/packages
|
||||
unzip -f cnc-packages.zip -d usr/share/openra/mods/cnc/packages
|
||||
rm cnc-packages.zip
|
||||
cd $start_directory
|
||||
else
|
||||
zenity --info --text "The C&C packages will need to be manually extracted from http://open-ra.org/get-dependency.php?file=cnc-packages \
|
||||
to /usr/share/openra/mods/cnc/packages before the C&C mod will work."
|
||||
break
|
||||
fi
|
||||
|
||||
gacutil -i /usr/share/openra/thirdparty/Tao/Tao.Cg.dll
|
||||
gacutil -i /usr/share/openra/thirdparty/Tao/Tao.FreeType.dll
|
||||
gacutil -i /usr/share/openra/thirdparty/Tao/Tao.OpenAl.dll
|
||||
gacutil -i /usr/share/openra/thirdparty/Tao/Tao.OpenGl.dll
|
||||
gacutil -i /usr/share/openra/thirdparty/Tao/Tao.Sdl.dll
|
||||
start_directory=$( pwd )
|
||||
cd /tmp
|
||||
|
||||
anw=`zenity --question --text "Download and install RA packages?"; echo $?`
|
||||
if [ $anw = 0 ] ; then
|
||||
cd /tmp/
|
||||
wget "http://open-ra.org/get-dependency.php?file=ra-packages" -O ra-packages.zip
|
||||
mkdir -p /usr/share/openra/mods/ra/packages
|
||||
unzip -f ra-packages.zip -d /usr/share/openra/mods/ra/packages
|
||||
rm ra-packages.zip
|
||||
cd $start_directory
|
||||
else
|
||||
zenity --info --text "The RA packages will need to be manually extracted from http://open-ra.org/get-dependency.php?file=ra-packages \
|
||||
to /usr/share/openra/mods/ra/packages before the RA mod will work."
|
||||
break
|
||||
fi
|
||||
|
||||
|
||||
anw=`zenity --question --text "Download and install C&C packages?"; echo $?`
|
||||
if [ $anw = 0 ] ; then
|
||||
cd /tmp/
|
||||
wget "http://open-ra.org/get-dependency.php?file=cnc-packages" -O cnc-packages.zip
|
||||
mkdir -p /usr/share/openra/mods/cnc/packages
|
||||
unzip -f cnc-packages.zip -d usr/share/openra/mods/cnc/packages
|
||||
rm cnc-packages.zip
|
||||
cd $start_directory
|
||||
else
|
||||
zenity --info --text "The C&C packages will need to be manually extracted from http://open-ra.org/get-dependency.php?file=cnc-packages \
|
||||
to /usr/share/openra/mods/cnc/packages before the C&C mod will work."
|
||||
break
|
||||
fi
|
||||
|
||||
gacutil -i /usr/share/openra/thirdparty/Tao/Tao.Cg.dll
|
||||
gacutil -i /usr/share/openra/thirdparty/Tao/Tao.FreeType.dll
|
||||
gacutil -i /usr/share/openra/thirdparty/Tao/Tao.OpenAl.dll
|
||||
gacutil -i /usr/share/openra/thirdparty/Tao/Tao.OpenGl.dll
|
||||
gacutil -i /usr/share/openra/thirdparty/Tao/Tao.Sdl.dll
|
||||
|
||||
Reference in New Issue
Block a user