svn commit: r563608 - in head/x11-toolkits: . nuklear

Yuri Victorovich yuri at FreeBSD.org
Mon Feb 1 19:18:34 UTC 2021


Author: yuri
Date: Mon Feb  1 19:18:33 2021
New Revision: 563608
URL: https://svnweb.freebsd.org/changeset/ports/563608

Log:
  New port: x11-toolkits/nuklear: Minimal-state, immediate-mode graphical user interface toolkit

Added:
  head/x11-toolkits/nuklear/
  head/x11-toolkits/nuklear/Makefile   (contents, props changed)
  head/x11-toolkits/nuklear/distinfo   (contents, props changed)
  head/x11-toolkits/nuklear/pkg-descr   (contents, props changed)
Modified:
  head/x11-toolkits/Makefile

Modified: head/x11-toolkits/Makefile
==============================================================================
--- head/x11-toolkits/Makefile	Mon Feb  1 18:51:20 2021	(r563607)
+++ head/x11-toolkits/Makefile	Mon Feb  1 19:18:33 2021	(r563608)
@@ -99,6 +99,7 @@
     SUBDIR += nanogui
     SUBDIR += neXtaw
     SUBDIR += ntk
+    SUBDIR += nuklear
     SUBDIR += ocaml-lablgtk2
     SUBDIR += ocaml-labltk
     SUBDIR += open-motif

Added: head/x11-toolkits/nuklear/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-toolkits/nuklear/Makefile	Mon Feb  1 19:18:33 2021	(r563608)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME=	nuklear
+PORTVERSION=	g20201229
+CATEGORIES=	x11-toolkits
+
+MAINTAINER=	yuri at FreeBSD.org
+COMMENT=	Minimal-state, immediate-mode graphical user interface toolkit
+
+LICENSE=	MIT PD
+LICENSE_COMB=	dual
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	Immediate-Mode-UI
+GH_PROJECT=	Nuklear
+GH_TAGNAME=	4a74982
+
+NO_BUILD=	yes
+NO_ARCH=	yes
+
+PLIST_FILES=	include/nuklear.h
+
+do-install:
+	${INSTALL_DATA} ${WRKSRC}/nuklear.h ${STAGEDIR}${PREFIX}/include
+
+.include <bsd.port.mk>

Added: head/x11-toolkits/nuklear/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-toolkits/nuklear/distinfo	Mon Feb  1 19:18:33 2021	(r563608)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1612206830
+SHA256 (Immediate-Mode-UI-Nuklear-g20201229-4a74982_GH0.tar.gz) = 81defa1741887a8a4fc61f5873d520af3d3d6bb10ec28019713f5a9a60950e83
+SIZE (Immediate-Mode-UI-Nuklear-g20201229-4a74982_GH0.tar.gz) = 1952127

Added: head/x11-toolkits/nuklear/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-toolkits/nuklear/pkg-descr	Mon Feb  1 19:18:33 2021	(r563608)
@@ -0,0 +1,10 @@
+This is a minimal-state, immediate-mode graphical user interface toolkit written
+in ANSI C and licensed under public domain. It was designed as a simple
+embeddable user interface for application and does not have any dependencies, a
+default render backend or OS window/input handling but instead provides a highly
+modular, library-based approach, with simple input state for input and draw
+commands describing primitive shapes as output. So instead of providing a
+layered library that tries to abstract over a number of platform and render
+backends, it focuses only on the actual UI.
+
+WWW: https://github.com/Immediate-Mode-UI/Nuklear


More information about the svn-ports-all mailing list