pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/emulators



Module Name:    pkgsrc
Committed By:   nia
Date:           Mon Aug 13 18:35:14 UTC 2018

Modified Files:
        pkgsrc/emulators: Makefile
Added Files:
        pkgsrc/emulators/libretro-o2em: DESCR MESSAGE Makefile PLIST distinfo

Log Message:
libretro-o2em: add version 20180812.

Libretro is a simple but powerful development interface that allows for
the easy creation of emulators, games and multimedia applications that
can plug straight into any libretro-compatible frontend. This development
interface is open to others so that they can run these pluggable emulator
and game cores also in their own programs or devices.

O2EM is an open source multi-platform Magnavox Odyssey2 / Videopac+
emulator. The Odyssey2 (Videopac/Jopac in Europe) was a video game
console created in the late 70s.


To generate a diff of this commit:
cvs rdiff -u -r1.277 -r1.278 pkgsrc/emulators/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/emulators/libretro-o2em/DESCR \
    pkgsrc/emulators/libretro-o2em/MESSAGE \
    pkgsrc/emulators/libretro-o2em/Makefile \
    pkgsrc/emulators/libretro-o2em/PLIST \
    pkgsrc/emulators/libretro-o2em/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/emulators/Makefile
diff -u pkgsrc/emulators/Makefile:1.277 pkgsrc/emulators/Makefile:1.278
--- pkgsrc/emulators/Makefile:1.277     Mon Aug 13 18:04:15 2018
+++ pkgsrc/emulators/Makefile   Mon Aug 13 18:35:14 2018
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.277 2018/08/13 18:04:15 nia Exp $
+# $NetBSD: Makefile,v 1.278 2018/08/13 18:35:14 nia Exp $
 #
 
 COMMENT=       Emulators for other operating systems
@@ -111,6 +111,7 @@ SUBDIR+=    libretro-glsl-shaders
 SUBDIR+=       libretro-mgba
 SUBDIR+=       libretro-mupen64plus
 SUBDIR+=       libretro-nestopia
+SUBDIR+=       libretro-o2em
 SUBDIR+=       libretro-pcsx-rearmed
 SUBDIR+=       libretro-picodrive
 SUBDIR+=       libretro-prosystem

Added files:

Index: pkgsrc/emulators/libretro-o2em/DESCR
diff -u /dev/null pkgsrc/emulators/libretro-o2em/DESCR:1.1
--- /dev/null   Mon Aug 13 18:35:14 2018
+++ pkgsrc/emulators/libretro-o2em/DESCR        Mon Aug 13 18:35:14 2018
@@ -0,0 +1,9 @@
+Libretro is a simple but powerful development interface that allows for
+the easy creation of emulators, games and multimedia applications that
+can plug straight into any libretro-compatible frontend. This development
+interface is open to others so that they can run these pluggable emulator
+and game cores also in their own programs or devices.
+
+O2EM is an open source multi-platform Magnavox Odyssey2 / Videopac+
+emulator. The Odyssey2 (Videopac/Jopac in Europe) was a video game
+console created in the late 70s.
Index: pkgsrc/emulators/libretro-o2em/MESSAGE
diff -u /dev/null pkgsrc/emulators/libretro-o2em/MESSAGE:1.1
--- /dev/null   Mon Aug 13 18:35:14 2018
+++ pkgsrc/emulators/libretro-o2em/MESSAGE      Mon Aug 13 18:35:14 2018
@@ -0,0 +1,11 @@
+===========================================================================
+$NetBSD: MESSAGE,v 1.1 2018/08/13 18:35:14 nia Exp $
+
+O2EM requires an Odyssey 2 BIOS file in order to work.
+
+In retroarch, you'll need to place it as o2rom.bin in the System Directory.
+
+Alternatively, you can place it into your Content Directory next to the
+software you are going to run.
+
+===========================================================================
Index: pkgsrc/emulators/libretro-o2em/Makefile
diff -u /dev/null pkgsrc/emulators/libretro-o2em/Makefile:1.1
--- /dev/null   Mon Aug 13 18:35:14 2018
+++ pkgsrc/emulators/libretro-o2em/Makefile     Mon Aug 13 18:35:14 2018
@@ -0,0 +1,29 @@
+# $NetBSD: Makefile,v 1.1 2018/08/13 18:35:14 nia Exp $
+
+DISTNAME=      libretro-o2em-20180812
+CATEGORIES=    emulators
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=libretro/}
+GITHUB_TAG=    925fc14d818abcbb9665cae4dd995f8b751db46c
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=      https://docs.libretro.com/library/o2em/
+COMMENT=       Libretro core for Magnavox Odyssey 2 and VideoPac emulation
+LICENSE=       artistic
+
+USE_TOOLS+=    gmake
+
+MAKE_FLAGS+=   GIT_VERSION="-pkgsrc"
+
+.include "../../mk/endian.mk"
+
+.if ${MACHINE_ENDIAN} == "big"
+CFLAGS+=       -DMSB_FIRST
+.endif
+
+INSTALLATION_DIRS+=    ${PREFIX}/lib/libretro
+
+do-install:
+       ${INSTALL_LIB} ${WRKSRC}/o2em_libretro.so \
+           ${DESTDIR}${PREFIX}/lib/libretro/o2em_libretro.so
+
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/emulators/libretro-o2em/PLIST
diff -u /dev/null pkgsrc/emulators/libretro-o2em/PLIST:1.1
--- /dev/null   Mon Aug 13 18:35:14 2018
+++ pkgsrc/emulators/libretro-o2em/PLIST        Mon Aug 13 18:35:14 2018
@@ -0,0 +1,2 @@
+@comment $NetBSD: PLIST,v 1.1 2018/08/13 18:35:14 nia Exp $
+lib/libretro/o2em_libretro.so
Index: pkgsrc/emulators/libretro-o2em/distinfo
diff -u /dev/null pkgsrc/emulators/libretro-o2em/distinfo:1.1
--- /dev/null   Mon Aug 13 18:35:14 2018
+++ pkgsrc/emulators/libretro-o2em/distinfo     Mon Aug 13 18:35:14 2018
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2018/08/13 18:35:14 nia Exp $
+
+SHA1 (libretro-o2em-20180812-925fc14d818abcbb9665cae4dd995f8b751db46c.tar.gz) = b25d2432c797da98ea514597fe3e9eca156f910b
+RMD160 (libretro-o2em-20180812-925fc14d818abcbb9665cae4dd995f8b751db46c.tar.gz) = 262f3af72dc951c35cb7768f8218d97f0b0fd7b1
+SHA512 (libretro-o2em-20180812-925fc14d818abcbb9665cae4dd995f8b751db46c.tar.gz) = 
475becf40635b2d20eb03e4940130ced9724257397b2836f091443f98c38b83e84c5a2b3ab0b351a3c7a35ad2ed888287be4dbf969fc1a942d22cd5f837852b9
+Size (libretro-o2em-20180812-925fc14d818abcbb9665cae4dd995f8b751db46c.tar.gz) = 75503 bytes



Home | Main Index | Thread Index | Old Index