Index: head/devel/liblas12/Makefile =================================================================== --- head/devel/liblas12/Makefile (revision 467860) +++ head/devel/liblas12/Makefile (revision 467861) @@ -1,23 +1,33 @@ # Created by: Wen Heping # $FreeBSD$ PORTNAME= liblas12 PORTVERSION= 1.2.1 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= rhurlin@gwdg.de COMMENT= Library For Reading And Writing LAS-Format Data LICENSE= BSD2CLAUSE -CONFLICTS= liblas-1.8* +USES= autoreconf dos2unix gmake libtool +GNU_CONFIGURE= yes +USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= libLAS GH_PROJECT= libLAS -USES= autoreconf gmake libtool -GNU_CONFIGURE= yes -USE_LDCONFIG= yes +pre-patch: + ${MV} ${WRKSRC}/include/liblas ${WRKSRC}/include/liblas12 + ${MV} ${WRKSRC}/apps/las2las.c ${WRKSRC}/apps/las2las12.c + ${MV} ${WRKSRC}/apps/las2ogr.cpp ${WRKSRC}/apps/las2ogr12.cpp + ${MV} ${WRKSRC}/apps/las2txt.c ${WRKSRC}/apps/las2txt12.c + ${MV} ${WRKSRC}/apps/lasdiff.c ${WRKSRC}/apps/lasdiff12.c + ${MV} ${WRKSRC}/apps/lasinfo.c ${WRKSRC}/apps/lasinfo12.c + ${MV} ${WRKSRC}/apps/lasmerge.c ${WRKSRC}/apps/lasmerge12.c + ${MV} ${WRKSRC}/apps/liblas-config.in ${WRKSRC}/apps/liblas12-config.in + ${MV} ${WRKSRC}/apps/txt2las.c ${WRKSRC}/apps/txt2las12.c .include Index: head/devel/liblas12/distinfo =================================================================== --- head/devel/liblas12/distinfo (revision 467860) +++ head/devel/liblas12/distinfo (revision 467861) @@ -1,2 +1,3 @@ +TIMESTAMP = 1524295718 SHA256 (libLAS-libLAS-1.2.1_GH0.tar.gz) = ad9fbc55d8a56cc3f5eec2a59dd1057ffbae02d8ec476e6fb9c94476c73b3440 SIZE (libLAS-libLAS-1.2.1_GH0.tar.gz) = 2327333 Index: head/devel/liblas12/files/patch-CMakeLists.txt =================================================================== --- head/devel/liblas12/files/patch-CMakeLists.txt (nonexistent) +++ head/devel/liblas12/files/patch-CMakeLists.txt (revision 467861) @@ -0,0 +1,13 @@ +--- CMakeLists.txt.orig 2018-04-21 08:12:47 UTC ++++ CMakeLists.txt +@@ -8,8 +8,8 @@ + # + PROJECT( libLAS ) + +-SET( LIBLAS_LIB_NAME liblas ) +-SET( LIBLAS_C_LIB_NAME liblas_c ) ++SET( LIBLAS_LIB_NAME liblas12 ) ++SET( LIBLAS_C_LIB_NAME liblas12_c ) + + ############################################################# + # CMake settings Property changes on: head/devel/liblas12/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: head/devel/liblas12/files/patch-apps_CMakeLists.txt =================================================================== --- head/devel/liblas12/files/patch-apps_CMakeLists.txt (nonexistent) +++ head/devel/liblas12/files/patch-apps_CMakeLists.txt (revision 467861) @@ -0,0 +1,36 @@ +--- apps/CMakeLists.txt.orig 2018-04-21 08:11:37 UTC ++++ apps/CMakeLists.txt +@@ -5,7 +5,7 @@ + INCLUDE_DIRECTORIES( + . + ../include +- ../include/liblas/capi ++ ../include/liblas12/capi + ) + + SET( LASINFO lasinfo ) +@@ -20,14 +20,14 @@ SET( LAS2TXT_SRC lascommon.c ${LAS2TXT}.c) + SET( TXT2LAS_SRC lascommon.c ${TXT2LAS}.c ) + SET( LASMERGE_SRC lascommon.c ${LASMERGE}.c ) + +-ADD_EXECUTABLE( ${LASINFO} ${LASINFO_SRC} ) +-ADD_EXECUTABLE( ${LAS2LAS} ${LAS2LAS_SRC} ) +-ADD_EXECUTABLE( ${LAS2TXT} ${LAS2TXT_SRC} ) +-ADD_EXECUTABLE( ${TXT2LAS} ${TXT2LAS_SRC} ) +-ADD_EXECUTABLE( ${LASMERGE} ${LASMERGE_SRC} ) ++ADD_EXECUTABLE( ${LASINFO}12 ${LASINFO_SRC} ) ++ADD_EXECUTABLE( ${LAS2LAS}12 ${LAS2LAS_SRC} ) ++ADD_EXECUTABLE( ${LAS2TXT}12 ${LAS2TXT_SRC} ) ++ADD_EXECUTABLE( ${TXT2LAS}12 ${TXT2LAS_SRC} ) ++ADD_EXECUTABLE( ${LASMERGE}12 ${LASMERGE_SRC} ) + +-TARGET_LINK_LIBRARIES( ${LASINFO} ${LIBLAS_C_LIB_NAME} ) +-TARGET_LINK_LIBRARIES( ${LAS2LAS} ${LIBLAS_C_LIB_NAME} ) +-TARGET_LINK_LIBRARIES( ${LAS2TXT} ${LIBLAS_C_LIB_NAME} ) +-TARGET_LINK_LIBRARIES( ${TXT2LAS} ${LIBLAS_C_LIB_NAME} ) +-TARGET_LINK_LIBRARIES( ${LASMERGE} ${LIBLAS_C_LIB_NAME} ) ++TARGET_LINK_LIBRARIES( ${LASINFO}12 ${LIBLAS_C_LIB_NAME} ) ++TARGET_LINK_LIBRARIES( ${LAS2LAS}12 ${LIBLAS_C_LIB_NAME} ) ++TARGET_LINK_LIBRARIES( ${LAS2TXT}12 ${LIBLAS_C_LIB_NAME} ) ++TARGET_LINK_LIBRARIES( ${TXT2LAS}12 ${LIBLAS_C_LIB_NAME} ) ++TARGET_LINK_LIBRARIES( ${LASMERGE}12 ${LIBLAS_C_LIB_NAME} ) Property changes on: head/devel/liblas12/files/patch-apps_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: head/devel/liblas12/files/patch-apps_Makefile.am =================================================================== --- head/devel/liblas12/files/patch-apps_Makefile.am (nonexistent) +++ head/devel/liblas12/files/patch-apps_Makefile.am (revision 467861) @@ -0,0 +1,36 @@ +--- apps/Makefile.am.orig 2009-10-02 17:48:41 UTC ++++ apps/Makefile.am +@@ -6,22 +6,22 @@ if GEOTIFF_IS_CONFIG + GEOTIFF_CPPFLAGS = @GEOTIFF_INC@ -DHAVE_LIBGEOTIFF=1 + endif + +-AM_CPPFLAGS = $(GEOTIFF_CPPFLAGS) $(GDAL_CPPFLAGS) -I../include/liblas/capi -I../include ++AM_CPPFLAGS = $(GEOTIFF_CPPFLAGS) $(GDAL_CPPFLAGS) -I../include/liblas12/capi -I../include + +-lasinfo_SOURCES = lasinfo.c lascommon.c +-las2las_SOURCES = las2las.c lascommon.c +-lasmerge_SOURCES = lasmerge.c lascommon.c +-las2txt_SOURCES = las2txt.c lascommon.c +-txt2las_SOURCES = txt2las.c ++lasinfo12_SOURCES = lasinfo12.c lascommon.c ++las2las12_SOURCES = las2las12.c lascommon.c ++lasmerge12_SOURCES = lasmerge12.c lascommon.c ++las2txt12_SOURCES = las2txt12.c lascommon.c ++txt2las12_SOURCES = txt2las12.c + + +-bin_PROGRAMS = lasinfo las2las lasmerge las2txt txt2las ++bin_PROGRAMS = lasinfo12 las2las12 lasmerge12 las2txt12 txt2las12 + +-bin_SCRIPTS = liblas-config ++bin_SCRIPTS = liblas12-config + + if GDAL_IS_CONFIG +-las2ogr_SOURCES = las2ogr.cpp +-bin_PROGRAMS += las2ogr ++las2ogr12_SOURCES = las2ogr12.cpp ++bin_PROGRAMS += las2ogr12 + endif + +-LDADD = ../src/liblas.la ++LDADD = ../src/liblas12.la Property changes on: head/devel/liblas12/files/patch-apps_Makefile.am ___________________________________________________________________ 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: head/devel/liblas12/files/patch-apps_las2las12.c =================================================================== --- head/devel/liblas12/files/patch-apps_las2las12.c (nonexistent) +++ head/devel/liblas12/files/patch-apps_las2las12.c (revision 467861) @@ -0,0 +1,57 @@ +--- apps/las2las12.c.orig 2009-10-02 17:48:41 UTC ++++ apps/las2las12.c +@@ -32,44 +32,44 @@ void repair_header(FILE *file, LASHeaderH header, LASP + void usage() + { + fprintf(stderr,"----------------------------------------------------------\n"); +- fprintf(stderr," las2las (version %s) usage:\n", LAS_GetVersion()); ++ fprintf(stderr," las2las12 (version %s) usage:\n", LAS_GetVersion()); + fprintf(stderr,"----------------------------------------------------------\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Clip las file to a bounding box, throwing out points that have invalid data:\n"); +- fprintf(stderr," las2las -i in.las -clip 63000000 483450000 63050000 483500000 -o out.las --skip_invalid\n"); ++ fprintf(stderr," las2las12 -i in.las -clip 63000000 483450000 63050000 483500000 -o out.las --skip_invalid\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Read from stdin, eliminate intensities below 2000, and write to stdout:\n"); +- fprintf(stderr," las2las --eliminate_intensity_below 2000 --stdin --stdout < in.las > out.las \n"); ++ fprintf(stderr," las2las12 --eliminate_intensity_below 2000 --stdin --stdout < in.las > out.las \n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Eliminate return number two:\n"); +- fprintf(stderr," las2las -i in.las -eliminate_return 2 -o out.las\n"); ++ fprintf(stderr," las2las12 -i in.las -eliminate_return 2 -o out.las\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Eliminate scan angles above 15:\n"); +- fprintf(stderr," las2las -i in.las -eliminate_scan_angle_above 15 -o out.las\n"); ++ fprintf(stderr," las2las12 -i in.las -eliminate_scan_angle_above 15 -o out.las\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Eliminate intensities below 1000:\n"); +- fprintf(stderr," las2las -i in.las -eliminate_intensity_below 1000 --stdout > out.las\n"); ++ fprintf(stderr," las2las12 -i in.las -eliminate_intensity_below 1000 --stdout > out.las\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Eliminate intensities below 1000 and classifications that equal 2 (ground):\n"); +- fprintf(stderr," las2las -i in.las --eliminate_class 2 --out out.las\n"); ++ fprintf(stderr," las2las12 -i in.las --eliminate_class 2 --out out.las\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Capture only first returns and clip to bounding box:\n"); +- fprintf(stderr," las2las -i in.las -first_only -clip 63000000 483450000 63050000 483500000 -o out.las\n"); ++ fprintf(stderr," las2las12 -i in.las -first_only -clip 63000000 483450000 63050000 483500000 -o out.las\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Capture only last returns, eliminate intensities below 2000, and write to stdout:\n"); +- fprintf(stderr," las2las --input in.las --last_only --eliminate_intensity_below 2000 --stdout > out.las\n"); ++ fprintf(stderr," las2las12 --input in.las --last_only --eliminate_intensity_below 2000 --stdout > out.las\n"); + fprintf(stderr,"\n"); + + +- fprintf(stderr, "\nFor more information, see the full documentation for las2las at:\n" ++ fprintf(stderr, "\nFor more information, see the full documentation for las2las12 at:\n" + " http://liblas.org/browser/trunk/doc/las2las.txt\n"); + fprintf(stderr,"----------------------------------------------------------\n"); + Property changes on: head/devel/liblas12/files/patch-apps_las2las12.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: head/devel/liblas12/files/patch-apps_las2ogr12.cpp =================================================================== --- head/devel/liblas12/files/patch-apps_las2ogr12.cpp (nonexistent) +++ head/devel/liblas12/files/patch-apps_las2ogr12.cpp (revision 467861) @@ -0,0 +1,26 @@ +--- apps/las2ogr12.cpp.orig 2009-10-02 17:48:41 UTC ++++ apps/las2ogr12.cpp +@@ -14,10 +14,10 @@ + #include + #endif + // liblas +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include + // ogr + #include + //std +@@ -208,7 +208,7 @@ void report_ogr_formats(std::ostream& os) + + void usage() + { +- std::cerr << "Usage: las2ogr OPTIONS\nOptions are:\n" ++ std::cerr << "Usage: las2ogr12 OPTIONS\nOptions are:\n" + << "\t-h print this message\n" + << "\t-i \tinput ASPRS LAS file\n" + << "\t-o \toutput file\n" Property changes on: head/devel/liblas12/files/patch-apps_las2ogr12.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-apps_las2txt12.c =================================================================== --- head/devel/liblas12/files/patch-apps_las2txt12.c (nonexistent) +++ head/devel/liblas12/files/patch-apps_las2txt12.c (revision 467861) @@ -0,0 +1,36 @@ +--- apps/las2txt12.c.orig 2009-10-02 17:48:41 UTC ++++ apps/las2txt12.c +@@ -23,20 +23,20 @@ void print_header(FILE *file, LASHeaderH header, const + void usage() + { + fprintf(stderr,"----------------------------------------------------------\n"); +- fprintf(stderr," las2txt (version %s) usage:\n", LAS_GetVersion()); ++ fprintf(stderr," las2txt12 (version %s) usage:\n", LAS_GetVersion()); + fprintf(stderr,"----------------------------------------------------------\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Convert a las file to text on stdout:\n"); +- fprintf(stderr," las2txt lidar.las\n"); ++ fprintf(stderr," las2txt12 lidar.las\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Convert using stdin and stdout:\n"); +- fprintf(stderr," las2txt --stdin --stdout < lidar.las > lidar.txt\n"); ++ fprintf(stderr," las2txt12 --stdin --stdout < lidar.las > lidar.txt\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Convert to text with a specified format :\n"); +- fprintf(stderr," las2txt --parse xyziar lidar.las lidar.txt\n"); ++ fprintf(stderr," las2txt12 --parse xyziar lidar.las lidar.txt\n"); + fprintf(stderr,"\n"); + + +@@ -73,7 +73,7 @@ void usage() + fprintf(stderr," possible are 'percent', 'dollar', 'semicolon', 'komma',\n"); + fprintf(stderr," 'star', 'colon', or 'semicolon' as that special character.\n"); + +- fprintf(stderr, "\nFor more information, see the full documentation for las2txt at:\n" ++ fprintf(stderr, "\nFor more information, see the full documentation for las2txt12 at:\n" + " http://liblas.org/browser/trunk/doc/las2txt.txt\n"); + fprintf(stderr,"----------------------------------------------------------\n"); + Property changes on: head/devel/liblas12/files/patch-apps_las2txt12.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: head/devel/liblas12/files/patch-apps_lasdiff12.c =================================================================== --- head/devel/liblas12/files/patch-apps_lasdiff12.c (nonexistent) +++ head/devel/liblas12/files/patch-apps_lasdiff12.c (revision 467861) @@ -0,0 +1,24 @@ +--- apps/lasdiff12.c.orig 2009-10-02 17:48:41 UTC ++++ apps/lasdiff12.c +@@ -26,15 +26,15 @@ + void usage() + { + fprintf(stderr,"----------------------------------------------------------\n"); +- fprintf(stderr," lasdiff (version %s) usage:\n", LAS_GetVersion()); ++ fprintf(stderr," lasdiff12 (version %s) usage:\n", LAS_GetVersion()); + fprintf(stderr,"----------------------------------------------------------\n"); + fprintf(stderr,"\n"); + +- fprintf(stderr,"lasdiff lidar1.las lidar2.las\n"); +- fprintf(stderr,"lasdiff lidar1.las lidar1.las.lz\n"); +- fprintf(stderr,"lasdiff -i lidar1.las -i lidar1.laz\n"); +- fprintf(stderr,"lasdiff -h\n"); +- fprintf(stderr, "\nFor more information, see the full documentation for lasdiff at:\n" ++ fprintf(stderr,"lasdiff12 lidar1.las lidar2.las\n"); ++ fprintf(stderr,"lasdiff12 lidar1.las lidar1.las.lz\n"); ++ fprintf(stderr,"lasdiff12 -i lidar1.las -i lidar1.laz\n"); ++ fprintf(stderr,"lasdiff12 -h\n"); ++ fprintf(stderr, "\nFor more information, see the full documentation for lasdiff12 at:\n" + " http://liblas.org/browser/trunk/doc/lasdiff.txt\n"); + fprintf(stderr,"----------------------------------------------------------\n"); + } Property changes on: head/devel/liblas12/files/patch-apps_lasdiff12.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: head/devel/liblas12/files/patch-apps_lasinfo12.c =================================================================== --- head/devel/liblas12/files/patch-apps_lasinfo12.c (nonexistent) +++ head/devel/liblas12/files/patch-apps_lasinfo12.c (revision 467861) @@ -0,0 +1,52 @@ +--- apps/lasinfo12.c.orig 2009-10-02 17:48:41 UTC ++++ apps/lasinfo12.c +@@ -31,40 +31,40 @@ void print_header(FILE *file, LASHeaderH header, const + void usage() + { + fprintf(stderr,"----------------------------------------------------------\n"); +- fprintf(stderr," lasinfo (version %s) usage:\n", LAS_GetVersion()); ++ fprintf(stderr," lasinfo12 (version %s) usage:\n", LAS_GetVersion()); + fprintf(stderr,"----------------------------------------------------------\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Printing simple header info:\n"); +- fprintf(stderr," lasinfo lidar.las\n"); ++ fprintf(stderr," lasinfo12 lidar.las\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Checking point information:\n"); +- fprintf(stderr," lasinfo --input lidar.las --check\n"); ++ fprintf(stderr," lasinfo12 --input lidar.las --check\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Print header info and point summary and redirect output to a file:\n"); +- fprintf(stderr," lasinfo --check --input lidar.las 2> output.txt\n"); ++ fprintf(stderr," lasinfo12 --check --input lidar.las 2> output.txt\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Read from stdin, scan the points, and skip printing VLR info:\n"); +- fprintf(stderr," lasinfo --stdin --check --skip_vlr < lidar.las\n"); ++ fprintf(stderr," lasinfo12 --stdin --check --skip_vlr < lidar.las\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Repairing header info to reflect point data:\n"); +- fprintf(stderr," lasinfo -i lidar.las --repair\n"); ++ fprintf(stderr," lasinfo12 -i lidar.las --repair\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Altering header info:\n"); +- fprintf(stderr, " lasinfo -i lidar.las --system_identifier \"hello world!\" " ++ fprintf(stderr, " lasinfo12 -i lidar.las --system_identifier \"hello world!\" " + "--generating_software \"this is a test (-:\" --file_creation 8 2007\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Print this output:\n"); +- fprintf(stderr, " lasinfo --help\n"); ++ fprintf(stderr, " lasinfo12 --help\n"); + fprintf(stderr,"\n"); + +- fprintf(stderr, "\nFor more information, see the full documentation for lasinfo at:\n" ++ fprintf(stderr, "\nFor more information, see the full documentation for lasinfo12 at:\n" + " http://liblas.org/browser/trunk/doc/lasinfo.txt\n"); + fprintf(stderr,"----------------------------------------------------------\n"); + Property changes on: head/devel/liblas12/files/patch-apps_lasinfo12.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: head/devel/liblas12/files/patch-apps_lasmerge12.c =================================================================== --- head/devel/liblas12/files/patch-apps_lasmerge12.c (nonexistent) +++ head/devel/liblas12/files/patch-apps_lasmerge12.c (revision 467861) @@ -0,0 +1,51 @@ +--- apps/lasmerge12.c.orig 2009-10-02 17:48:41 UTC ++++ apps/lasmerge12.c +@@ -27,39 +27,39 @@ void usage() + { + + fprintf(stderr,"----------------------------------------------------------\n"); +- fprintf(stderr," lasmerge (version %s) usage:\n", LAS_GetVersion()); ++ fprintf(stderr," lasmerge12 (version %s) usage:\n", LAS_GetVersion()); + fprintf(stderr,"----------------------------------------------------------\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Merge using a list of files:\n"); +- fprintf(stderr," lasmerge -i lasfiles.txt -o out.las\n"); ++ fprintf(stderr," lasmerge12 -i lasfiles.txt -o out.las\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Manually list files to merge:\n"); +- fprintf(stderr," lasmerge -i file1.las -i file2.las -i file3.las -o out.las\n"); ++ fprintf(stderr," lasmerge12 -i file1.las -i file2.las -i file3.las -o out.las\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Merge to stdout:\n"); +- fprintf(stderr," lasmerge -i file1.las -i file2.las --stdout\n"); ++ fprintf(stderr," lasmerge12 -i file1.las -i file2.las --stdout\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Merge and set scale:\n"); +- fprintf(stderr, " lasmerge --input lasfiles.txt --scale 0.01 --output out.las\n"); ++ fprintf(stderr, " lasmerge12 --input lasfiles.txt --scale 0.01 --output out.las\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Merge and set scale individually:\n"); +- fprintf(stderr, " lasmerge --input lasfiles.txt --xyz_scale 0.01 0.01 0.1 --output out.las\n"); ++ fprintf(stderr, " lasmerge12 --input lasfiles.txt --xyz_scale 0.01 0.01 0.1 --output out.las\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Merge and set offset individually:\n"); +- fprintf(stderr, " lasmerge --input lasfiles.txt --xyz_offset 0.01 0.01 0.1 --output out.las\n"); ++ fprintf(stderr, " lasmerge12 --input lasfiles.txt --xyz_offset 0.01 0.01 0.1 --output out.las\n"); + fprintf(stderr,"\n"); + + fprintf(stderr,"Print this output:\n"); +- fprintf(stderr, " lasmerge --help\n"); ++ fprintf(stderr, " lasmerge12 --help\n"); + fprintf(stderr,"\n"); + +- fprintf(stderr, "For more information, see the full documentation for lasmerge at:\n" ++ fprintf(stderr, "For more information, see the full documentation for lasmerge12 at:\n" + " http://liblas.org/browser/trunk/doc/lasmerge.txt\n"); + fprintf(stderr,"----------------------------------------------------------\n"); + Property changes on: head/devel/liblas12/files/patch-apps_lasmerge12.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: head/devel/liblas12/files/patch-apps_liblas12-config.in =================================================================== --- head/devel/liblas12/files/patch-apps_liblas12-config.in (nonexistent) +++ head/devel/liblas12/files/patch-apps_liblas12-config.in (revision 467861) @@ -0,0 +1,11 @@ +--- apps/liblas12-config.in.orig 2009-10-02 17:48:41 UTC ++++ apps/liblas12-config.in +@@ -5,7 +5,7 @@ + usage() + { + cat < ++#include + + + typedef struct LASWriterHS *LASWriterH; Property changes on: head/devel/liblas12/files/patch-include_liblas12_capi_liblas.h ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_detail_file.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_detail_file.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_detail_file.hpp (revision 467861) @@ -0,0 +1,13 @@ +--- include/liblas12/detail/file.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/detail/file.hpp +@@ -43,8 +43,8 @@ + #ifndef LIBLAS_DETAIL_FILE_HPP_INCLUDED + #define LIBLAS_DETAIL_FILE_HPP_INCLUDED + +-#include +-#include ++#include ++#include + #include + #include + #include Property changes on: head/devel/liblas12/files/patch-include_liblas12_detail_file.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_detail_reader.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_detail_reader.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_detail_reader.hpp (revision 467861) @@ -0,0 +1,15 @@ +--- include/liblas12/detail/reader.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/detail/reader.hpp +@@ -42,9 +42,9 @@ + #ifndef LIBLAS_DETAIL_READER_HPP_INCLUDED + #define LIBLAS_DETAIL_READER_HPP_INCLUDED + +-#include +-#include +-#include ++#include ++#include ++#include + + #ifndef HAVE_GDAL + typedef struct OGRCoordinateTransformationHS *OGRCoordinateTransformationH; Property changes on: head/devel/liblas12/files/patch-include_liblas12_detail_reader.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_detail_reader10.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_detail_reader10.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_detail_reader10.hpp (revision 467861) @@ -0,0 +1,13 @@ +--- include/liblas12/detail/reader10.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/detail/reader10.hpp +@@ -42,8 +42,8 @@ + #ifndef LIBLAS_DETAIL_READER10_HPP_INCLUDED + #define LIBLAS_DETAIL_READER10_HPP_INCLUDED + +-#include +-#include ++#include ++#include + // std + #include + Property changes on: head/devel/liblas12/files/patch-include_liblas12_detail_reader10.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_detail_reader11.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_detail_reader11.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_detail_reader11.hpp (revision 467861) @@ -0,0 +1,13 @@ +--- include/liblas12/detail/reader11.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/detail/reader11.hpp +@@ -42,8 +42,8 @@ + #ifndef LIBLAS_DETAIL_READER11_HPP_INCLUDED + #define LIBLAS_DETAIL_READER11_HPP_INCLUDED + +-#include +-#include ++#include ++#include + // std + #include + Property changes on: head/devel/liblas12/files/patch-include_liblas12_detail_reader11.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_detail_reader12.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_detail_reader12.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_detail_reader12.hpp (revision 467861) @@ -0,0 +1,13 @@ +--- include/liblas12/detail/reader12.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/detail/reader12.hpp +@@ -42,8 +42,8 @@ + #ifndef LIBLAS_DETAIL_READER12_HPP_INCLUDED + #define LIBLAS_DETAIL_READER12_HPP_INCLUDED + +-#include +-#include ++#include ++#include + // std + #include + Property changes on: head/devel/liblas12/files/patch-include_liblas12_detail_reader12.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_detail_utility.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_detail_utility.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_detail_utility.hpp (revision 467861) @@ -0,0 +1,13 @@ +--- include/liblas12/detail/utility.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/detail/utility.hpp +@@ -42,8 +42,8 @@ + #ifndef LIBLAS_DETAIL_UTILITY_HPP_INCLUDED + #define LIBLAS_DETAIL_UTILITY_HPP_INCLUDED + +-#include +-#include ++#include ++#include + #include + #include + #include Property changes on: head/devel/liblas12/files/patch-include_liblas12_detail_utility.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_detail_writer.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_detail_writer.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_detail_writer.hpp (revision 467861) @@ -0,0 +1,15 @@ +--- include/liblas12/detail/writer.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/detail/writer.hpp +@@ -42,9 +42,9 @@ + #ifndef LIBLAS_DETAIL_WRITER_HPP_INCLUDED + #define LIBLAS_DETAIL_WRITER_HPP_INCLUDED + +-#include +-#include +-#include ++#include ++#include ++#include + + #ifndef HAVE_GDAL + typedef struct OGRCoordinateTransformationHS *OGRCoordinateTransformationH; Property changes on: head/devel/liblas12/files/patch-include_liblas12_detail_writer.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_detail_writer10.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_detail_writer10.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_detail_writer10.hpp (revision 467861) @@ -0,0 +1,15 @@ +--- include/liblas12/detail/writer10.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/detail/writer10.hpp +@@ -42,9 +42,9 @@ + #ifndef LIBLAS_DETAIL_WRITER10_HPP_INCLUDED + #define LIBLAS_DETAIL_WRITER10_HPP_INCLUDED + +-#include +-#include +-#include ++#include ++#include ++#include + // std + #include + Property changes on: head/devel/liblas12/files/patch-include_liblas12_detail_writer10.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_detail_writer11.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_detail_writer11.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_detail_writer11.hpp (revision 467861) @@ -0,0 +1,15 @@ +--- include/liblas12/detail/writer11.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/detail/writer11.hpp +@@ -42,9 +42,9 @@ + #ifndef LIBLAS_DETAIL_WRITER11_HPP_INCLUDED + #define LIBLAS_DETAIL_WRITER11_HPP_INCLUDED + +-#include +-#include +-#include ++#include ++#include ++#include + // std + #include + Property changes on: head/devel/liblas12/files/patch-include_liblas12_detail_writer11.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_detail_writer12.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_detail_writer12.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_detail_writer12.hpp (revision 467861) @@ -0,0 +1,15 @@ +--- include/liblas12/detail/writer12.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/detail/writer12.hpp +@@ -42,9 +42,9 @@ + #ifndef LIBLAS_DETAIL_WRITER12_HPP_INCLUDED + #define LIBLAS_DETAIL_WRITER12_HPP_INCLUDED + +-#include +-#include +-#include ++#include ++#include ++#include + // std + #include + Property changes on: head/devel/liblas12/files/patch-include_liblas12_detail_writer12.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_guid.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_guid.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_guid.hpp (revision 467861) @@ -0,0 +1,15 @@ +--- include/liblas12/guid.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/guid.hpp +@@ -59,9 +59,9 @@ + #ifndef LIBLAS_GUID_HPP_INCLUDED + #define LIBLAS_GUID_HPP_INCLUDED + +-#include +-#include +-#include ++#include ++#include ++#include + #include + #include + #include Property changes on: head/devel/liblas12/files/patch-include_liblas12_guid.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_iterator.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_iterator.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_iterator.hpp (revision 467861) @@ -0,0 +1,13 @@ +--- include/liblas12/iterator.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/iterator.hpp +@@ -42,8 +42,8 @@ + #ifndef LIBLAS_ITERATOR_HPP_INCLUDED + #define LIBLAS_ITERATOR_HPP_INCLUDED + +-#include +-#include ++#include ++#include + #include + #include + Property changes on: head/devel/liblas12/files/patch-include_liblas12_iterator.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_lascolor.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_lascolor.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_lascolor.hpp (revision 467861) @@ -0,0 +1,15 @@ +--- include/liblas12/lascolor.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/lascolor.hpp +@@ -42,9 +42,9 @@ + #ifndef LIBLAS_LASCOLOR_HPP_INCLUDED + #define LIBLAS_LASCOLOR_HPP_INCLUDED + +-#include +-#include +-#include ++#include ++#include ++#include + // std + #include // std::out_of_range + #include // std::size_t Property changes on: head/devel/liblas12/files/patch-include_liblas12_lascolor.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_lasfile.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_lasfile.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_lasfile.hpp (revision 467861) @@ -0,0 +1,13 @@ +--- include/liblas12/lasfile.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/lasfile.hpp +@@ -43,8 +43,8 @@ + #ifndef LIBLAS_LASFILE_HPP_INCLUDED + #define LIBLAS_LASFILE_HPP_INCLUDED + +-#include // complete type required +-#include ++#include // complete type required ++#include + #include + #include + Property changes on: head/devel/liblas12/files/patch-include_liblas12_lasfile.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_lasheader.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_lasheader.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_lasheader.hpp (revision 467861) @@ -0,0 +1,21 @@ +--- include/liblas12/lasheader.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/lasheader.hpp +@@ -43,12 +43,12 @@ + #ifndef LIBLAS_LASHEADER_HPP_INCLUDED + #define LIBLAS_LASHEADER_HPP_INCLUDED + +-#include +-#include +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include ++#include ++#include + + //std + #include Property changes on: head/devel/liblas12/files/patch-include_liblas12_lasheader.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_laspoint.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_laspoint.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_laspoint.hpp (revision 467861) @@ -0,0 +1,17 @@ +--- include/liblas12/laspoint.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/laspoint.hpp +@@ -42,10 +42,10 @@ + #ifndef LIBLAS_LASPOINT_HPP_INCLUDED + #define LIBLAS_LASPOINT_HPP_INCLUDED + +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include + // std + #include // std::out_of_range + #include // std::size_t Property changes on: head/devel/liblas12/files/patch-include_liblas12_laspoint.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_lasreader.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_lasreader.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_lasreader.hpp (revision 467861) @@ -0,0 +1,19 @@ +--- include/liblas12/lasreader.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/lasreader.hpp +@@ -43,11 +43,11 @@ + #ifndef LIBLAS_LASREADER_HPP_INCLUDED + #define LIBLAS_LASREADER_HPP_INCLUDED + +-#include +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include ++#include + // std + #include + #include Property changes on: head/devel/liblas12/files/patch-include_liblas12_lasreader.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_lasspatialreference.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_lasspatialreference.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_lasspatialreference.hpp (revision 467861) @@ -0,0 +1,21 @@ +--- include/liblas12/lasspatialreference.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/lasspatialreference.hpp +@@ -42,12 +42,12 @@ + #ifndef LIBLAS_LASSPATIALREFERENCE_HPP_INCLUDED + #define LIBLAS_LASSPATIALREFERENCE_HPP_INCLUDED + +-#include +-#include +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include ++#include ++#include + + // GDAL OSR + #ifdef HAVE_GDAL Property changes on: head/devel/liblas12/files/patch-include_liblas12_lasspatialreference.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_lasvariablerecord.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_lasvariablerecord.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_lasvariablerecord.hpp (revision 467861) @@ -0,0 +1,11 @@ +--- include/liblas12/lasvariablerecord.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/lasvariablerecord.hpp +@@ -43,7 +43,7 @@ + #ifndef LIBLAS_LASVARIABLERECORD_HPP_INCLUDED + #define LIBLAS_LASVARIABLERECORD_HPP_INCLUDED + +-#include ++#include + // std + #include + #include Property changes on: head/devel/liblas12/files/patch-include_liblas12_lasvariablerecord.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_laswriter.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_laswriter.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_laswriter.hpp (revision 467861) @@ -0,0 +1,15 @@ +--- include/liblas12/laswriter.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/laswriter.hpp +@@ -42,9 +42,9 @@ + #ifndef LIBLAS_LASWRITER_HPP_INCLUDED + #define LIBLAS_LASWRITER_HPP_INCLUDED + +-#include +-#include +-#include ++#include ++#include ++#include + // std + #include // std::ostream + #include Property changes on: head/devel/liblas12/files/patch-include_liblas12_laswriter.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-include_liblas12_liblas.hpp =================================================================== --- head/devel/liblas12/files/patch-include_liblas12_liblas.hpp (nonexistent) +++ head/devel/liblas12/files/patch-include_liblas12_liblas.hpp (revision 467861) @@ -0,0 +1,11 @@ +--- include/liblas12/liblas.hpp.orig 2009-10-02 17:48:41 UTC ++++ include/liblas12/liblas.hpp +@@ -45,7 +45,7 @@ + #ifndef LIBLAS_HPP_INCLUDED + #define LIBLAS_HPP_INCLUDED + +-#include ++#include + #include + #include + Property changes on: head/devel/liblas12/files/patch-include_liblas12_liblas.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-python_liblas_core.py =================================================================== --- head/devel/liblas12/files/patch-python_liblas_core.py (nonexistent) +++ head/devel/liblas12/files/patch-python_liblas_core.py (revision 467861) @@ -0,0 +1,11 @@ +--- python/liblas/core.py.orig 2009-10-02 17:48:41 UTC ++++ python/liblas/core.py +@@ -131,7 +131,7 @@ elif os.name == 'posix': + lib_name = 'liblas.dylib' + free = ctypes.CDLL(find_library('libc')).free + else: +- lib_name = 'liblas.so' ++ lib_name = 'liblas12.so' + free = ctypes.CDLL(find_library('libc.so.6')).free + las = ctypes.CDLL(lib_name) + else: Property changes on: head/devel/liblas12/files/patch-python_liblas_core.py ___________________________________________________________________ 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: head/devel/liblas12/files/patch-src_CMakeLists.txt =================================================================== --- head/devel/liblas12/files/patch-src_CMakeLists.txt (nonexistent) +++ head/devel/liblas12/files/patch-src_CMakeLists.txt (revision 467861) @@ -0,0 +1,85 @@ +--- src/CMakeLists.txt.orig 2018-04-21 08:08:39 UTC ++++ src/CMakeLists.txt +@@ -3,40 +3,40 @@ + # Build the libLAS library subproject + # + +-SET( LIBLAS_INCLUDE_DIR ../include/liblas ) ++SET( LIBLAS_INCLUDE_DIR ../include/liblas12 ) + + SET( LIBLAS_HPP +- ../include/liblas/cstdint.hpp +- ../include/liblas/guid.hpp +- ../include/liblas/iterator.hpp +- ../include/liblas/laserror.hpp +- ../include/liblas/lasfile.hpp +- ../include/liblas/lasheader.hpp +- ../include/liblas/laspoint.hpp +- ../include/liblas/lasvariablerecord.hpp +- ../include/liblas/lasreader.hpp +- ../include/liblas/lasvariablerecord.hpp +- ../include/liblas/laswriter.hpp +- ../include/liblas/liblas.hpp +- ../include/liblas/lasspatialreference.hpp ++ ../include/liblas12/cstdint.hpp ++ ../include/liblas12/guid.hpp ++ ../include/liblas12/iterator.hpp ++ ../include/liblas12/laserror.hpp ++ ../include/liblas12/lasfile.hpp ++ ../include/liblas12/lasheader.hpp ++ ../include/liblas12/laspoint.hpp ++ ../include/liblas12/lasvariablerecord.hpp ++ ../include/liblas12/lasreader.hpp ++ ../include/liblas12/lasvariablerecord.hpp ++ ../include/liblas12/laswriter.hpp ++ ../include/liblas12/liblas.hpp ++ ../include/liblas12/lasspatialreference.hpp + ) + + SET( LIBLAS_DETAIL_HPP +- ../include/liblas/detail/endian.hpp +- ../include/liblas/detail/file.hpp +- ../include/liblas/detail/fwd.hpp +- ../include/liblas/detail/reader.hpp +- ../include/liblas/detail/reader10.hpp +- ../include/liblas/detail/reader11.hpp +- ../include/liblas/detail/reader12.hpp +- ../include/liblas/detail/sha1.hpp +- ../include/liblas/detail/sharedptr.hpp +- ../include/liblas/detail/timer.hpp +- ../include/liblas/detail/utility.hpp +- ../include/liblas/detail/writer.hpp +- ../include/liblas/detail/writer10.hpp +- ../include/liblas/detail/writer11.hpp +- ../include/liblas/detail/writer12.hpp ++ ../include/liblas12/detail/endian.hpp ++ ../include/liblas12/detail/file.hpp ++ ../include/liblas12/detail/fwd.hpp ++ ../include/liblas12/detail/reader.hpp ++ ../include/liblas12/detail/reader10.hpp ++ ../include/liblas12/detail/reader11.hpp ++ ../include/liblas12/detail/reader12.hpp ++ ../include/liblas12/detail/sha1.hpp ++ ../include/liblas12/detail/sharedptr.hpp ++ ../include/liblas12/detail/timer.hpp ++ ../include/liblas12/detail/utility.hpp ++ ../include/liblas12/detail/writer.hpp ++ ../include/liblas12/detail/writer10.hpp ++ ../include/liblas12/detail/writer11.hpp ++ ../include/liblas12/detail/writer12.hpp + ) + + SET( LIBLAS_CPP +@@ -70,9 +70,9 @@ SET( LIBLAS_SOURCES + ) + + SET( LIBLAS_C_SOURCES +- ../include/liblas/capi/las_config.h +- ../include/liblas/capi/las_version.h +- ../include/liblas/capi/liblas.h ++ ../include/liblas12/capi/las_config.h ++ ../include/liblas12/capi/las_version.h ++ ../include/liblas12/capi/liblas.h + las_c_api.cpp + ) + Property changes on: head/devel/liblas12/files/patch-src_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: head/devel/liblas12/files/patch-src_Makefile.am =================================================================== --- head/devel/liblas12/files/patch-src_Makefile.am (nonexistent) +++ head/devel/liblas12/files/patch-src_Makefile.am (revision 467861) @@ -0,0 +1,24 @@ +--- src/Makefile.am.orig 2009-10-02 17:48:41 UTC ++++ src/Makefile.am +@@ -11,9 +11,9 @@ endif + + AM_CPPFLAGS = $(GEOTIFF_CPPFLAGS) $(GDAL_CPPFLAGS) -I../include -I../include/detail + +-lib_LTLIBRARIES = liblas.la ++lib_LTLIBRARIES = liblas12.la + +-liblas_la_SOURCES = \ ++liblas12_la_SOURCES = \ + laserror.cpp \ + laspoint.cpp \ + lasheader.cpp \ +@@ -35,7 +35,7 @@ liblas_la_SOURCES = \ + detail/file.cpp + + if GDAL_IS_CONFIG +-liblas_la_SOURCES += gt_wkt_srs.cpp gt_citation.cpp tifvsi.cpp ++liblas12_la_SOURCES += gt_wkt_srs.cpp gt_citation.cpp tifvsi.cpp + endif + +-liblas_la_LDFLAGS = -version-info 1:0:0 ++liblas12_la_LDFLAGS = -version-info 1:0:0 Property changes on: head/devel/liblas12/files/patch-src_Makefile.am ___________________________________________________________________ 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: head/devel/liblas12/files/patch-src_detail_file.cpp =================================================================== --- head/devel/liblas12/files/patch-src_detail_file.cpp (nonexistent) +++ head/devel/liblas12/files/patch-src_detail_file.cpp (revision 467861) @@ -0,0 +1,15 @@ +--- src/detail/file.cpp.orig 2009-10-02 17:48:41 UTC ++++ src/detail/file.cpp +@@ -40,9 +40,9 @@ + * OF SUCH DAMAGE. + ****************************************************************************/ + +-#include +-#include +-#include ++#include ++#include ++#include + #include + #include + #include Property changes on: head/devel/liblas12/files/patch-src_detail_file.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-src_detail_reader.cpp =================================================================== --- head/devel/liblas12/files/patch-src_detail_reader.cpp (nonexistent) +++ head/devel/liblas12/files/patch-src_detail_reader.cpp (revision 467861) @@ -0,0 +1,21 @@ +--- src/detail/reader.cpp.orig 2009-10-02 17:48:41 UTC ++++ src/detail/reader.cpp +@@ -39,12 +39,12 @@ + * OF SUCH DAMAGE. + ****************************************************************************/ + +-#include +-#include +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include ++#include ++#include + // + // // GeoTIFF + // #ifdef HAVE_LIBGEOTIFF Property changes on: head/devel/liblas12/files/patch-src_detail_reader.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-src_detail_reader10.cpp =================================================================== --- head/devel/liblas12/files/patch-src_detail_reader10.cpp (nonexistent) +++ head/devel/liblas12/files/patch-src_detail_reader10.cpp (revision 467861) @@ -0,0 +1,21 @@ +--- src/detail/reader10.cpp.orig 2009-10-02 17:48:41 UTC ++++ src/detail/reader10.cpp +@@ -39,12 +39,12 @@ + * OF SUCH DAMAGE. + ****************************************************************************/ + +-#include +-#include +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include ++#include ++#include + + // std + #include Property changes on: head/devel/liblas12/files/patch-src_detail_reader10.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-src_detail_reader11.cpp =================================================================== --- head/devel/liblas12/files/patch-src_detail_reader11.cpp (nonexistent) +++ head/devel/liblas12/files/patch-src_detail_reader11.cpp (revision 467861) @@ -0,0 +1,21 @@ +--- src/detail/reader11.cpp.orig 2009-10-02 17:48:41 UTC ++++ src/detail/reader11.cpp +@@ -39,12 +39,12 @@ + * OF SUCH DAMAGE. + ****************************************************************************/ + +-#include +-#include +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include ++#include ++#include + + // std + #include Property changes on: head/devel/liblas12/files/patch-src_detail_reader11.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-src_detail_reader12.cpp =================================================================== --- head/devel/liblas12/files/patch-src_detail_reader12.cpp (nonexistent) +++ head/devel/liblas12/files/patch-src_detail_reader12.cpp (revision 467861) @@ -0,0 +1,23 @@ +--- src/detail/reader12.cpp.orig 2009-10-02 17:48:41 UTC ++++ src/detail/reader12.cpp +@@ -39,13 +39,13 @@ + * OF SUCH DAMAGE. + ****************************************************************************/ + +-#include +-#include +-#include +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include + + // std + #include Property changes on: head/devel/liblas12/files/patch-src_detail_reader12.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-src_detail_writer.cpp =================================================================== --- head/devel/liblas12/files/patch-src_detail_writer.cpp (nonexistent) +++ head/devel/liblas12/files/patch-src_detail_writer.cpp (revision 467861) @@ -0,0 +1,23 @@ +--- src/detail/writer.cpp.orig 2009-10-02 17:48:41 UTC ++++ src/detail/writer.cpp +@@ -39,13 +39,13 @@ + * OF SUCH DAMAGE. + ****************************************************************************/ + +-#include +-#include +-#include +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include + + #ifdef HAVE_GDAL + #include Property changes on: head/devel/liblas12/files/patch-src_detail_writer.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-src_detail_writer10.cpp =================================================================== --- head/devel/liblas12/files/patch-src_detail_writer10.cpp (nonexistent) +++ head/devel/liblas12/files/patch-src_detail_writer10.cpp (revision 467861) @@ -0,0 +1,19 @@ +--- src/detail/writer10.cpp.orig 2009-10-02 17:48:41 UTC ++++ src/detail/writer10.cpp +@@ -39,11 +39,11 @@ + * OF SUCH DAMAGE. + ****************************************************************************/ + +-#include +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include ++#include + // std + #include + #include Property changes on: head/devel/liblas12/files/patch-src_detail_writer10.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-src_detail_writer11.cpp =================================================================== --- head/devel/liblas12/files/patch-src_detail_writer11.cpp (nonexistent) +++ head/devel/liblas12/files/patch-src_detail_writer11.cpp (revision 467861) @@ -0,0 +1,19 @@ +--- src/detail/writer11.cpp.orig 2009-10-02 17:48:41 UTC ++++ src/detail/writer11.cpp +@@ -39,11 +39,11 @@ + * OF SUCH DAMAGE. + ****************************************************************************/ + +-#include +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include ++#include + // std + #include + #include Property changes on: head/devel/liblas12/files/patch-src_detail_writer11.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-src_detail_writer12.cpp =================================================================== --- head/devel/liblas12/files/patch-src_detail_writer12.cpp (nonexistent) +++ head/devel/liblas12/files/patch-src_detail_writer12.cpp (revision 467861) @@ -0,0 +1,19 @@ +--- src/detail/writer12.cpp.orig 2009-10-02 17:48:41 UTC ++++ src/detail/writer12.cpp +@@ -39,11 +39,11 @@ + * OF SUCH DAMAGE. + ****************************************************************************/ + +-#include +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include ++#include + // std + #include + #include Property changes on: head/devel/liblas12/files/patch-src_detail_writer12.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-src_las__c__api.cpp =================================================================== --- head/devel/liblas12/files/patch-src_las__c__api.cpp (revision 467860) +++ head/devel/liblas12/files/patch-src_las__c__api.cpp (revision 467861) @@ -1,20 +1,49 @@ --- src/las_c_api.cpp.orig 2009-10-02 17:48:41 UTC +++ src/las_c_api.cpp +@@ -41,17 +41,17 @@ + * OF SUCH DAMAGE. + ****************************************************************************/ + +-#include +-#include +-#include +-#include +-#include +-#include +-#include +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include + + typedef struct LASWriterHS *LASWriterH; + typedef struct LASReaderHS *LASReaderH; @@ -745,7 +745,7 @@ LAS_DLL LASErrorEnum LASHeader_SetProjectId(LASHeaderH try { liblas::guid id; - id = liblas::guid::guid(value); + id = liblas::guid(value); ((LASHeader*) hHeader)->SetProjectId(id); } catch (std::exception const& e) { @@ -1542,7 +1542,7 @@ LAS_DLL LASGuidH LASGuid_CreateFromString(const char* VALIDATE_LAS_POINTER1(string, "LASGuid_CreateFromString", NULL); liblas::guid id; try { - id = liblas::guid::guid(string); + id = liblas::guid(string); return (LASGuidH) new liblas::guid(id); } catch (std::exception const& e) { Index: head/devel/liblas12/files/patch-src_lascolor.cpp =================================================================== --- head/devel/liblas12/files/patch-src_lascolor.cpp (nonexistent) +++ head/devel/liblas12/files/patch-src_lascolor.cpp (revision 467861) @@ -0,0 +1,13 @@ +--- src/lascolor.cpp.orig 2009-10-02 17:48:41 UTC ++++ src/lascolor.cpp +@@ -39,8 +39,8 @@ + * OF SUCH DAMAGE. + ****************************************************************************/ + +-#include +-#include ++#include ++#include + + // std + #include Property changes on: head/devel/liblas12/files/patch-src_lascolor.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-src_laserror.cpp =================================================================== --- head/devel/liblas12/files/patch-src_laserror.cpp (nonexistent) +++ head/devel/liblas12/files/patch-src_laserror.cpp (revision 467861) @@ -0,0 +1,13 @@ +--- src/laserror.cpp.orig 2009-10-02 17:48:41 UTC ++++ src/laserror.cpp +@@ -41,8 +41,8 @@ + * OF SUCH DAMAGE. + ****************************************************************************/ + +-#include +-#include ++#include ++#include + //std + #include + Property changes on: head/devel/liblas12/files/patch-src_laserror.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-src_lasfile.cpp =================================================================== --- head/devel/liblas12/files/patch-src_lasfile.cpp (nonexistent) +++ head/devel/liblas12/files/patch-src_lasfile.cpp (revision 467861) @@ -0,0 +1,15 @@ +--- src/lasfile.cpp.orig 2009-10-02 17:48:41 UTC ++++ src/lasfile.cpp +@@ -40,9 +40,9 @@ + * OF SUCH DAMAGE. + ****************************************************************************/ + +-#include +-#include +-#include ++#include ++#include ++#include + + #include + #include Property changes on: head/devel/liblas12/files/patch-src_lasfile.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-src_lasheader.cpp =================================================================== --- head/devel/liblas12/files/patch-src_lasheader.cpp (nonexistent) +++ head/devel/liblas12/files/patch-src_lasheader.cpp (revision 467861) @@ -0,0 +1,19 @@ +--- src/lasheader.cpp.orig 2009-10-02 17:48:41 UTC ++++ src/lasheader.cpp +@@ -40,11 +40,11 @@ + * OF SUCH DAMAGE. + ****************************************************************************/ + +-#include +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include ++#include + + // GeoTIFF + #ifdef HAVE_LIBGEOTIFF Property changes on: head/devel/liblas12/files/patch-src_lasheader.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-src_laspoint.cpp =================================================================== --- head/devel/liblas12/files/patch-src_laspoint.cpp (nonexistent) +++ head/devel/liblas12/files/patch-src_laspoint.cpp (revision 467861) @@ -0,0 +1,19 @@ +--- src/laspoint.cpp.orig 2009-10-02 17:48:41 UTC ++++ src/laspoint.cpp +@@ -39,11 +39,11 @@ + * OF SUCH DAMAGE. + ****************************************************************************/ + +-#include +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include ++#include + // std + #include + Property changes on: head/devel/liblas12/files/patch-src_laspoint.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-src_lasreader.cpp =================================================================== --- head/devel/liblas12/files/patch-src_lasreader.cpp (nonexistent) +++ head/devel/liblas12/files/patch-src_lasreader.cpp (revision 467861) @@ -0,0 +1,13 @@ +--- src/lasreader.cpp.orig 2009-10-02 17:48:41 UTC ++++ src/lasreader.cpp +@@ -40,8 +40,8 @@ + * OF SUCH DAMAGE. + ****************************************************************************/ + +-#include +-#include ++#include ++#include + // std + #include + #include Property changes on: head/devel/liblas12/files/patch-src_lasreader.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-src_lasspatialreference.cpp =================================================================== --- head/devel/liblas12/files/patch-src_lasspatialreference.cpp (nonexistent) +++ head/devel/liblas12/files/patch-src_lasspatialreference.cpp (revision 467861) @@ -0,0 +1,13 @@ +--- src/lasspatialreference.cpp.orig 2009-10-02 17:48:41 UTC ++++ src/lasspatialreference.cpp +@@ -39,8 +39,8 @@ + * OF SUCH DAMAGE. + ****************************************************************************/ + +-#include +-#include ++#include ++#include + #include + + namespace liblas Property changes on: head/devel/liblas12/files/patch-src_lasspatialreference.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-src_lasvariablerecord.cpp =================================================================== --- head/devel/liblas12/files/patch-src_lasvariablerecord.cpp (nonexistent) +++ head/devel/liblas12/files/patch-src_lasvariablerecord.cpp (revision 467861) @@ -0,0 +1,13 @@ +--- src/lasvariablerecord.cpp.orig 2009-10-02 17:48:41 UTC ++++ src/lasvariablerecord.cpp +@@ -41,8 +41,8 @@ + * OF SUCH DAMAGE. + ****************************************************************************/ + +-#include +-#include ++#include ++#include + // std + #include + #include Property changes on: head/devel/liblas12/files/patch-src_lasvariablerecord.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-src_laswriter.cpp =================================================================== --- head/devel/liblas12/files/patch-src_laswriter.cpp (nonexistent) +++ head/devel/liblas12/files/patch-src_laswriter.cpp (revision 467861) @@ -0,0 +1,13 @@ +--- src/laswriter.cpp.orig 2009-10-02 17:48:41 UTC ++++ src/laswriter.cpp +@@ -39,8 +39,8 @@ + * OF SUCH DAMAGE. + ****************************************************************************/ + +-#include +-#include ++#include ++#include + // std + #include + #include Property changes on: head/devel/liblas12/files/patch-src_laswriter.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-test_unit_Makefile.am =================================================================== --- head/devel/liblas12/files/patch-test_unit_Makefile.am (nonexistent) +++ head/devel/liblas12/files/patch-test_unit_Makefile.am (revision 467861) @@ -0,0 +1,11 @@ +--- test/unit/Makefile.am.orig 2009-10-02 17:48:41 UTC ++++ test/unit/Makefile.am +@@ -16,7 +16,7 @@ TESTS = liblas_test + check_PROGRAMS = liblas_test + + liblas_test_LDADD = \ +- $(top_builddir)/src/liblas.la \ ++ $(top_builddir)/src/liblas12.la \ + $(NULL) + + liblas_test_SOURCES = \ Property changes on: head/devel/liblas12/files/patch-test_unit_Makefile.am ___________________________________________________________________ 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: head/devel/liblas12/files/patch-test_unit_common.cpp =================================================================== --- head/devel/liblas12/files/patch-test_unit_common.cpp (nonexistent) +++ head/devel/liblas12/files/patch-test_unit_common.cpp (revision 467861) @@ -0,0 +1,15 @@ +--- test/unit/common.cpp.orig 2009-10-02 17:48:41 UTC ++++ test/unit/common.cpp +@@ -5,9 +5,9 @@ + // (See accompanying file LICENSE.txt or copy at + // http://www.opensource.org/licenses/bsd-license.php) + // +-#include +-#include +-#include ++#include ++#include ++#include + #include + #include "common.hpp" + Property changes on: head/devel/liblas12/files/patch-test_unit_common.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-test_unit_common.hpp =================================================================== --- head/devel/liblas12/files/patch-test_unit_common.hpp (nonexistent) +++ head/devel/liblas12/files/patch-test_unit_common.hpp (revision 467861) @@ -0,0 +1,15 @@ +--- test/unit/common.hpp.orig 2009-10-02 17:48:41 UTC ++++ test/unit/common.hpp +@@ -5,9 +5,9 @@ + // (See accompanying file LICENSE.txt or copy at + // http://www.opensource.org/licenses/bsd-license.php) + // +-#include +-#include +-#include ++#include ++#include ++#include + + + namespace tut Property changes on: head/devel/liblas12/files/patch-test_unit_common.hpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-test_unit_guid__test.cpp =================================================================== --- head/devel/liblas12/files/patch-test_unit_guid__test.cpp (nonexistent) +++ head/devel/liblas12/files/patch-test_unit_guid__test.cpp (revision 467861) @@ -0,0 +1,13 @@ +--- test/unit/guid_test.cpp.orig 2009-10-02 17:48:41 UTC ++++ test/unit/guid_test.cpp +@@ -5,8 +5,8 @@ + // (See accompanying file LICENSE.txt or copy at + // http://www.opensource.org/licenses/bsd-license.php) + // +-#include +-#include ++#include ++#include + #include + #include + #include // std::std::transform Property changes on: head/devel/liblas12/files/patch-test_unit_guid__test.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-test_unit_laserror__test.cpp =================================================================== --- head/devel/liblas12/files/patch-test_unit_laserror__test.cpp (nonexistent) +++ head/devel/liblas12/files/patch-test_unit_laserror__test.cpp (revision 467861) @@ -0,0 +1,11 @@ +--- test/unit/laserror_test.cpp.orig 2009-10-02 17:48:41 UTC ++++ test/unit/laserror_test.cpp +@@ -5,7 +5,7 @@ + // (See accompanying file LICENSE.txt or copy at + // http://www.opensource.org/licenses/bsd-license.php) + // +-#include ++#include + #include + #include + Property changes on: head/devel/liblas12/files/patch-test_unit_laserror__test.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-test_unit_lasfile__test.cpp =================================================================== --- head/devel/liblas12/files/patch-test_unit_lasfile__test.cpp (nonexistent) +++ head/devel/liblas12/files/patch-test_unit_lasfile__test.cpp (revision 467861) @@ -0,0 +1,17 @@ +--- test/unit/lasfile_test.cpp.orig 2009-10-02 17:48:41 UTC ++++ test/unit/lasfile_test.cpp +@@ -5,10 +5,10 @@ + // (See accompanying file LICENSE.txt or copy at + // http://www.opensource.org/licenses/bsd-license.php) + // +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include + #include + #include + #include Property changes on: head/devel/liblas12/files/patch-test_unit_lasfile__test.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-test_unit_lasheader__test.cpp =================================================================== --- head/devel/liblas12/files/patch-test_unit_lasheader__test.cpp (nonexistent) +++ head/devel/liblas12/files/patch-test_unit_lasheader__test.cpp (revision 467861) @@ -0,0 +1,17 @@ +--- test/unit/lasheader_test.cpp.orig 2009-10-02 17:48:41 UTC ++++ test/unit/lasheader_test.cpp +@@ -5,10 +5,10 @@ + // (See accompanying file LICENSE.txt or copy at + // http://www.opensource.org/licenses/bsd-license.php) + // +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include + #include + #include + #include Property changes on: head/devel/liblas12/files/patch-test_unit_lasheader__test.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-test_unit_laspoint__test.cpp =================================================================== --- head/devel/liblas12/files/patch-test_unit_laspoint__test.cpp (nonexistent) +++ head/devel/liblas12/files/patch-test_unit_laspoint__test.cpp (revision 467861) @@ -0,0 +1,15 @@ +--- test/unit/laspoint_test.cpp.orig 2009-10-02 17:48:41 UTC ++++ test/unit/laspoint_test.cpp +@@ -5,9 +5,9 @@ + // (See accompanying file LICENSE.txt or copy at + // http://www.opensource.org/licenses/bsd-license.php) + // +-#include +-#include +-#include ++#include ++#include ++#include + #include + #include + #include Property changes on: head/devel/liblas12/files/patch-test_unit_laspoint__test.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-test_unit_lasreader__iterator__test.cpp =================================================================== --- head/devel/liblas12/files/patch-test_unit_lasreader__iterator__test.cpp (nonexistent) +++ head/devel/liblas12/files/patch-test_unit_lasreader__iterator__test.cpp (revision 467861) @@ -0,0 +1,19 @@ +--- test/unit/lasreader_iterator_test.cpp.orig 2009-10-02 17:48:41 UTC ++++ test/unit/lasreader_iterator_test.cpp +@@ -5,11 +5,11 @@ + // (See accompanying file LICENSE.txt or copy at + // http://www.opensource.org/licenses/bsd-license.php) + // +-#include +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include ++#include + #include + #include + #include Property changes on: head/devel/liblas12/files/patch-test_unit_lasreader__iterator__test.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-test_unit_lasreader__test.cpp =================================================================== --- head/devel/liblas12/files/patch-test_unit_lasreader__test.cpp (nonexistent) +++ head/devel/liblas12/files/patch-test_unit_lasreader__test.cpp (revision 467861) @@ -0,0 +1,19 @@ +--- test/unit/lasreader_test.cpp.orig 2009-10-02 17:48:41 UTC ++++ test/unit/lasreader_test.cpp +@@ -5,11 +5,11 @@ + // (See accompanying file LICENSE.txt or copy at + // http://www.opensource.org/licenses/bsd-license.php) + // +-#include +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include ++#include + #include + #include + #include Property changes on: head/devel/liblas12/files/patch-test_unit_lasreader__test.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-test_unit_lasspatialreference__test.cpp =================================================================== --- head/devel/liblas12/files/patch-test_unit_lasspatialreference__test.cpp (nonexistent) +++ head/devel/liblas12/files/patch-test_unit_lasspatialreference__test.cpp (revision 467861) @@ -0,0 +1,15 @@ +--- test/unit/lasspatialreference_test.cpp.orig 2009-10-02 17:48:41 UTC ++++ test/unit/lasspatialreference_test.cpp +@@ -5,9 +5,9 @@ + // (See accompanying file LICENSE.txt or copy at + // http://www.opensource.org/licenses/bsd-license.php) + // +-#include +-#include +-#include ++#include ++#include ++#include + #include + #include + #include Property changes on: head/devel/liblas12/files/patch-test_unit_lasspatialreference__test.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-test_unit_lasvariablerecord__test.cpp =================================================================== --- head/devel/liblas12/files/patch-test_unit_lasvariablerecord__test.cpp (nonexistent) +++ head/devel/liblas12/files/patch-test_unit_lasvariablerecord__test.cpp (revision 467861) @@ -0,0 +1,13 @@ +--- test/unit/lasvariablerecord_test.cpp.orig 2009-10-02 17:48:41 UTC ++++ test/unit/lasvariablerecord_test.cpp +@@ -5,8 +5,8 @@ + // (See accompanying file LICENSE.txt or copy at + // http://www.opensource.org/licenses/bsd-license.php) + // +-#include +-#include ++#include ++#include + #include + #include + Property changes on: head/devel/liblas12/files/patch-test_unit_lasvariablerecord__test.cpp ___________________________________________________________________ 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: head/devel/liblas12/files/patch-test_unit_laswriter__test.cpp =================================================================== --- head/devel/liblas12/files/patch-test_unit_laswriter__test.cpp (nonexistent) +++ head/devel/liblas12/files/patch-test_unit_laswriter__test.cpp (revision 467861) @@ -0,0 +1,21 @@ +--- test/unit/laswriter_test.cpp.orig 2009-10-02 17:48:41 UTC ++++ test/unit/laswriter_test.cpp +@@ -5,12 +5,12 @@ + // (See accompanying file LICENSE.txt or copy at + // http://www.opensource.org/licenses/bsd-license.php) + // +-#include +-#include +-#include +-#include +-#include +-#include ++#include ++#include ++#include ++#include ++#include ++#include + #include + #include + #include Property changes on: head/devel/liblas12/files/patch-test_unit_laswriter__test.cpp ___________________________________________________________________ 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: head/devel/liblas12/pkg-plist =================================================================== --- head/devel/liblas12/pkg-plist (revision 467860) +++ head/devel/liblas12/pkg-plist (revision 467861) @@ -1,42 +1,42 @@ -bin/las2las -bin/las2txt -bin/lasinfo -bin/lasmerge -bin/liblas-config -bin/txt2las -include/liblas/capi/las_config.h -include/liblas/capi/las_version.h -include/liblas/capi/liblas.h -include/liblas/cstdint.hpp -include/liblas/detail/endian.hpp -include/liblas/detail/file.hpp -include/liblas/detail/fwd.hpp -include/liblas/detail/reader.hpp -include/liblas/detail/reader10.hpp -include/liblas/detail/reader11.hpp -include/liblas/detail/reader12.hpp -include/liblas/detail/sha1.hpp -include/liblas/detail/sharedptr.hpp -include/liblas/detail/timer.hpp -include/liblas/detail/utility.hpp -include/liblas/detail/writer.hpp -include/liblas/detail/writer10.hpp -include/liblas/detail/writer11.hpp -include/liblas/detail/writer12.hpp -include/liblas/exception.hpp -include/liblas/guid.hpp -include/liblas/iterator.hpp -include/liblas/lascolor.hpp -include/liblas/laserror.hpp -include/liblas/lasfile.hpp -include/liblas/lasheader.hpp -include/liblas/laspoint.hpp -include/liblas/lasreader.hpp -include/liblas/lasspatialreference.hpp -include/liblas/lasvariablerecord.hpp -include/liblas/laswriter.hpp -include/liblas/liblas.hpp -lib/liblas.a -lib/liblas.so -lib/liblas.so.1 -lib/liblas.so.1.0.0 +bin/las2las12 +bin/las2txt12 +bin/lasinfo12 +bin/lasmerge12 +bin/liblas12-config +bin/txt2las12 +include/liblas12/capi/las_config.h +include/liblas12/capi/las_version.h +include/liblas12/capi/liblas.h +include/liblas12/cstdint.hpp +include/liblas12/detail/endian.hpp +include/liblas12/detail/file.hpp +include/liblas12/detail/fwd.hpp +include/liblas12/detail/reader.hpp +include/liblas12/detail/reader10.hpp +include/liblas12/detail/reader11.hpp +include/liblas12/detail/reader12.hpp +include/liblas12/detail/sha1.hpp +include/liblas12/detail/sharedptr.hpp +include/liblas12/detail/timer.hpp +include/liblas12/detail/utility.hpp +include/liblas12/detail/writer.hpp +include/liblas12/detail/writer10.hpp +include/liblas12/detail/writer11.hpp +include/liblas12/detail/writer12.hpp +include/liblas12/exception.hpp +include/liblas12/guid.hpp +include/liblas12/iterator.hpp +include/liblas12/lascolor.hpp +include/liblas12/laserror.hpp +include/liblas12/lasfile.hpp +include/liblas12/lasheader.hpp +include/liblas12/laspoint.hpp +include/liblas12/lasreader.hpp +include/liblas12/lasspatialreference.hpp +include/liblas12/lasvariablerecord.hpp +include/liblas12/laswriter.hpp +include/liblas12/liblas.hpp +lib/liblas12.a +lib/liblas12.so +lib/liblas12.so.1 +lib/liblas12.so.1.0.0