Date: Sat, 30 Nov 2019 04:42:23 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r518703 - in head/graphics: . tweeny Message-ID: <201911300442.xAU4gNoG009453@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911300442.xAU4gNoG009453>