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: Sat Jan 4 12:29:45 UTC 2020
Modified Files:
pkgsrc/emulators/libretro-nestopia: Makefile PLIST
pkgsrc/emulators/nestopia: Makefile distinfo
Removed Files:
pkgsrc/emulators/libretro-nestopia: distinfo
pkgsrc/emulators/nestopia: MESSAGE.NetBSD
Log Message:
nestopia: Update to 1.50
----------------------------------------------------------------
1.50
----------------------------------------------------------------
Shell:
Additions:
- Added ability to output data from homebrew module (Phil Smith)
libretro:
Additions:
- Button shift option
- Input bitmask support (TwinAphex)
- Enhanced core options (TwinAphex)
- Build in NstDatabase.xml
Core:
Additions:
- Homebrew module (Phil Smith)
- Support for mapper 31 (rainwarrior)
- Support for mappers 28 and 30 (retro-wertz)
- Support for UNL-KS7031 (retro-wertz)
- Support for MMC3 Big CHR-RAM Board
Fixes:
- Deterministic Save States (creambits)
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/emulators/libretro-nestopia/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/emulators/libretro-nestopia/PLIST
cvs rdiff -u -r1.3 -r0 pkgsrc/emulators/libretro-nestopia/distinfo
cvs rdiff -u -r1.1 -r0 pkgsrc/emulators/nestopia/MESSAGE.NetBSD
cvs rdiff -u -r1.36 -r1.37 pkgsrc/emulators/nestopia/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/emulators/nestopia/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/libretro-nestopia/Makefile
diff -u pkgsrc/emulators/libretro-nestopia/Makefile:1.5 pkgsrc/emulators/libretro-nestopia/Makefile:1.6
--- pkgsrc/emulators/libretro-nestopia/Makefile:1.5 Fri Jun 28 19:14:08 2019
+++ pkgsrc/emulators/libretro-nestopia/Makefile Sat Jan 4 12:29:45 2020
@@ -1,34 +1,26 @@
-# $NetBSD: Makefile,v 1.5 2019/06/28 19:14:08 nia Exp $
+# $NetBSD: Makefile,v 1.6 2020/01/04 12:29:45 nia Exp $
-DISTNAME= libretro-nestopia-1.49
-CATEGORIES= emulators
-MASTER_SITES= ${MASTER_SITE_GITHUB:=libretro/}
-GITHUB_PROJECT= nestopia
+.include "../../emulators/nestopia/Makefile.common"
+
+PKGNAME= libretro-${DISTNAME}
MAINTAINER= snj%NetBSD.org@localhost
HOMEPAGE= https://docs.libretro.com/library/nestopia_ue/
COMMENT= Libretro core based on the Nestopia UE emulator
-LICENSE= gnu-gpl-v2
-EXTRACT_USING= bsdtar
-WRKSRC= ${WRKDIR}/${GITHUB_PROJECT}-${GITHUB_TAG}
BUILD_DIRS= libretro
-USE_LANGUAGES= c c++03
+
USE_TOOLS+= gmake
MAKE_FLAGS+= GIT_VERSION="-pkgsrc"
-CXXFLAGS+= -DPREFIX=\"${PREFIX}\"
BUILDLINK_TRANSFORM.SunOS+= rm:-Wl,-version-script=link.T
BUILDLINK_TRANSFORM.SunOS+= rm:-Wl,-no-undefined
-INSTALLATION_DIRS+= ${PREFIX}/lib/libretro
-INSTALLATION_DIRS+= share/libretro-nestopia
+INSTALLATION_DIRS+= lib/libretro
do-install:
${INSTALL_LIB} ${WRKSRC}/libretro/nestopia_libretro.so \
${DESTDIR}${PREFIX}/lib/libretro/nestopia_libretro.so
- ${INSTALL_DATA} ${WRKSRC}/NstDatabase.xml \
- ${DESTDIR}${PREFIX}/share/libretro-nestopia
.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/emulators/libretro-nestopia/PLIST
diff -u pkgsrc/emulators/libretro-nestopia/PLIST:1.1 pkgsrc/emulators/libretro-nestopia/PLIST:1.2
--- pkgsrc/emulators/libretro-nestopia/PLIST:1.1 Fri Apr 10 03:16:18 2015
+++ pkgsrc/emulators/libretro-nestopia/PLIST Sat Jan 4 12:29:45 2020
@@ -1,3 +1,2 @@
-@comment $NetBSD: PLIST,v 1.1 2015/04/10 03:16:18 snj Exp $
+@comment $NetBSD: PLIST,v 1.2 2020/01/04 12:29:45 nia Exp $
lib/libretro/nestopia_libretro.so
-share/libretro-nestopia/NstDatabase.xml
Index: pkgsrc/emulators/nestopia/Makefile
diff -u pkgsrc/emulators/nestopia/Makefile:1.36 pkgsrc/emulators/nestopia/Makefile:1.37
--- pkgsrc/emulators/nestopia/Makefile:1.36 Sun Jul 21 22:24:46 2019
+++ pkgsrc/emulators/nestopia/Makefile Sat Jan 4 12:29:45 2020
@@ -1,24 +1,16 @@
-# $NetBSD: Makefile,v 1.36 2019/07/21 22:24:46 wiz Exp $
-#
+# $NetBSD: Makefile,v 1.37 2020/01/04 12:29:45 nia Exp $
-DISTNAME= nestopia-1.49
-PKGREVISION= 1
-CATEGORIES= emulators
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=nestopiaue/}
-EXTRACT_SUFX= .tgz
+.include "Makefile.common"
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE= http://0ldsk00l.ca/nestopia/
COMMENT= Portable, very accurate NES emulator
-LICENSE= gnu-gpl-v2
USE_LANGUAGES= c c++
-USE_TOOLS+= autoreconf autoconf automake gawk pkg-config
-HAS_CONFIGURE= yes
GNU_CONFIGURE= yes
-AUTOCONF_REQD= 2.69
-AUTOMAKE_REQD= 1.15
+USE_TOOLS+= autoreconf autoconf automake
+USE_TOOLS+= pkg-config
BUILD_DEPENDS+= autoconf-archive-[0-9]*:../../devel/autoconf-archive
Index: pkgsrc/emulators/nestopia/distinfo
diff -u pkgsrc/emulators/nestopia/distinfo:1.7 pkgsrc/emulators/nestopia/distinfo:1.8
--- pkgsrc/emulators/nestopia/distinfo:1.7 Tue Jan 1 18:36:09 2019
+++ pkgsrc/emulators/nestopia/distinfo Sat Jan 4 12:29:45 2020
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.7 2019/01/01 18:36:09 nia Exp $
+$NetBSD: distinfo,v 1.8 2020/01/04 12:29:45 nia Exp $
-SHA1 (nestopia-1.49.tgz) = eb51087901f3a7c5a09f7894216e5b7bc14508c6
-RMD160 (nestopia-1.49.tgz) = 73f498f790dfe4fd13f880eca871ce7f584be4e9
-SHA512 (nestopia-1.49.tgz) = fc5dfe13b52964597990531a324f94c31ae0e16f5405c38caca2bf236beeab1710d704aad6f0f9fb6843b9dd2f3d60cafcb30ab5a505e060cca7066f43667ae6
-Size (nestopia-1.49.tgz) = 1294779 bytes
+SHA1 (nestopia-1.50.tar.gz) = f508eed1c8208417f1c0874ad9bce852048f9ae2
+RMD160 (nestopia-1.50.tar.gz) = 91f1d3a116a5e5ae43da7bf178d4afe73946ac47
+SHA512 (nestopia-1.50.tar.gz) = 6ea389d4891c7cfa36517495735ea0f34ba9427e51757113d0fe2b72d5ce5b11d7e6b7c02fd1e4e347a13bba06823e334800ff15036872e09b8561c10c7cb568
+Size (nestopia-1.50.tar.gz) = 1529804 bytes
Home |
Main Index |
Thread Index |
Old Index