6a49a2efbe
Osmose is another Sega Master System / Gamegear emulator. The emulator is released as open source project, under the GPL license. - SMS: Good compatibility. At this stage, the emulator can run 96% of commercial games and public demos, except games that rely on the codemaster mapper, which work but do not have the proper video mode emulated. - Game Gear: Good compatibility. At this stage, the emulator can run 98.0% of game gear ROMS. - SN76489 sound is supported, but needs more work on the noise register. - Support for .zip, .sms and .gg formats. - Video filters: monochrome, scanline, scale2x, bilinear, nearest neighbour, and a new interesting scale2xscanline (fullscreen option always also available). - Pad (keyboard or joystick mapped), Sport Paddle (mouse mapped) emulation. - PAL/NTSC Timing. - Japanese/Export console. - In-game screenshots, GFX rip, sound shot. - Accurate auto-frameskip. - Configurable keyboard configuration. - Joystick support. TODO: Awfully awfully slow -- massive frameskipping on a fast machine (1 in 100 displayed).
24 lines
682 B
Makefile
24 lines
682 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2006/12/13 18:34:02 thomasklausner Exp $
|
|
#
|
|
|
|
DISTNAME= Osmose_0-8-0_src
|
|
PKGNAME= osmose-0.8.0
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= http://bcz.emu-france.com/osmose/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://bcz.emu-france.com/index.htm
|
|
COMMENT= Sega Master System/Game Gear emulator
|
|
|
|
WRKSRC= ${WRKDIR}/Osmose
|
|
USE_LANGUAGES= c c++
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/osmose ${PREFIX}/bin
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/osmose
|
|
${INSTALL_DATA} ${WRKSRC}/readme.txt ${PREFIX}/share/doc/osmose
|
|
|
|
.include "../../devel/SDL/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|