From owner-svn-ports-head@freebsd.org Sun Jan 19 17:50:28 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 771F11FFB81; Sun, 19 Jan 2020 17:50:28 +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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4812QD0ptzz4WHx; Sun, 19 Jan 2020 17:50:28 +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 173CCE8D2; Sun, 19 Jan 2020 17:50:28 +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 00JHoRA3031157; Sun, 19 Jan 2020 17:50:27 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 00JHoRxK031153; Sun, 19 Jan 2020 17:50:27 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202001191750.00JHoRxK031153@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 19 Jan 2020 17:50:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r523585 - in head/math: . poly2tri X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/math: . poly2tri X-SVN-Commit-Revision: 523585 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: Sun, 19 Jan 2020 17:50:28 -0000 Author: yuri Date: Sun Jan 19 17:50:26 2020 New Revision: 523585 URL: https://svnweb.freebsd.org/changeset/ports/523585 Log: New port: math/poly2tri: 2D constrained Delaunay triangulation library Added: head/math/poly2tri/ head/math/poly2tri/Makefile (contents, props changed) head/math/poly2tri/distinfo (contents, props changed) head/math/poly2tri/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Sun Jan 19 17:41:49 2020 (r523584) +++ head/math/Makefile Sun Jan 19 17:50:26 2020 (r523585) @@ -672,6 +672,7 @@ SUBDIR += ploticus-nox11 SUBDIR += plplot SUBDIR += plplot-ada + SUBDIR += poly2tri SUBDIR += polylib SUBDIR += primegen SUBDIR += primesieve Added: head/math/poly2tri/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/poly2tri/Makefile Sun Jan 19 17:50:26 2020 (r523585) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= poly2tri +DISTVERSION= g20191130 +CATEGORIES= math + +MAINTAINER= yuri@FreeBSD.org +COMMENT= 2D constrained Delaunay triangulation library + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libglfw.so:graphics/glfw + +USES= gl localbase:ldflags waf +USE_GITHUB= yes +GH_ACCOUNT= jhasse +GH_TAGNAME= e6e63dd29ef0805b3e40fe1832c2f1fe2307943a +USE_GL= gl + +PLIST_FILES= bin/p2t + +post-stage: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/p2t + +.include Added: head/math/poly2tri/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/poly2tri/distinfo Sun Jan 19 17:50:26 2020 (r523585) @@ -0,0 +1,3 @@ +TIMESTAMP = 1579454830 +SHA256 (jhasse-poly2tri-g20191130-e6e63dd29ef0805b3e40fe1832c2f1fe2307943a_GH0.tar.gz) = 4c8c67b4495992742592f8da95447193f14d439e92f8fb8b03470b1a25ae02a9 +SIZE (jhasse-poly2tri-g20191130-e6e63dd29ef0805b3e40fe1832c2f1fe2307943a_GH0.tar.gz) = 254974 Added: head/math/poly2tri/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/poly2tri/pkg-descr Sun Jan 19 17:50:26 2020 (r523585) @@ -0,0 +1,3 @@ +2D constrained Delaunay triangulation library. + +WWW: https://github.com/jhasse/poly2tri