pkgsrc-wip/bsnes/Makefile
Thomas Klausner c2f4ac0388 Update to 0.39:
Changelog:

    * Recovered ~10% speed loss from last release via S-CPU IRQ timing optimizations
    * Implemented O(1) binary-heap priority queue for event scheduling
    * Fixed a bug where BS-X slotted carts were never mapping SRAM
    * Fixed a bug where invalid controller input was always being allowed
    * Fixed all compilation warnings with GCC 4.3 and Visual C++ 9.0
    * Added advanced options to control S-CPU ALU hardware delays
    * S-RTC and SPC7110 timers updated to handle time_t overflow (Y2k38) gracefully
    * Cheat codes can now have multiple codes per entry, and multiple lines per description
    * Rewrote config file parser; removed config/ class from emulator core
    * Windows: added 256x256 image to program icon set
    * Linux: fixed Xorg keysym mapping, key names should show correctly in all cases now
    * UI: updated video panel, added fullscreen-on-startup and NTSC merge fields options
    * UI: simplified audio panel
    * UI: boolean options on advanced panel can be toggled via double-click
    * Lots of code cleanup, especially for S-CPU IRQ handling and nall template library
2009-01-18 19:01:33 +00:00

34 lines
1 KiB
Makefile

# $NetBSD: Makefile,v 1.2 2009/01/18 19:01:33 thomasklausner Exp $
#
DISTNAME= bsnes_v039
PKGNAME= ${DISTNAME:S/_v0/-0./}
CATEGORIES= emulators
MASTER_SITES= http://byuu.cinnamonpirate.com/files/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.byuu.org/
COMMENT= SNES emulator
WRKSRC= ${WRKDIR}/src
USE_DIRS= xdg-1.4
USE_LANGUAGES= c c++
USE_TOOLS+= gmake pkg-config
MAKE_FLAGS+= platform=x compiler=gcc enable_gzip=true
do-install:
${INSTALL_PROGRAM} ${WRKDIR}/bsnes ${DESTDIR}${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/data/bsnes.png ${DESTDIR}${PREFIX}/share/icons
.include "../../audio/alsa-lib/buildlink3.mk"
.include "../../audio/libao/buildlink3.mk"
.include "../../audio/openal/buildlink3.mk"
.include "../../audio/pulseaudio/buildlink3.mk"
.include "../../devel/SDL/buildlink3.mk"
.include "../../devel/zlib/buildlink3.mk"
.include "../../graphics/MesaLib/buildlink3.mk"
.include "../../x11/gtk2/buildlink3.mk"
.include "../../x11/libXv/buildlink3.mk"
.include "../../x11/libXtst/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"