From owner-svn-ports-all@freebsd.org Sun Feb 28 18:35:59 2021 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 08AA553C407; Sun, 28 Feb 2021 18:35:59 +0000 (UTC) (envelope-from decke@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DpXCL6plzz4gX4; Sun, 28 Feb 2021 18:35:58 +0000 (UTC) (envelope-from decke@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 DC8B915913; Sun, 28 Feb 2021 18:35:58 +0000 (UTC) (envelope-from decke@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 11SIZwEY012497; Sun, 28 Feb 2021 18:35:58 GMT (envelope-from decke@FreeBSD.org) Received: (from decke@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 11SIZwQJ012494; Sun, 28 Feb 2021 18:35:58 GMT (envelope-from decke@FreeBSD.org) Message-Id: <202102281835.11SIZwQJ012494@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: decke set sender to decke@FreeBSD.org using -f From: Bernhard Froehlich Date: Sun, 28 Feb 2021 18:35:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r566787 - in head/games: . kodi-addon-game.libretro X-SVN-Group: ports-head X-SVN-Commit-Author: decke X-SVN-Commit-Paths: in head/games: . kodi-addon-game.libretro X-SVN-Commit-Revision: 566787 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.34 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: Sun, 28 Feb 2021 18:35:59 -0000 Author: decke Date: Sun Feb 28 18:35:57 2021 New Revision: 566787 URL: https://svnweb.freebsd.org/changeset/ports/566787 Log: This add-on provides a wrapper that allows Libretro cores to be loaded as game add-ons. Libretro cores are shared libraries that use the Libretro API, so the wrapper is responsible for translating function calls between the Libretro API and the Game API. WWW: https://github.com/kodi-game/game.libretro PR: 245259 Submitted by: rozhuk.im@gmail.com Added: head/games/kodi-addon-game.libretro/ head/games/kodi-addon-game.libretro/Makefile (contents, props changed) head/games/kodi-addon-game.libretro/distinfo (contents, props changed) head/games/kodi-addon-game.libretro/pkg-descr (contents, props changed) Modified: head/games/Makefile Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Sun Feb 28 18:27:52 2021 (r566786) +++ head/games/Makefile Sun Feb 28 18:35:57 2021 (r566787) @@ -444,6 +444,7 @@ SUBDIR += knetwalk SUBDIR += knights SUBDIR += kobodeluxe + SUBDIR += kodi-addon-game.libretro SUBDIR += kolf SUBDIR += kollision SUBDIR += konquest Added: head/games/kodi-addon-game.libretro/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/kodi-addon-game.libretro/Makefile Sun Feb 28 18:35:57 2021 (r566787) @@ -0,0 +1,21 @@ +# Created by: Rozhuk Ivan +# $FreeBSD$ + +PORTNAME= game.libretro +PORTVERSION= 2.2.0 +DISTVERSIONSUFFIX= -Matrix +CATEGORIES= games + +MAINTAINER= rozhuk.im@gmail.com +COMMENT= Libretro compatibility layer for the Kodi Game API + +LICENSE= GPLv2+ + +LIB_DEPENDS= libtinyxml.so:textproc/tinyxml + +USES= cmake localbase compiler:c++14-lang kodi +USE_CXXSTD= c++14 +USE_GITHUB= yes +GH_ACCOUNT= kodi-game + +.include Added: head/games/kodi-addon-game.libretro/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/kodi-addon-game.libretro/distinfo Sun Feb 28 18:35:57 2021 (r566787) @@ -0,0 +1,3 @@ +TIMESTAMP = 1611219256 +SHA256 (kodi-game-game.libretro-2.2.0-Matrix_GH0.tar.gz) = b92670065d5644b4766bb90ee51cc69730e11b4a8dc912bbe90dce7d07b39e32 +SIZE (kodi-game-game.libretro-2.2.0-Matrix_GH0.tar.gz) = 110443 Added: head/games/kodi-addon-game.libretro/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/kodi-addon-game.libretro/pkg-descr Sun Feb 28 18:35:57 2021 (r566787) @@ -0,0 +1,6 @@ +This add-on provides a wrapper that allows Libretro cores to be loaded +as game add-ons. Libretro cores are shared libraries that use the +Libretro API, so the wrapper is responsible for translating function +calls between the Libretro API and the Game API. + +WWW: https://github.com/kodi-game/game.libretro