Changes between Version 6 and Version 7 of Ubuntu-8.10Build
- Timestamp:
- 12/30/08 06:26:22 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ubuntu-8.10Build
v6 v7 58 58 59 59 {{{ 60 echo "export OSSIM_DEV_HOME= /home/sasha/GIS/ossim" >> /home/sasha/.bashrc61 echo "export OSSIM_HOME= /home/sasha/GIS/ossim/ossim" >> /home/sasha/.bashrc62 echo "export OSSIM_QT_HOME=/ home/sasha/GIS/ossim/ossim_qt" >> /home/sasha/.bashrc63 echo "export OSSIM_LIB_DIR= /home/sasha/GIS/ossim/ossim/lib/ossim" >> /home/sasha/.bashrc64 echo "export OSSIM_INC_DIR= /home/sasha/GIS/ossim/ossim/include" >> /home/sasha/.bashrc60 echo "export OSSIM_DEV_HOME=$home/GIS/ossim" >> $home/.bashrc 61 echo "export OSSIM_HOME=$home/GIS/ossim/ossim" >> $home/.bashrc 62 echo "export OSSIM_QT_HOME=/$home/GIS/ossim/ossim_qt" >> $home/.bashrc 63 echo "export OSSIM_LIB_DIR=$home/GIS/ossim/ossim/lib/ossim" >> $home/.bashrc 64 echo "export OSSIM_INC_DIR=$home/GIS/ossim/ossim/include" >> $home/.bashrc 65 65 }}} 66 66 … … 86 86 87 87 {{{ 88 cd /home/sasha/GIS/ossim/ossim88 cd $home/GIS/ossim/ossim 89 89 ./configure --with-geotiff=/usr/include/geotiff --prefix=/usr --with-jpeg=/usr --with-libtif 90 90 make … … 99 99 100 100 {{{ 101 cd /home/sasha/GIS/ossim/libwms101 cd $home/GIS/ossim/libwms 102 102 patch -Np0 < /path/to/libwms.patch 103 103 make … … 114 114 "Imagelinker" and "iview" 115 115 {{{ 116 cd /home/sasha/GIS/ossim/ossim_qt4116 cd $home/GIS/ossim/ossim_qt4 117 117 qmake ossim_qt4.pro 118 118 make … … 122 122 Build ossimPredator libs: 123 123 {{{ 124 cd /home/sasha/GIS/ossim/ossimPredator124 cd $home/GIS/ossim/ossimPredator 125 125 mkdir lib 126 126 cd src … … 137 137 138 138 {{{ 139 cd /home/sasha/GIS/ossim/ossimPlanet139 cd $home/GIS/ossim/ossimPlanet 140 140 patch -Np0 < /path/to/ossimPlanet.patch 141 141 OSSIMPREDATOR_LIB_DIR=/usr/local/lib make … … 149 149 150 150 {{{ 151 cd /home/sasha/GIS/ossim/ossimPlanetQt/151 cd $home/GIS/ossim/ossimPlanetQt/ 152 152 qmake ossimPlanetQt.pro 153 153 make … … 159 159 To buid ossim_plugin, change the gdal setting in the file 160 160 161 /home/sasha/GIS/ossim/ossim_plugins/make.opt.in 162 /home/sasha/GIS/ossim/ossim_plugins/make.opt 163 161 $home/GIS/ossim/ossim_plugins/make.opt.in 164 162 165 163 To point where you have gdal's files (hhere i used gdal from the repository) … … 177 175 178 176 {{{ 179 cd /home/sasha/GIS/ossim/ossim_plugins/177 cd $home/GIS/ossim/ossim_plugins/ 180 178 make 181 179 }}} … … 183 181 Create an "ossim-data" directory readed from ossim at its startup and copy the "ossim support data" inside it : 184 182 {{{ 185 mkdir /home/sasha/.ossim186 cp -r /home/sasha/GIS/ossim/ossim_package_support/fonts /home/sasha/.ossim/fonts187 cp -r /home/sasha/GIS/ossim/ossim_package_support/geoids /home/sasha/.ossim/geoids188 cp -r /home/sasha/GIS/ossim/ossim_package_support/images /home/sasha/.ossim/images183 mkdir $home/.ossim 184 cp -r $home/GIS/ossim/ossim_package_support/fonts $home/.ossim/fonts 185 cp -r $home/GIS/ossim/ossim_package_support/geoids $home/.ossim/geoids 186 cp -r $home/GIS/ossim/ossim_package_support/images $home/.ossim/images 189 187 }}} 190 188