From owner-svn-ports-head@freebsd.org Fri Jan 15 07:59:53 2021 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 CA9324DB431; Fri, 15 Jan 2021 07:59:53 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DHD9j4SzDz4Ydw; Fri, 15 Jan 2021 07:59:53 +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 8C2DE18FC5; Fri, 15 Jan 2021 07:59:53 +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 10F7xrx2077806; Fri, 15 Jan 2021 07:59:53 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 10F7xqFo077800; Fri, 15 Jan 2021 07:59:52 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202101150759.10F7xqFo077800@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 15 Jan 2021 07:59:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r561623 - in head/graphics: . nanort X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/graphics: . nanort X-SVN-Commit-Revision: 561623 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.34 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: Fri, 15 Jan 2021 07:59:53 -0000 Author: yuri Date: Fri Jan 15 07:59:52 2021 New Revision: 561623 URL: https://svnweb.freebsd.org/changeset/ports/561623 Log: New port: graphics/nanort: C++ single header modern ray tracing kernel Added: head/graphics/nanort/ head/graphics/nanort/Makefile (contents, props changed) head/graphics/nanort/distinfo (contents, props changed) head/graphics/nanort/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Fri Jan 15 07:58:34 2021 (r561622) +++ head/graphics/Makefile Fri Jan 15 07:59:52 2021 (r561623) @@ -561,6 +561,7 @@ SUBDIR += mypaint SUBDIR += mypaint-brushes SUBDIR += mypaint-brushes2 + SUBDIR += nanort SUBDIR += nanosvg SUBDIR += netpbm SUBDIR += nip2 Added: head/graphics/nanort/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/nanort/Makefile Fri Jan 15 07:59:52 2021 (r561623) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= nanort +DISTVERSIONPREFIX= v +DISTVERSION= g20201207 +CATEGORIES= graphics devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= C++ single header modern ray tracing kernel + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= lighttransport +GH_TAGNAME= b1feea8 + +NO_BUILD= yes +NO_ARCH= yes + +PLIST_FILES= include/nanort.h + +do-install: + cd ${WRKSRC} && ${INSTALL_DATA} nanort.h ${STAGEDIR}${PREFIX}/include + +.include Added: head/graphics/nanort/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/nanort/distinfo Fri Jan 15 07:59:52 2021 (r561623) @@ -0,0 +1,3 @@ +TIMESTAMP = 1610696858 +SHA256 (lighttransport-nanort-vg20201207-b1feea8_GH0.tar.gz) = dbef5d354a1ae87cd0eb1bc334bd3bf7490129ec141fc47cdcf271d5103532a2 +SIZE (lighttransport-nanort-vg20201207-b1feea8_GH0.tar.gz) = 28881531 Added: head/graphics/nanort/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/nanort/pkg-descr Fri Jan 15 07:59:52 2021 (r561623) @@ -0,0 +1,3 @@ +NanoRT is simple single header only ray tracing kernel. + +WWW: https://github.com/lighttransport/nanort