From owner-svn-ports-head@freebsd.org Mon Oct 29 00:04:41 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A9B2010EA32B; Mon, 29 Oct 2018 00:04:41 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5F1EE76086; Mon, 29 Oct 2018 00:04:41 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 207EC26895; Mon, 29 Oct 2018 00:04:41 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9T04eQ5096157; Mon, 29 Oct 2018 00:04:40 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9T04eTS096153; Mon, 29 Oct 2018 00:04:40 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201810290004.w9T04eTS096153@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 29 Oct 2018 00:04:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483360 - in head/misc: . lastools X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/misc: . lastools X-SVN-Commit-Revision: 483360 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Oct 2018 00:04:41 -0000 Author: yuri Date: Mon Oct 29 00:04:39 2018 New Revision: 483360 URL: https://svnweb.freebsd.org/changeset/ports/483360 Log: New port: misc/lastools: Efficient tools for LiDAR processing Added: head/misc/lastools/ head/misc/lastools/Makefile (contents, props changed) head/misc/lastools/distinfo (contents, props changed) head/misc/lastools/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Sun Oct 28 22:31:54 2018 (r483359) +++ head/misc/Makefile Mon Oct 29 00:04:39 2018 (r483360) @@ -257,6 +257,7 @@ SUBDIR += ktouch-kde4 SUBDIR += kwordquiz SUBDIR += kwordquiz-kde4 + SUBDIR += lastools SUBDIR += latex-mk SUBDIR += lazyread SUBDIR += lc Added: head/misc/lastools/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/lastools/Makefile Mon Oct 29 00:04:39 2018 (r483360) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= LAStools +DISTVERSION= g20181019 +CATEGORIES= misc + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Efficient tools for LiDAR processing + +LICENSE= LGPL21 + +USES= gmake +USE_GITHUB= yes +GH_TAGNAME= 8ff2694 + +BINARY_ALIAS= make=gmake g++=${CXX} + +PLIST_FILES= ${EXECUTABLES:S/^/bin\//} + +EXECUTABLES= lasindex las2txt las2las txt2las lasdiff lasinfo laszip lasmerge lasprecision + +do-install: +.for e in ${EXECUTABLES} + ${INSTALL_PROGRAM} ${WRKSRC}/bin/${e} ${STAGEDIR}${PREFIX}/bin +.endfor + +.include Added: head/misc/lastools/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/lastools/distinfo Mon Oct 29 00:04:39 2018 (r483360) @@ -0,0 +1,3 @@ +TIMESTAMP = 1540770649 +SHA256 (LAStools-LAStools-g20181019-8ff2694_GH0.tar.gz) = 5ea40630be54b84da06b83f67087a19be48c78de5dce3a41c96a469c018fd0c2 +SIZE (LAStools-LAStools-g20181019-8ff2694_GH0.tar.gz) = 46163475 Added: head/misc/lastools/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/lastools/pkg-descr Mon Oct 29 00:04:39 2018 (r483360) @@ -0,0 +1,8 @@ +LAStools is collection of highly efficient, batch-scriptable, multicore command +line tools. We have tools to classify, tile, convert, filter, raster, +triangulate, contour, clip, and polygonize LiDAR data (to name just a few +functions). All of the tools can also be run via a native GUI and are available +as a LiDAR processing toolboxes for ArcGIS versions 9.3 and up, for QGIS +versions 1.8 and up, and for ERDAS IMAGINE versions 14.0 and up. + +WWW: https://rapidlasso.com/lastools/