Date: Fri, 17 May 2019 18:29:57 +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: r501880 - in head/devel: . entt Message-ID: <201905171829.x4HITv1B002307@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Fri May 17 18:29:56 2019 New Revision: 501880 URL: https://svnweb.freebsd.org/changeset/ports/501880 Log: New port: devel/entt: Fast and reliable entity-component system (ECS) and much more Added: head/devel/entt/ head/devel/entt/Makefile (contents, props changed) head/devel/entt/distinfo (contents, props changed) head/devel/entt/pkg-descr (contents, props changed) head/devel/entt/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri May 17 17:17:25 2019 (r501879) +++ head/devel/Makefile Fri May 17 18:29:56 2019 (r501880) @@ -561,6 +561,7 @@ SUBDIR += elixir-unsafe SUBDIR += embb SUBDIR += emscripten + SUBDIR += entt SUBDIR += epl.el SUBDIR += epm SUBDIR += epydoc Added: head/devel/entt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/entt/Makefile Fri May 17 18:29:56 2019 (r501880) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= entt +DISTVERSIONPREFIX= v +DISTVERSION= 3.0.0 +CATEGORIES= devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Fast and reliable entity-component system (ECS) and much more + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake +USE_GITHUB= yes +GH_ACCOUNT= skypjack + +NO_ARCH= yes + +do-test: + @cd ${BUILD_WRKSRC} && \ + ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DBUILD_TESTING:BOOL=ON ${CMAKE_SOURCE_PATH} && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \ + ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test + +.include <bsd.port.mk> Added: head/devel/entt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/entt/distinfo Fri May 17 18:29:56 2019 (r501880) @@ -0,0 +1,3 @@ +TIMESTAMP = 1558116593 +SHA256 (skypjack-entt-v3.0.0_GH0.tar.gz) = f8928314a18f1fabda5398efdef7a001d09de43c2ffda90c1b77e56f5d41574b +SIZE (skypjack-entt-v3.0.0_GH0.tar.gz) = 266513 Added: head/devel/entt/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/entt/pkg-descr Fri May 17 18:29:56 2019 (r501880) @@ -0,0 +1,7 @@ +EnTT is a header-only, tiny and easy to use library for game programming and +much more written in modern C++, mainly known for its innovative +entity-component-system (ECS) model. +Among others, it's used in Minecraft by Mojang, the ArcGIS Runtime SDKs by Esri +and The Forge by Confetti. + +WWW: https://github.com/skypjack/entt/wiki Added: head/devel/entt/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/entt/pkg-plist Fri May 17 18:29:56 2019 (r501880) @@ -0,0 +1,40 @@ +include/entt/config/config.h +include/entt/config/version.h +include/entt/core/algorithm.hpp +include/entt/core/family.hpp +include/entt/core/hashed_string.hpp +include/entt/core/ident.hpp +include/entt/core/monostate.hpp +include/entt/core/type_traits.hpp +include/entt/core/utility.hpp +include/entt/entity/actor.hpp +include/entt/entity/entity.hpp +include/entt/entity/fwd.hpp +include/entt/entity/group.hpp +include/entt/entity/helper.hpp +include/entt/entity/prototype.hpp +include/entt/entity/registry.hpp +include/entt/entity/runtime_view.hpp +include/entt/entity/snapshot.hpp +include/entt/entity/sparse_set.hpp +include/entt/entity/storage.hpp +include/entt/entity/view.hpp +include/entt/entt.hpp +include/entt/fwd.hpp +include/entt/locator/locator.hpp +include/entt/meta/factory.hpp +include/entt/meta/meta.hpp +include/entt/process/process.hpp +include/entt/process/scheduler.hpp +include/entt/resource/cache.hpp +include/entt/resource/fwd.hpp +include/entt/resource/handle.hpp +include/entt/resource/loader.hpp +include/entt/signal/delegate.hpp +include/entt/signal/dispatcher.hpp +include/entt/signal/emitter.hpp +include/entt/signal/fwd.hpp +include/entt/signal/sigh.hpp +lib/cmake/entt/EnTTConfig.cmake +lib/cmake/entt/EnTTConfigVersion.cmake +lib/cmake/entt/EnTTTargets.cmake
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905171829.x4HITv1B002307>