Date: Sun, 1 Sep 2019 19:25:47 +0000 (UTC) From: "Danilo G. Baio" <dbaio@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r510735 - in head/emulators: . anese anese/files Message-ID: <201909011925.x81JPlHs014483@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dbaio Date: Sun Sep 1 19:25:47 2019 New Revision: 510735 URL: https://svnweb.freebsd.org/changeset/ports/510735 Log: Add emulators/anese: NES Emulator written for fun and learning ANESE (Another NES Emulator) is a Nintendo Entertainment System Emulator written for fun and learning. Accuracy and performance are long-term goals, but the primary focus is getting popular titles up and running. There are still a lot of bugs, but many games are working quite well already. WWW: https://prilik.com/ANESE/ PR: 239940 Submitted by: Martin Filla <freebsd@sysctl.cz> Added: head/emulators/anese/ head/emulators/anese/Makefile (contents, props changed) head/emulators/anese/distinfo (contents, props changed) head/emulators/anese/files/ head/emulators/anese/files/patch-thirdparty_headeronly_cfgpath.h (contents, props changed) head/emulators/anese/pkg-descr (contents, props changed) Modified: head/emulators/Makefile Modified: head/emulators/Makefile ============================================================================== --- head/emulators/Makefile Sun Sep 1 19:23:53 2019 (r510734) +++ head/emulators/Makefile Sun Sep 1 19:25:47 2019 (r510735) @@ -9,6 +9,7 @@ SUBDIR += advancemess SUBDIR += aftp SUBDIR += almostti + SUBDIR += anese SUBDIR += aqemu SUBDIR += atari800 SUBDIR += bfe Added: head/emulators/anese/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/anese/Makefile Sun Sep 1 19:25:47 2019 (r510735) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= anese +PORTVERSION= 0.9.1 +CATEGORIES= emulators + +MAINTAINER= freebsd@sysctl.cz +COMMENT= NES Emulator written for fun and learning + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake:insource sdl + +USE_GITHUB= yes +GH_ACCOUNT= daniel5151 +GH_PROJECT= ANESE + +USE_LDCONFIG= yes +USE_SDL= sdl2 + +PLIST_FILES= bin/anese + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + +.include <bsd.port.mk> Added: head/emulators/anese/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/anese/distinfo Sun Sep 1 19:25:47 2019 (r510735) @@ -0,0 +1,3 @@ +TIMESTAMP = 1566123542 +SHA256 (daniel5151-ANESE-0.9.1_GH0.tar.gz) = 86c3aced7b552125b0775b20e1779c5648f28a5cb7f9837a0f97c5440ca4aa0c +SIZE (daniel5151-ANESE-0.9.1_GH0.tar.gz) = 25076630 Added: head/emulators/anese/files/patch-thirdparty_headeronly_cfgpath.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/anese/files/patch-thirdparty_headeronly_cfgpath.h Sun Sep 1 19:25:47 2019 (r510735) @@ -0,0 +1,11 @@ +--- thirdparty/headeronly/cfgpath.h.orig 2019-08-18 10:23:32 UTC ++++ thirdparty/headeronly/cfgpath.h +@@ -39,7 +39,7 @@ + #define mkdir _mkdir + #endif + +-#if defined(__linux__) || defined(__APPLE__) ++#if defined(__linux__) || defined(__APPLE__) || defined(__FreeBSD__) + #include <string.h> + #include <stdlib.h> + #include <sys/stat.h> Added: head/emulators/anese/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/anese/pkg-descr Sun Sep 1 19:25:47 2019 (r510735) @@ -0,0 +1,8 @@ +ANESE (Another NES Emulator) is a Nintendo Entertainment System Emulator written +for fun and learning. + +Accuracy and performance are long-term goals, but the primary focus is getting +popular titles up and running. There are still a lot of bugs, but many games are +working quite well already. + +WWW: https://prilik.com/ANESE/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909011925.x81JPlHs014483>