From owner-svn-ports-all@freebsd.org Sat Nov 30 04:42:24 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 D64E41C8301; Sat, 30 Nov 2019 04:42:24 +0000 (UTC) (envelope-from yuri@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 47PzJ041YHz3CX1; Sat, 30 Nov 2019 04:42:24 +0000 (UTC) (envelope-from yuri@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 6E34F21217; Sat, 30 Nov 2019 04:42:24 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAU4gObs009458; Sat, 30 Nov 2019 04:42:24 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAU4gNoG009453; Sat, 30 Nov 2019 04:42:23 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201911300442.xAU4gNoG009453@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 30 Nov 2019 04:42:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r518703 - in head/graphics: . tweeny X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/graphics: . tweeny X-SVN-Commit-Revision: 518703 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: Sat, 30 Nov 2019 04:42:25 -0000 Author: yuri Date: Sat Nov 30 04:42:23 2019 New Revision: 518703 URL: https://svnweb.freebsd.org/changeset/ports/518703 Log: New port: graphics/tweeny: Modern C++ tweening library Added: head/graphics/tweeny/ head/graphics/tweeny/Makefile (contents, props changed) head/graphics/tweeny/distinfo (contents, props changed) head/graphics/tweeny/pkg-descr (contents, props changed) head/graphics/tweeny/pkg-plist (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sat Nov 30 04:26:54 2019 (r518702) +++ head/graphics/Makefile Sat Nov 30 04:42:23 2019 (r518703) @@ -1028,6 +1028,7 @@ SUBDIR += togl SUBDIR += ttygif SUBDIR += tumble + SUBDIR += tweeny SUBDIR += ufraw SUBDIR += uniconvertor SUBDIR += uniconvw Added: head/graphics/tweeny/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/tweeny/Makefile Sat Nov 30 04:42:23 2019 (r518703) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= tweeny +DISTVERSIONPREFIX= v +DISTVERSION= 3-6 +DISTVERSIONSUFFIX= -g1c2eb4e +CATEGORIES= graphics devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Modern C++ tweening library + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake +USE_GITHUB= yes +GH_ACCOUNT= mobius3 + +NO_BUILD= yes +NO_ARCH= yes + +.include Added: head/graphics/tweeny/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/tweeny/distinfo Sat Nov 30 04:42:23 2019 (r518703) @@ -0,0 +1,3 @@ +TIMESTAMP = 1575088640 +SHA256 (mobius3-tweeny-v3-6-g1c2eb4e_GH0.tar.gz) = 38dae9dffb1803502b61025c483f9262d141feee72f131cdeea474f633d505e2 +SIZE (mobius3-tweeny-v3-6-g1c2eb4e_GH0.tar.gz) = 49516 Added: head/graphics/tweeny/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/tweeny/pkg-descr Sat Nov 30 04:42:23 2019 (r518703) @@ -0,0 +1,11 @@ +Tweeny is an inbetweening library designed for the creation of complex +animations for games and other beautiful interactive software. It leverages +features of modern C++ to empower developers with an intuitive API for declaring +tweenings of any type of value, as long as they support arithmetic operations. + +The goal of Tweeny is to provide means to create fluid interpolations when +animating position, scale, rotation, frames or other values of screen objects, +by setting their values as the tween starting point and then, after each tween +step, plugging back the result. + +WWW: https://mobius3.github.io/tweeny/ Added: head/graphics/tweeny/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/tweeny/pkg-plist Sat Nov 30 04:42:23 2019 (r518703) @@ -0,0 +1,15 @@ +include/tweeny/dispatcher.h +include/tweeny/easing.h +include/tweeny/easingresolve.h +include/tweeny/int2type.h +include/tweeny/tween.h +include/tweeny/tween.tcc +include/tweeny/tweenone.tcc +include/tweeny/tweenpoint.h +include/tweeny/tweenpoint.tcc +include/tweeny/tweentraits.h +include/tweeny/tweeny.h +include/tweeny/tweeny.tcc +lib/cmake/Tweeny/TweenyConfig.cmake +lib/cmake/Tweeny/TweenyConfigVersion.cmake +lib/cmake/Tweeny/TweenyTargets.cmake