Index: devel/libght/Makefile =================================================================== --- devel/libght/Makefile (nonexistent) +++ devel/libght/Makefile (working copy) @@ -0,0 +1,26 @@ +# Created by: lbartoletti +# $FreeBSD$ + +PORTNAME= libght +PORTVERSION= 0.1.0 +DISTVERSIONPREFIX= v +CATEGORIES= devel geography + +MAINTAINER= lbartoletti@tuxfamily.org +COMMENT= GeoHashTree library for storing and accessing multi-dimensional point clouds + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYRIGHT + +LIB_DEPENDS= libproj.so:graphics/proj \ + liblas.so:devel/liblas \ + libcunit.so:devel/cunit + +USES= cmake +USE_GNOME= libxml2 +USE_LDCONFIG= yes + +USE_GITHUB= yes +GH_ACCOUNT= pramsey + +.include Property changes on: devel/libght/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: devel/libght/distinfo =================================================================== --- devel/libght/distinfo (nonexistent) +++ devel/libght/distinfo (working copy) @@ -0,0 +1,3 @@ +TIMESTAMP = 1502917817 +SHA256 (pramsey-libght-v0.1.0_GH0.tar.gz) = 3af40719bcb59785a2927ff95524ef9c961304c3b6522172036b66a1991164db +SIZE (pramsey-libght-v0.1.0_GH0.tar.gz) = 57017 Property changes on: devel/libght/distinfo ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: devel/libght/files/patch-CMakeLists.txt =================================================================== --- devel/libght/files/patch-CMakeLists.txt (nonexistent) +++ devel/libght/files/patch-CMakeLists.txt (working copy) @@ -0,0 +1,10 @@ +--- CMakeLists.txt.orig 2013-07-11 17:41:23 UTC ++++ CMakeLists.txt +@@ -53,6 +53,7 @@ find_package (LibXml2 REQUIRED) + mark_as_advanced (CLEAR LIBXML2_INCLUDE_DIR) + mark_as_advanced (CLEAR LIBXML2_LIBRARIES) + include_directories (${LIBXML2_INCLUDE_DIR}) ++link_directories (${CMAKE_INSTALL_PREFIX}/lib) + + #------------------------------------------------------------------------------ + # need libLAS and Proj4 for file translation tools Property changes on: devel/libght/files/patch-CMakeLists.txt ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: devel/libght/files/patch-src_ght__hash.c =================================================================== --- devel/libght/files/patch-src_ght__hash.c (nonexistent) +++ devel/libght/files/patch-src_ght__hash.c (working copy) @@ -0,0 +1,10 @@ +--- src/ght_hash.c.orig 2013-07-11 17:41:23 UTC ++++ src/ght_hash.c +@@ -7,6 +7,7 @@ + ******************************************************************************/ + + #include "ght_internal.h" ++#include + + #define MAX_HASH_LENGTH 22 + Property changes on: devel/libght/files/patch-src_ght__hash.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: devel/libght/pkg-descr =================================================================== --- devel/libght/pkg-descr (nonexistent) +++ devel/libght/pkg-descr (working copy) @@ -0,0 +1,19 @@ +A file format and library for storing and rapidly accessing point cloud data, in + particular LIDAR data. + +GeoHashTree organizes points into a tree structure for fast spatial access. The +tree structure itself encodes the significant bits of at each node, so child nod +es can omit them. The result is a smaller file than if all the points were store +d with full precision. Each node includes statistical information about the chil +dren below (e.g. average/median Z value) permitting fast overview generation. Ad +ditional attributes are attached to the tree at parent nodes, below which all ch +ildren share the attribute value. This reduces duplicate data storage further. + +The advantage of a GeoHashTree file over a LAS file is fast access and filtering +, since the tree encodes useful information at each node to speed searches over +the full set of points in the file. LASZ zipped files can be smaller, but will b +e less efficient at overviews, searching and sub-setting. GHT is a good working +format for applications that will be filtering and querying large sets of LIDAR +data. + +WWW: https://github.com/pramsey/libght Property changes on: devel/libght/pkg-descr ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: devel/libght/pkg-plist =================================================================== --- devel/libght/pkg-plist (nonexistent) +++ devel/libght/pkg-plist (working copy) @@ -0,0 +1,6 @@ +bin/las2ght +include/ght.h +include/ght_core.h +lib/libght.a +lib/libght.so +lib/libght.so.0.1.0 Property changes on: devel/libght/pkg-plist ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property