in archivers is too old. Updated patch. From ChangeLog: ---------------------------------------------------------------- 1.45 ---------------------------------------------------------------- Unix Shell: Additions: - Added the ability to switch FDS disks for multi-disk games - xBR filter options - Support for more archive formats through libarchive - Differentiated Soft/Hard Reset Changes: - Removed internal zip and 7zip decoders in favour of libarchive - Replaced gtk_key_snooper with key_press_event and key_release_event Fixes: - 7zip CRC check segfault Windows Shell: Additions: - xBR filter options Changes: - Redundant TV Aspect checkbox removed from NTSC filter dialog - Modified default sound settings to avoid desync libretro: Additions: - blargg's NTSC filter core option - L/R now insert coins on Vs. System games Core: Additions: - xBR filter added - Hyllian, notBald Fixes: - Triangle volume bug in Dendy mode - emu-russia - NTSC filter background colour fix - blargg ...for more, read changelog.txt in the source repo.
44 lines
1.3 KiB
Makefile
44 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.4 2014/05/04 03:25:15 othyro Exp $
|
|
#
|
|
|
|
DISTNAME= nestopia-1.45
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=nestopiaue/}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://rbelmont.mameworld.info/?page_id=200
|
|
COMMENT= Portable, very accurate NES emulator with UNIF support
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_TOOLS= gmake pkg-config
|
|
|
|
SUBST_CLASSES+= oss
|
|
SUBST_SED.oss= -e "s,/dev/dsp,${DEVOSSAUDIO},g"
|
|
SUBST_FILES.oss= source/unix/oss.cpp
|
|
SUBST_MESSAGE.oss= Fixing path to OSS device.
|
|
SUBST_STAGE.oss= pre-build
|
|
|
|
SUBST_CLASSES+= prefix
|
|
SUBST_FILES.prefix= Makefile
|
|
SUBST_MESSAGE.prefix= Fixing PREFIX path.
|
|
SUBST_SED.prefix= -e "s|/usr/local|${PREFIX}|1"
|
|
SUBST_STAGE.prefix= post-patch
|
|
|
|
INSTALLATION_DIRS= share/doc/nestopia
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/README.unix \
|
|
${DESTDIR}${PREFIX}/share/doc/nestopia
|
|
${INSTALL_DATA} ${WRKSRC}/readme.html \
|
|
${DESTDIR}${PREFIX}/share/doc/nestopia
|
|
|
|
.include "../../wip/libarchive/buildlink3.mk"
|
|
.include "../../sysutils/desktop-file-utils/buildlink3.mk"
|
|
BUILD_DEPENDS+= xdg-utils-[0-9]*:../../misc/xdg-utils
|
|
.include "../../audio/alsa-lib/buildlink3.mk"
|
|
.include "../../devel/SDL/buildlink3.mk"
|
|
.include "../../x11/gtk3/buildlink3.mk"
|
|
.include "../../mk/oss.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|