a961b24660
* Changes in VICE 3.3 ===================== This release stabilizes and introduces the GTK3 UI as the primary user interface for all major ports. For "lesser" platforms we still have the SDL1/SDL2 based interface. All other user interfaces have been removed. RIP ** General ---------- - Old, unmaintained, ports removed: * MacOS Cocoa: use SDL or Gtk3 * WinVice: use SDL or Gtk3 * BeOS/Haiku: use SDL * AmigaOS: use SDL * Unix Xaw: use SDL or Gtk3 * Unix Gtk2: use SDL or Gtk3 * OS/2: use SDL - Fix building against external ffmpeg >= 4.0 - Fix errors in multi-SID code - added single SNES pad emulation (compatible to Ninjas adapter/TrapThem64) - Make VICE much faster by using -O3 vs -O2 - add a slot number before the literal name of a game-controller, which is less confusing when more than one controller of the same type is used - fix parsing of the commandline with -config first - added dutch to list of keyboard mappings (more details in the included share/doc/vice/NEWS file)
56 lines
1.7 KiB
Makefile
56 lines
1.7 KiB
Makefile
# $NetBSD: Makefile,v 1.136 2018/12/31 15:38:55 rhialto Exp $
|
|
|
|
DISTNAME= vice-3.3
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=vice-emu/}
|
|
|
|
MAINTAINER= rhialto@NetBSD.org
|
|
HOMEPAGE= http://vice-emu.sourceforge.net/
|
|
COMMENT= Emulator for C64, C128, CBM-II, PET, VIC20, Plus4 and C16
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
RESTRICTED= ROM image copyright is questionable.
|
|
NO_BIN_ON_CDROM= ${RESTRICTED}
|
|
NO_SRC_ON_CDROM= ${RESTRICTED}
|
|
NO_BIN_ON_FTP= ${RESTRICTED}
|
|
NO_SRC_ON_FTP= ${RESTRICTED}
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_LANGUAGES= c c++11
|
|
USE_TOOLS+= gmake pkg-config perl
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-ethernet
|
|
CONFIGURE_ARGS.NetBSD+= --without-oss
|
|
|
|
# Avoid PLIST mismatch if these programs are installed
|
|
CONFIGURE_ENV+= ac_cv_prog_TEXI2DVI=no
|
|
CONFIGURE_ENV+= ac_cv_prog_PDFTEX=no
|
|
|
|
INFO_FILES= yes
|
|
FONTS_DIRS.x11= ${PREFIX}/share/vice/fonts
|
|
REQD_DIRS+= ${PREFIX}/share/vice/fonts
|
|
REQD_DIRS+= ${PREFIX}/share/vice
|
|
|
|
BUILD_DEPENDS+= xa65-[0-9]*:../../devel/xa65
|
|
|
|
SUBST_CLASSES+= prefix
|
|
SUBST_STAGE.prefix= post-configure
|
|
SUBST_FILES.prefix= man/vice.1
|
|
SUBST_FILES.prefix+= doc/html/vice_4.html
|
|
SUBST_FILES.prefix+= doc/vice.info
|
|
SUBST_FILES.prefix+= doc/vice.txt
|
|
SUBST_SED.prefix= -e 's|/usr/local|${PREFIX}|g'
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../audio/flac/buildlink3.mk"
|
|
.include "../../audio/lame/buildlink3.mk"
|
|
.include "../../audio/libvorbis/buildlink3.mk"
|
|
.include "../../audio/mpg123/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../graphics/giflib/buildlink3.mk"
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.include "../../net/libpcap/buildlink3.mk"
|
|
.include "../../mk/jpeg.buildlink3.mk"
|
|
.include "../../mk/readline.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|