Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 11 Dec 2020 14:10:22 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r557738 - in head/graphics: . aloadimage
Message-ID:  <202012111410.0BBEAMpf093316@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Fri Dec 11 14:10:22 2020
New Revision: 557738
URL: https://svnweb.freebsd.org/changeset/ports/557738

Log:
  graphics/aloadimage: add new port
  
  Aloadimage is a simple command-line imageviewer for arcan, built on
  the image parsers provided by stb. Image loading is performed in the
  background as a separate, sandboxed (on Linux) processes and should be
  reasonably safe against maliciously crafted input sources.
  
  The primary purpose is to provide an arcan- specific replacement for
  xloadimage, and to serve as a testing ground for advanced image output such as
  full HDR- paths. The secondary purpose is to craft the image- loading worker
  pool to be secure and efficient enough to act as a building block for other
  components within the Arcan umbrella.
  
  https://arcan-fe.com/

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

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Fri Dec 11 14:10:16 2020	(r557737)
+++ head/graphics/Makefile	Fri Dec 11 14:10:22 2020	(r557738)
@@ -46,6 +46,7 @@
     SUBDIR += agg
     SUBDIR += akira
     SUBDIR += alembic
+    SUBDIR += aloadimage
     SUBDIR += alpng
     SUBDIR += ampasACES-container
     SUBDIR += ampasCTL

Added: head/graphics/aloadimage/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/aloadimage/Makefile	Fri Dec 11 14:10:22 2020	(r557738)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME=	aloadimage
+DISTVERSION=	0.6.0
+CATEGORIES=	graphics
+
+PATCH_SITES=	https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
+PATCHFILES+=	f6bbd1d352d7.patch:-p4 # https://github.com/letoram/arcan/pull/205
+
+MAINTAINER=	jbeich@FreeBSD.org
+COMMENT=	Trivial image viewer for Arcan servers
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC:H:H:H}/data/distr/LICENSE.BSD
+
+LIB_DEPENDS=	libarcan_shmif_ext.so:multimedia/arcan
+
+USES=		cmake compiler:c11
+USE_GITHUB=	yes
+GH_ACCOUNT=	letoram
+GH_PROJECT=	arcan
+WRKSRC_SUBDIR=	src/tools/${PORTNAME}
+PLIST_FILES=	bin/${PORTNAME} \
+		man/man1/${PORTNAME}.1.gz
+
+.include <bsd.port.mk>

Added: head/graphics/aloadimage/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/aloadimage/distinfo	Fri Dec 11 14:10:22 2020	(r557738)
@@ -0,0 +1,5 @@
+TIMESTAMP = 1606252529
+SHA256 (letoram-arcan-0.6.0_GH0.tar.gz) = 7b7aeb0fa6b89b7e3779d2e078b626566bdfa86c756d7ea1cc4f84b9e60d16a0
+SIZE (letoram-arcan-0.6.0_GH0.tar.gz) = 11216362
+SHA256 (f6bbd1d352d7.patch) = edc794f670002dba700962351256832e589cdcd9af636986038f82cbe88f5eb2
+SIZE (f6bbd1d352d7.patch) = 852

Added: head/graphics/aloadimage/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/aloadimage/pkg-descr	Fri Dec 11 14:10:22 2020	(r557738)
@@ -0,0 +1,12 @@
+Aloadimage is a simple command-line imageviewer for arcan, built on
+the image parsers provided by stb. Image loading is performed in the
+background as a separate, sandboxed (on Linux) processes and should be
+reasonably safe against maliciously crafted input sources.
+
+The primary purpose is to provide an arcan- specific replacement for
+xloadimage, and to serve as a testing ground for advanced image output such as
+full HDR- paths. The secondary purpose is to craft the image- loading worker
+pool to be secure and efficient enough to act as a building block for other
+components within the Arcan umbrella.
+
+WWW: https://arcan-fe.com/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012111410.0BBEAMpf093316>