Welcome, Guest
Username: Password: Remember me
CodeTyphon Linux OS Development, discussions and problems
  • Page:
  • 1

TOPIC:

Mandriva scrip fix 11 years 6 months ago #2641

  • Aleksandar
  • Aleksandar's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 150
  • Thank you received: 31
I found two bugs in "ln1_Install_SysLibraries_For_Mandriva.sh" script.

First of all, I am not sure where you get this qt4-qmake package?! libqt4-devel will install qmake command.

sudo urpmi libxtst-dev on 64bit system will install i586 package instead of x86_64 one. It might work if you do not have 32bit repos enabled, but I am not sure about that.

On 32bit system it will work just fine.

Proper package name that will install x86_64 package on 64bit system (and i586 package on 32bit system) is libxtst-devel.

Please fix that.

I would also suggest you to include this version which is much smaller and cleaner than your current version.

Please let me know if you find any problem.

# =============================================================
#               CodeTyphon Project
#      Copyright (c) PilotLogic Software House.
#               All rights reserved.
#
#        This Script Install to Mandriva Linux 
#      base libraries to Build and Run CodeTyphon
# =============================================================

echo "----------------------------------------------------"
echo " CodeTyphon OS Libraries Installation for" 
echo "              Mandriva Linux" 
echo "----------------------------------------------------"
echo "."

ciplatiform=$1

# automaticly update Mandriva
sudo urpmi --auto-update --auto
# install needed libraries
sudo urpmi --auto gcc-c++ xterm gdb gpm
sudo urpmi --auto gtkglext-devel
sudo urpmi --auto mesa-common-devel
sudo urpmi --auto libxtst-devel

# Install libraries for QT
if [ $ciplatiform = 1 ] ; 
then
    echo "."
    echo "Install libraries for QT"
    echo "."
    sudo urpmi --auto libqt4-devel
    sudo urpmi --auto libQt4Pas5 
fi

echo "----------------------------------------------------"
echo "CodeTyphon OS Libraries Installation"  
echo "Finish !!!"

sleep 5


This script is clean of my "32bit on x64 system tricks". :)
The following user(s) said Thank You: Konstantinos Papadoulas

Please Log in or Create an account to join the conversation.

Mandriva scrip fix 11 years 6 months ago #2671

  • Sternas Stefanos
  • Sternas Stefanos's Avatar
  • Offline
  • Moderator
  • Moderator
  • Ex Pilot, M.Sc, Ph.D
  • Posts: 4508
  • Thank you received: 1100
Thanks Sir
we put your updates
PilotLogic Architect and Core Programmer

Please Log in or Create an account to join the conversation.

Mandriva scrip fix 10 years 9 months ago #4261

  • Aleksandar
  • Aleksandar's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 150
  • Thank you received: 31

sternas wrote: Thanks Sir
we put your updates


In CT 4.41 I still see same old Mandriva script as it was then. :huh:

Please Log in or Create an account to join the conversation.

Mandriva scrip fix 10 years 4 months ago #4780

  • Aleksandar
  • Aleksandar's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
  • Posts: 150
  • Thank you received: 31

sternas wrote: Thanks Sir
we put your updates


For some reason CodeTyphon 4.6 still have old buggy install script for Mandriva and it's derivatives.

Please fix this.

Please Log in or Create an account to join the conversation.

  • Page:
  • 1