Index: branches/2019Q2/databases/pointcloud/Makefile =================================================================== --- branches/2019Q2/databases/pointcloud/Makefile (revision 503515) +++ branches/2019Q2/databases/pointcloud/Makefile (revision 503516) @@ -1,28 +1,28 @@ # Created by: lbartoletti # $FreeBSD$ PORTNAME= pointcloud PORTVERSION= 1.2.0 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONPREFIX= v CATEGORIES= databases geography MAINTAINER= lbartoletti@tuxfamily.org COMMENT= LIDAR types for PostgreSQL LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYRIGHT BUILD_DEPENDS= ${LOCALBASE}/include/laz-perf/las.hpp:archivers/lazperf LIB_DEPENDS= libght.so:devel/libght USES= autoreconf compiler:c++0x gmake gnome pgsql WANT_PGSQL= server USE_GNOME= libxml2 GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-lazperf=${LOCALBASE} USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= pgpointcloud .include Index: branches/2019Q2/databases/pointcloud/files/patch-pgsql_pc__access.c =================================================================== --- branches/2019Q2/databases/pointcloud/files/patch-pgsql_pc__access.c (nonexistent) +++ branches/2019Q2/databases/pointcloud/files/patch-pgsql_pc__access.c (revision 503516) @@ -0,0 +1,26 @@ +--- pgsql/pc_access.c.orig 2018-08-22 09:36:04 UTC ++++ pgsql/pc_access.c +@@ -879,9 +879,9 @@ Datum pcpatch_intersects(PG_FUNCTION_ARGS) + + if ( pc_bounds_intersects(&(serpa1->bounds), &(serpa2->bounds)) ) + { +- PG_RETURN_BOOL(TRUE); ++ PG_RETURN_BOOL(true); + } +- PG_RETURN_BOOL(FALSE); ++ PG_RETURN_BOOL(false); + } + + PG_FUNCTION_INFO_V1(pcpatch_size); +@@ -939,9 +939,9 @@ PG_FUNCTION_INFO_V1(pc_lazperf_enabled); + Datum pc_lazperf_enabled(PG_FUNCTION_ARGS) + { + #ifdef HAVE_LAZPERF +- PG_RETURN_BOOL(TRUE); ++ PG_RETURN_BOOL(true); + #else +- PG_RETURN_BOOL(FALSE); ++ PG_RETURN_BOOL(false); + #endif + } + Property changes on: branches/2019Q2/databases/pointcloud/files/patch-pgsql_pc__access.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: branches/2019Q2/databases/pointcloud/files/patch-pgsql_pc__inout.c =================================================================== --- branches/2019Q2/databases/pointcloud/files/patch-pgsql_pc__inout.c (nonexistent) +++ branches/2019Q2/databases/pointcloud/files/patch-pgsql_pc__inout.c (revision 503516) @@ -0,0 +1,11 @@ +--- pgsql/pc_inout.c.orig 2018-08-22 09:36:04 UTC ++++ pgsql/pc_inout.c +@@ -171,7 +171,7 @@ Datum pcschema_is_valid(PG_FUNCTION_ARGS) + + if ( !schema ) + { +- PG_RETURN_BOOL(FALSE); ++ PG_RETURN_BOOL(false); + } + + valid = pc_schema_is_valid(schema); Property changes on: branches/2019Q2/databases/pointcloud/files/patch-pgsql_pc__inout.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: branches/2019Q2 =================================================================== --- branches/2019Q2 (revision 503515) +++ branches/2019Q2 (revision 503516) Property changes on: branches/2019Q2 ___________________________________________________________________ Modified: svn:mergeinfo ## -0,0 +0,1 ## Merged /head:r503367