svn commit: r566787 - in head/games: . kodi-addon-game.libretro
Bernhard Froehlich
decke at FreeBSD.org
Sun Feb 28 18:35:59 UTC 2021
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 at 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 <rozhuk.im at gmail.com>
+# $FreeBSD$
+
+PORTNAME= game.libretro
+PORTVERSION= 2.2.0
+DISTVERSIONSUFFIX= -Matrix
+CATEGORIES= games
+
+MAINTAINER= rozhuk.im at 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 <bsd.port.mk>
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
More information about the svn-ports-head
mailing list