AdvanceMESS is an unofficial MESS (Multi Emulator Super System) version with advanced video support. It is an emulator for the hardware of many different games consoles (e.g. Sega, NES, SNES, etc.) as well as many different old games-oriented home computers (e.g. C64, C128, ZX80, etc.) AdvanceMESS supports many special video effects to improve image quality when it's stretched. The most advanced effects add missing pixels trying to match the image patterns. OK bentley@
39 lines
1004 B
Makefile
39 lines
1004 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2016/09/08 20:28:18 fcambus Exp $
|
|
|
|
COMMENT = MESS port with advanced video support for monitors and TVs
|
|
|
|
DISTNAME = advancemess-1.4
|
|
|
|
CATEGORIES = emulators games
|
|
|
|
HOMEPAGE = http://www.advancemame.it/
|
|
|
|
MAINTAINER = Frederic Cambus <fcambus@openbsd.org>
|
|
|
|
# GPLv2+ and MAME License
|
|
PERMIT_PACKAGE_CDROM = unclear license
|
|
PERMIT_PACKAGE_FTP = unclear license
|
|
PERMIT_DISTFILES_FTP = unclear license
|
|
|
|
WANTLIB += SDL c expat freetype m pthread z
|
|
|
|
MASTER_SITES = https://github.com/amadvance/advancemame/releases/download/${DISTNAME}/
|
|
|
|
LIB_DEPENDS = devel/sdl
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
USE_GMAKE = Yes
|
|
|
|
post-patch:
|
|
@sed -i 's,@@,@,' ${WRKSRC}/Makefile.in
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/obj/mess/generic/blend/advmess ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/doc/advmame.1 ${PREFIX}/man/man1/advmess.1
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/advancemess
|
|
${INSTALL_DATA} ${WRKSRC}/doc/advmame.txt \
|
|
${PREFIX}/share/doc/advancemess/advmess.txt
|
|
|
|
.include <bsd.port.mk>
|