svn commit: r523585 - in head/math: . poly2tri

Yuri Victorovich yuri at FreeBSD.org
Sun Jan 19 17:50:28 UTC 2020


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 at 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 <bsd.port.mk>

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


More information about the svn-ports-all mailing list