Package Details: ossim 2.12.0-2

Git Clone URL: https://aur.archlinux.org/ossim.git (read-only, click to copy)
Package Base: ossim
Description: OSSIM is a powerful suite of geospatial libraries and applications used to process imagery, maps, terrain, and vector data.
Upstream URL: http://www.ossim.org
Keywords: GIS Remote Sensing
Licenses: LGPL
Submitter: geosam
Maintainer: None
Last Packager: geosam
Votes: 4
Popularity: 0.000000
First Submitted: 2015-06-17 14:36 (UTC)
Last Updated: 2021-07-21 17:49 (UTC)

Pinned Comments

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

hend commented on 2016-07-22 16:48 (UTC)

Hello, I can't seem to use it coz I guess this package lacks the GUI, isn't it?

geosam commented on 2016-05-19 03:16 (UTC)

Another alternative to compile OSSIM with plugings, but I get errors. https://gist.github.com/samtux/4e8813d116e92edf29e31f14d77ab8df I appreciate any help.

geosam commented on 2016-05-19 03:12 (UTC)

Other alternative building OSSIM with plugins, but I get errors. https://gist.github.com/samtux/4e8813d116e92edf29e31f14d77ab8df I appreciate any help.

kikislater commented on 2016-05-17 09:08 (UTC)

Please update

jankoppe commented on 2016-04-26 08:19 (UTC)

Please update this package. If you don't have the time or want to maintain it, I would gladly take over.

kikislater commented on 2016-01-12 13:37 (UTC) (edited on 2016-01-12 13:37 (UTC) by kikislater)

Bad link : http://download.osgeo.org/ossim/source/latest/ossim-1.8.18.tar.gz is dead. Please update PKGBUILD should be like this : pkgver=1.8.18 pkgrel=1 source=(http://download.osgeo.org/ossim/source/ossim-${pkgver}/ossim-${pkgver}-${pkgrel}.tar.gz)

geosam commented on 2015-09-23 18:12 (UTC)

@mbostwick and @arsgeografica, I've made the changes but I get an error with the new version of GDAL 2.0.0. I created a ticket of the error in the official site of OSSIM. http://trac.osgeo.org/ossim/ticket/2353#ticket

mbostwick commented on 2015-09-06 04:14 (UTC)

This package should not include make or gcc as those are assumed for aur packages..This also appears to be missing liblas Please update or abandon so this can be fixed. http://pastebin.com/h8S7P5fq - for the patch http://pastebin.com/98S5jDd7 - for updated build file

arsgeografica commented on 2015-08-13 09:27 (UTC)

Building on a fresh (virtualized) install of Arch, I had to do two things to get it compile and install: 1) Install podofo, openvc, qt4, otherwise cmake would bail out 2a) Add cmake flag -DINSTALL_LIBRARY_DIR=/usr/lib to prevent installing in /usr/lib64 which pacman does not like 2b) Patch ossim-1.8.18/ossim_package_support/cmake/CMakeLists.txt to install ossim.pc in /usr/lib instead of /usr/lib64: --- src/ossim-1.8.18/ossim_package_support/cmake/CMakeLists.txt.orig 2015-08-13 09:17:39.811546639 +0000 +++ src/ossim-1.8.18/ossim_package_support/cmake/CMakeLists.txt 2015-08-13 09:09:28.608232907 +0000 @@ -254,7 +254,7 @@ ${${PROJECT_NAME}_BINARY_DIR}/packaging/pkgconfig/${PKGCONFIG_FILE}.pc @ONLY ) - INSTALL(FILES ${${PROJECT_NAME}_BINARY_DIR}/packaging/pkgconfig/${PKGCONFIG_FILE}.pc DESTINATION lib${LIBSUFFIX}/pkgconfig COMPONENT ossim) + INSTALL(FILES ${${PROJECT_NAME}_BINARY_DIR}/packaging/pkgconfig/${PKGCONFIG_FILE}.pc DESTINATION lib/pkgconfig COMPONENT ossim) ENDFOREACH(PKGCONFIG_FILE)