Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 May 2020 05:13:38 +0000 (UTC)
From:      =?UTF-8?Q?Lo=c3=afc_Bartoletti?= <lbartoletti@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r535969 - in head/games: . libretro-fmsx
Message-ID:  <202005200513.04K5Dcil098656@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lbartoletti
Date: Wed May 20 05:13:38 2020
New Revision: 535969
URL: https://svnweb.freebsd.org/changeset/ports/535969

Log:
  [NEW PORT] games/libretro-fmsx: FMSX - MSX Emulator
  
  This is a libretro core for fMSX, one of the oldest MSX1/2/2+ Computers emulators.
  
  PR:		246120
  Submitted by:	menelkir@itroll.org
  Approved by:	tcberner (mentor)
  Differential Revision:	https://reviews.freebsd.org/D24865

Added:
  head/games/libretro-fmsx/
  head/games/libretro-fmsx/Makefile   (contents, props changed)
  head/games/libretro-fmsx/distinfo   (contents, props changed)
  head/games/libretro-fmsx/pkg-descr   (contents, props changed)
Modified:
  head/games/Makefile

Modified: head/games/Makefile
==============================================================================
--- head/games/Makefile	Wed May 20 05:10:25 2020	(r535968)
+++ head/games/Makefile	Wed May 20 05:13:38 2020	(r535969)
@@ -491,6 +491,7 @@
     SUBDIR += libretro-emux
     SUBDIR += libretro-fbalpha
     SUBDIR += libretro-fceumm
+    SUBDIR += libretro-fmsx
     SUBDIR += libretro-fuse
     SUBDIR += libretro-gambatte
     SUBDIR += libretro-genesis_plus_gx

Added: head/games/libretro-fmsx/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/libretro-fmsx/Makefile	Wed May 20 05:13:38 2020	(r535969)
@@ -0,0 +1,29 @@
+# $FreeBSD$
+
+PORTNAME=	libretro-fmsx
+PORTVERSION=	0.20200504
+CATEGORIES=	games
+
+MAINTAINER=	menelkir@itroll.org
+COMMENT=	Port of fMSX to the libretro API
+
+LICENSE=	FMSX
+LICENSE_NAME=	FMSX
+LICENSE_FILE=	${WRKSRC}/LICENSE
+LICENSE_PERMS=	dist-mirror pkg-mirror auto-accept
+
+USES=		compiler:c++11-lib gmake
+USE_LDCONFIG=	yes
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	libretro
+GH_PROJECT=	fmsx-libretro
+GH_TAGNAME=	c76e1dc
+
+PLIST_FILES=	lib/libretro/fmsx_libretro.so
+
+do-install:
+	${MKDIR} ${STAGEDIR}/${PREFIX}/lib/libretro;
+	${INSTALL_LIB} ${WRKSRC}/fmsx_libretro.so ${STAGEDIR}/${PREFIX}/lib/libretro;
+
+.include <bsd.port.mk>

Added: head/games/libretro-fmsx/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/libretro-fmsx/distinfo	Wed May 20 05:13:38 2020	(r535969)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1588720298
+SHA256 (libretro-fmsx-libretro-0.20200504-c76e1dc_GH0.tar.gz) = 3b6d96d9ce8783ee72ca4e750b4666eafbf2ae142e1040cf0eeed0d7cc364e09
+SIZE (libretro-fmsx-libretro-0.20200504-c76e1dc_GH0.tar.gz) = 621026

Added: head/games/libretro-fmsx/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/libretro-fmsx/pkg-descr	Wed May 20 05:13:38 2020	(r535969)
@@ -0,0 +1,3 @@
+Port of fMSX to the libretro API.
+
+WWW: https://github.com/libretro/fmsx-libretro



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005200513.04K5Dcil098656>