svn commit: r560732 - in head/graphics: . cbonsai

Joseph Mingrone jrm at FreeBSD.org
Thu Jan 7 20:04:37 UTC 2021


Author: jrm
Date: Thu Jan  7 20:04:35 2021
New Revision: 560732
URL: https://svnweb.freebsd.org/changeset/ports/560732

Log:
  New ports, graphics/cbonsai: Bonsai tree generator
  
  Bonsai tree generator, written in C using ncurses.  It intelligently
  creates, colors, and positions a bonsai tree, and is configurable.
  
  WWW: https://gitlab.com/jallbrit/cbonsai
  
  PR:		252412
  Submitted by:	Lewis Cook <vulcan at wired.sh> (maintainer)
  Reviewed by:	daniel.engberg.lists at pyret.net

Added:
  head/graphics/cbonsai/
  head/graphics/cbonsai/Makefile   (contents, props changed)
  head/graphics/cbonsai/distinfo   (contents, props changed)
  head/graphics/cbonsai/pkg-descr   (contents, props changed)
Modified:
  head/graphics/Makefile   (contents, props changed)

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Thu Jan  7 19:49:12 2021	(r560731)
+++ head/graphics/Makefile	Thu Jan  7 20:04:35 2021	(r560732)
@@ -87,6 +87,7 @@
     SUBDIR += cal3d
     SUBDIR += camera
     SUBDIR += camerakit
+    SUBDIR += cbonsai
     SUBDIR += cbviewer
     SUBDIR += cegui
     SUBDIR += cenon

Added: head/graphics/cbonsai/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/cbonsai/Makefile	Thu Jan  7 20:04:35 2021	(r560732)
@@ -0,0 +1,35 @@
+# $FreeBSD$
+
+PORTNAME=	cbonsai
+DISTVERSION=	g20210105
+CATEGORIES=	graphics
+
+MAINTAINER=	vulcan at wired.sh
+COMMENT=	Bonsai tree generator, written in C using ncurses
+
+LICENSE=	GPLv1
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=		compiler:c11 localbase ncurses
+USE_GITLAB=	yes
+GL_ACCOUNT=	jallbrit
+GL_COMMIT=	9fe79e955b5d8f6dd7bdc85cbc4ac255934625d1
+
+LDFLAGS+=	-lncurses -lpanel
+
+PLIST_FILES=	bin/${PORTNAME}
+PORTDOCS=	README.md
+
+OPTIONS_DEFINE=	DOCS
+
+do-build:
+		${CC} ${CFLAGS} ${LDFLAGS} ${WRKSRC}/${PORTNAME}.c -o ${WRKSRC}/${PORTNAME}
+
+do-install:
+		${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
+
+post-install-DOCS-on:
+		@${MKDIR} ${STAGEDIR}${DOCSDIR}
+		${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}
+
+.include <bsd.port.mk>

Added: head/graphics/cbonsai/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/cbonsai/distinfo	Thu Jan  7 20:04:35 2021	(r560732)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1610047634
+SHA256 (jallbrit-cbonsai-9fe79e955b5d8f6dd7bdc85cbc4ac255934625d1_GL0.tar.gz) = face063f1f3e13f12b6c6310621c48ec03bc90647f57813c4e98af2da9768dd2
+SIZE (jallbrit-cbonsai-9fe79e955b5d8f6dd7bdc85cbc4ac255934625d1_GL0.tar.gz) = 19767

Added: head/graphics/cbonsai/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/cbonsai/pkg-descr	Thu Jan  7 20:04:35 2021	(r560732)
@@ -0,0 +1,9 @@
+Bonsai tree generator, written in C
+using ncurses. It intelligently creates,
+colors, and positions a bonsai tree, and
+is entirely configurable via CLI options--
+see usage. There are 2 modes of operation:
+static (the default), and live. See modes
+for details.
+
+WWW: https://gitlab.com/jallbrit/cbonsai


More information about the svn-ports-all mailing list