Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 11 Oct 2019 09:52:47 +0000 (UTC)
From:      Rodrigo Osorio <rodrigo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r514272 - in head/graphics: . ebsynth
Message-ID:  <201910110952.x9B9qlRV043510@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rodrigo
Date: Fri Oct 11 09:52:47 2019
New Revision: 514272
URL: https://svnweb.freebsd.org/changeset/ports/514272

Log:
  New port graphics/ebsynth
  
  ebsynth is a tool for by-example synthesis of images.
  
  PR:		240632
  Submitted by:	Shane <FreeBSD@ShaneWare.Biz>

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

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Fri Oct 11 09:50:04 2019	(r514271)
+++ head/graphics/Makefile	Fri Oct 11 09:52:47 2019	(r514272)
@@ -147,6 +147,7 @@
     SUBDIR += dspdfviewer
     SUBDIR += duhdraw
     SUBDIR += dynamechs
+    SUBDIR += ebsynth
     SUBDIR += edje_viewer
     SUBDIR += electricsheep
     SUBDIR += electrix

Added: head/graphics/ebsynth/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/ebsynth/Makefile	Fri Oct 11 09:52:47 2019	(r514272)
@@ -0,0 +1,30 @@
+# $FreeBSD$
+
+PORTNAME=	ebsynth
+PORTVERSION=	0.0.0.20190510
+CATEGORIES=	graphics
+
+MAINTAINER=	FreeBSD@ShaneWare.biz
+COMMENT=	Example-based Image Synthesis and Style Transfer
+
+LICENSE=	PD
+
+LIB_DEPENDS=	libomp.so:devel/openmp
+
+USES=		localbase
+USE_GITHUB=	yes
+GH_ACCOUNT=	jamriska
+GH_TAGNAME=	2f5c97c0c21a
+
+PLIST_FILES=	bin/ebsynth
+
+do-build:
+	@(cd ${BUILD_WRKSRC} && ${CXX} src/ebsynth.cpp \
+		src/ebsynth_cpu.cpp src/ebsynth_nocuda.cpp \
+		-DNDEBUG -O3 -fopenmp -Iinclude -I${LOCALBASE}/include \
+		-L${LOCALBASE}/lib -std=c++11 -o ebsynth)
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/ebsynth ${STAGEDIR}${LOCALBASE}/bin
+
+.include <bsd.port.mk>

Added: head/graphics/ebsynth/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/ebsynth/distinfo	Fri Oct 11 09:52:47 2019	(r514272)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1568869871
+SHA256 (jamriska-ebsynth-0.0.0.20190510-2f5c97c0c21a_GH0.tar.gz) = 87c375141cfd00b5ea27a32762764496b821c394c540a2fd2a7af60e9e5efcd5
+SIZE (jamriska-ebsynth-0.0.0.20190510-2f5c97c0c21a_GH0.tar.gz) = 12569648

Added: head/graphics/ebsynth/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/ebsynth/pkg-descr	Fri Oct 11 09:52:47 2019	(r514272)
@@ -0,0 +1,6 @@
+ebsynth is a tool for by-example synthesis of images. It can be used
+for a variety of image synthesis tasks, including guided texture
+synthesis, artistic style transfer, content-aware inpainting and
+super-resolution.
+
+WWW: https://ebsynth.com



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