mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-20 08:27:15 +00:00
a3de89d837
- M68K debugger support (contributed by Edd Barrett). - Screen initialization has been completely rewritten. - Improved archived ROMs support, ZIP files can now be read properly. - Interactive prompt support which enables DGen to be reconfigured and to load/unload ROMs on the fly. - International (read: non-US/QWERTY) keyboards support. - Many bugfixes PR: ports/165945 Submitted by: Hardy Schumacher <hardy.schumacher@gmx.de> Approved by: eadler (mentor) Feature safe: yes
35 lines
628 B
Makefile
35 lines
628 B
Makefile
# New ports collection makefile for: dgen-sdl
|
|
# Date created: 20 September 2000
|
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dgen-sdl
|
|
PORTVERSION= 1.30
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= SF/dgen/dgen/${PORTVERSION}
|
|
|
|
MAINTAINER= ak@FreeBSD.org
|
|
COMMENT= A wonderful Sega Genesis/MegaDrive emulator
|
|
|
|
USE_SDL= sdl
|
|
USE_GL= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
PLIST_FILES= bin/dgen \
|
|
bin/dgen_tobin
|
|
|
|
MAN1= dgen.1 dgen_tobin.1
|
|
MAN5= dgenrc.5
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == i386
|
|
BUILD_DEPENDS+= nasm:${PORTSDIR}/devel/nasm
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-asm
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|