From owner-svn-ports-all@freebsd.org Fri Mar 13 18:58:20 2020 Return-Path: Delivered-To: svn-ports-all@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 3B591267921; Fri, 13 Mar 2020 18:58:20 +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 48fFMb73mMz4npM; Fri, 13 Mar 2020 18:58:19 +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 BC723A9E6; Fri, 13 Mar 2020 18:58:19 +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 02DIwJWA099411; Fri, 13 Mar 2020 18:58:19 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02DIwI39099403; Fri, 13 Mar 2020 18:58:18 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202003131858.02DIwI39099403@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 13 Mar 2020 18:58:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r528372 - in head/devel: . stb X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . stb X-SVN-Commit-Revision: 528372 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Mar 2020 18:58:20 -0000 Author: yuri Date: Fri Mar 13 18:58:18 2020 New Revision: 528372 URL: https://svnweb.freebsd.org/changeset/ports/528372 Log: New port: devel/stb: Stb single-file public domain libraries for C/C++ Added: head/devel/stb/ head/devel/stb/Makefile (contents, props changed) head/devel/stb/distinfo (contents, props changed) head/devel/stb/pkg-descr (contents, props changed) head/devel/stb/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Mar 13 18:33:50 2020 (r528371) +++ head/devel/Makefile Fri Mar 13 18:58:18 2020 (r528372) @@ -6553,6 +6553,7 @@ SUBDIR += statcvs SUBDIR += statik SUBDIR += statsvn + SUBDIR += stb SUBDIR += stdx-allocator SUBDIR += stfl SUBDIR += stlfilt Added: head/devel/stb/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/stb/Makefile Fri Mar 13 18:58:18 2020 (r528372) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= stb +PORTVERSION= g20200205 +CATEGORIES= devel + +MAINTAINER= yuri@rawbw.com +COMMENT= Stb single-file public domain libraries for C/C++ + +LICENSE= PD +LICENSE_FILE= ${WRKSRC}/LICENSE + +USE_GITHUB= yes +GH_ACCOUNT= nothings +GH_TAGNAME= f54acd4 + +NO_BUILD= yes +NO_ARCH= yes + +do-install: + ${MKDIR} ${STAGEDIR}${PREFIX}/include/${PORTNAME} + cd ${WRKSRC} && ${CP} *.c *.h ${STAGEDIR}${PREFIX}/include/${PORTNAME} + +.include Added: head/devel/stb/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/stb/distinfo Fri Mar 13 18:58:18 2020 (r528372) @@ -0,0 +1,3 @@ +TIMESTAMP = 1584125795 +SHA256 (nothings-stb-g20200205-f54acd4_GH0.tar.gz) = 6d12f69416f55826123b61e91f4b4968a92afe40364b920807b8d118e0ac2771 +SIZE (nothings-stb-g20200205-f54acd4_GH0.tar.gz) = 1375608 Added: head/devel/stb/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/stb/pkg-descr Fri Mar 13 18:58:18 2020 (r528372) @@ -0,0 +1,10 @@ +single-file public domain (or MIT licensed) libraries for C/C++. + +Noteworthy: +* image loader: stb_image.h +* image writer: stb_image_write.h +* image resizer: stb_image_resize.h +* font text rasterizer: stb_truetype.h +* typesafe containers: stb_ds.h + +WWW: https://github.com/nothings/stb Added: head/devel/stb/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/stb/pkg-plist Fri Mar 13 18:58:18 2020 (r528372) @@ -0,0 +1,22 @@ +include/stb/stb.h +include/stb/stb_c_lexer.h +include/stb/stb_connected_components.h +include/stb/stb_divide.h +include/stb/stb_ds.h +include/stb/stb_dxt.h +include/stb/stb_easy_font.h +include/stb/stb_herringbone_wang_tile.h +include/stb/stb_image.h +include/stb/stb_image_resize.h +include/stb/stb_image_write.h +include/stb/stb_include.h +include/stb/stb_leakcheck.h +include/stb/stb_perlin.h +include/stb/stb_rect_pack.h +include/stb/stb_sprintf.h +include/stb/stb_textedit.h +include/stb/stb_tilemap_editor.h +include/stb/stb_truetype.h +include/stb/stb_vorbis.c +include/stb/stb_voxel_render.h +include/stb/stretchy_buffer.h