From owner-svn-ports-all@freebsd.org Fri Oct 11 09:52:49 2019 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 0A69214617D; Fri, 11 Oct 2019 09:52:49 +0000 (UTC) (envelope-from rodrigo@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 46qNYD6XnCz4J8x; Fri, 11 Oct 2019 09:52:48 +0000 (UTC) (envelope-from rodrigo@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 AB4F31878C; Fri, 11 Oct 2019 09:52:48 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x9B9qmYC043515; Fri, 11 Oct 2019 09:52:48 GMT (envelope-from rodrigo@FreeBSD.org) Received: (from rodrigo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x9B9qlRV043510; Fri, 11 Oct 2019 09:52:47 GMT (envelope-from rodrigo@FreeBSD.org) Message-Id: <201910110952.x9B9qlRV043510@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigo set sender to rodrigo@FreeBSD.org using -f From: Rodrigo Osorio Date: Fri, 11 Oct 2019 09:52:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r514272 - in head/graphics: . ebsynth X-SVN-Group: ports-head X-SVN-Commit-Author: rodrigo X-SVN-Commit-Paths: in head/graphics: . ebsynth X-SVN-Commit-Revision: 514272 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, 11 Oct 2019 09:52:49 -0000 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 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 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