Am 24.05.2014 15:55, schrieb Helmut Schmidt:
> Hi Klaus,
> 
> did you consider just trying it out?
> As far as  remember, the first 4 dependencies you mentioned are really
> required, the last 3 rather optional.
> And of course you need to have gcc installed ;-).

In Ubuntu gcc is installed per default.

I use a batch file under Ubuntu 14.04. The command to install needed
dependencies you can find further down:


#!/bin/bash

# freigegebene Version

# Abhängigkeiten: sudo apt-get install lsb-cxx lsb-qt4 qt4-qmake
libqt4-core libqt4-dev libgdal1-dev libqt4-sql-sqlite libproj0
libproj-dev libexif-dev cmake

cd /home/jolatt/Software_Build-Inst

if [ -d ./QLandkarteGT ]
  then
        rm -r -f ./build_QLandkarteGT
        rm -r -f ./QLandkarteGT
fi

wget http://sourceforge.net/projects/qlandkartegt/files/latest/QLGT.gz

echo

tar -xvzf QLGT.gz

echo

mkdir QLandkarteGT
mv ./qland*/* ./QLandkarteGT

rm -f QLGT.gz
rm -r -f ./qlandkartegt-*

mkdir -p ./build_QLandkarteGT
cd ./build_QLandkarteGT
cmake ../QLandkarteGT -DBIN_INSTALL_DIR=/usr/bin \
        -DCMAKE_BUILD_TYPE=Release \
        -DCMAKE_INSTALL_PREFIX=/usr \
        -DDATA_INSTALL_DIR=/usr/share \
        -DDATA_INSTALL_PREFIX=/usr/share \
        -DEXEC_INSTALL_PREFIX=/usr \
                        
make

echo
echo "QLandkarteGT installieren!"
echo

sudo make install
sudo rm -f /usr/share/applications/qlandkartegt.desktop

cd ..           
rm -r -f ./build_QLandkarteGT
rm -r -f ./QLandkarteGT
                
echo
echo "Fertig, Entertaste drücken!"
read pause

exit


> Cmake will complain if something is missing. This allows for an
> iterative approach.
> (And hey: if you want to dig deep into debugging with a nice GUI:
> Qtcreator can directly use the cmake files).
> 
> Have fun,
> 
> Helmut
> 
> 
> Am 24.05.2014 15:38, schrieb Klaus Klein:
>> Hi Folks,
>>
>>   as the distribution I'm working with (Linux Mint Debian Edition based on 
>> Debian testing) only provides QLandKarteGT 1.7.5, I'm looking into compiling 
>> 1.7.6 (before I go on to the bleeding edge).
>>
>> The INSTALL file mentions the following dependencies:
>>
>>    cmake - a make file generator  (>= Version 2.6)
>>    QT 4 / Qtopia 4 - the famous GUI tool kit, (>= Version 4.6)
>>    GDAL - Geospatial Data Abstraction Library (> Version 1.5.0, 1.5.0 is 
>> buggy)
>>    Proj4 - Cartographic Projections Library (>= Version 4.6)
>>    libexif
>>    libdmtx
>>    libgpsd
>>
>> Unfortunately, I'm not really sure which packages I need to install to meet 
>> the requirements of QLankarteGT and also can't access a webpage 
>> (http://www.qlandkarte.org/index.php?option=com_content&view=article&id=2&Itemid=3)
>>  mentioned in one of Olivers emails. :-(
>>
>> Is there somewhere a more comprehensive list of packages which need to be 
>> installed?
>>
>> Thanks,
>> Klaus
>>
>> ------------------------------------------------------------------------------
>> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
>> Instantly run your Selenium tests across 300+ browser/OS combos.
>> Get unparalleled scalability from the best Selenium testing platform 
>> available
>> Simple to use. Nothing to install. Get started now for free."
>> http://p.sf.net/sfu/SauceLabs
>> _______________________________________________
>> Qlandkartegt-users mailing list
>> [email protected]
>> https://lists.sourceforge.net/lists/listinfo/qlandkartegt-users
> 
> 
> ------------------------------------------------------------------------------
> "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
> Instantly run your Selenium tests across 300+ browser/OS combos.
> Get unparalleled scalability from the best Selenium testing platform available
> Simple to use. Nothing to install. Get started now for free."
> http://p.sf.net/sfu/SauceLabs
> _______________________________________________
> Qlandkartegt-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qlandkartegt-users
> 

------------------------------------------------------------------------------
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free."
http://p.sf.net/sfu/SauceLabs
_______________________________________________
Qlandkartegt-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qlandkartegt-users

Reply via email to