Mon Dec 31 15:38:55 2018 UTC ()
emulators/vice: update to 3.3.

* 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)


(rhialto)
diff -r1.135 -r1.136 pkgsrc/emulators/vice/Makefile
diff -r1.26 -r1.27 pkgsrc/emulators/vice/PLIST
diff -r1.45 -r1.46 pkgsrc/emulators/vice/distinfo
diff -r1.9 -r1.10 pkgsrc/emulators/vice/options.mk
diff -r1.1 -r1.2 pkgsrc/emulators/vice/patches/patch-configure
diff -r1.2 -r1.3 pkgsrc/emulators/vice/patches/patch-data_fonts_Makefile.in
diff -r1.1 -r0 pkgsrc/emulators/vice/patches/patch-po_Makefile.in.in

cvs diff -r1.135 -r1.136 pkgsrc/emulators/vice/Makefile (expand / switch to unified diff)

--- pkgsrc/emulators/vice/Makefile 2018/11/23 08:06:30 1.135
+++ pkgsrc/emulators/vice/Makefile 2018/12/31 15:38:55 1.136
@@ -1,53 +1,56 @@ @@ -1,53 +1,56 @@
1# $NetBSD: Makefile,v 1.135 2018/11/23 08:06:30 ryoon Exp $ 1# $NetBSD: Makefile,v 1.136 2018/12/31 15:38:55 rhialto Exp $
2 2
3DISTNAME= vice-3.2 3DISTNAME= vice-3.3
4PKGREVISION= 4 
5CATEGORIES= emulators 4CATEGORIES= emulators
6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=vice-emu/} 5MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=vice-emu/}
7#MASTER_SITES+= ftp://ftp.zimmers.net/pub/cbm/crossplatform/emulators/VICE/ 
8#MASTER_SITES+= http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/ 
9 6
10MAINTAINER= rhialto@falu.nl 7MAINTAINER= rhialto@NetBSD.org
11HOMEPAGE= http://vice-emu.sourceforge.net/ 8HOMEPAGE= http://vice-emu.sourceforge.net/
12COMMENT= Emulator for C64, C128, CBM-II, PET, VIC20, Plus4 and C16 9COMMENT= Emulator for C64, C128, CBM-II, PET, VIC20, Plus4 and C16
13LICENSE= gnu-gpl-v2 10LICENSE= gnu-gpl-v2
14 11
15RESTRICTED= ROM image copyright is questionable. 12RESTRICTED= ROM image copyright is questionable.
16NO_BIN_ON_CDROM= ${RESTRICTED} 13NO_BIN_ON_CDROM= ${RESTRICTED}
17NO_SRC_ON_CDROM= ${RESTRICTED} 14NO_SRC_ON_CDROM= ${RESTRICTED}
18NO_BIN_ON_FTP= ${RESTRICTED} 15NO_BIN_ON_FTP= ${RESTRICTED}
19NO_SRC_ON_FTP= ${RESTRICTED} 16NO_SRC_ON_FTP= ${RESTRICTED}
20 17
21USE_PKGLOCALEDIR= yes 18USE_PKGLOCALEDIR= yes
22USE_LANGUAGES= c c++ 19USE_LANGUAGES= c c++11
23USE_TOOLS+= gmake msgfmt pkg-config perl 20USE_TOOLS+= gmake pkg-config perl
24GNU_CONFIGURE= yes 21GNU_CONFIGURE= yes
25CONFIGURE_ARGS+= --enable-ethernet 22CONFIGURE_ARGS+= --enable-ethernet
26CONFIGURE_ARGS+= --enable-fullscreen 
27CONFIGURE_ARGS.NetBSD+= --without-oss 23CONFIGURE_ARGS.NetBSD+= --without-oss
28 24
29# Avoid PLIST mismatch if these programs are installed 25# Avoid PLIST mismatch if these programs are installed
30CONFIGURE_ENV+= ac_cv_prog_TEXI2DVI=no 26CONFIGURE_ENV+= ac_cv_prog_TEXI2DVI=no
31CONFIGURE_ENV+= ac_cv_prog_PDFTEX=no 27CONFIGURE_ENV+= ac_cv_prog_PDFTEX=no
32 28
33INFO_FILES= yes 29INFO_FILES= yes
34FONTS_DIRS.x11= ${PREFIX}/share/vice/fonts 30FONTS_DIRS.x11= ${PREFIX}/share/vice/fonts
35REQD_DIRS+= ${PREFIX}/share/vice/fonts 31REQD_DIRS+= ${PREFIX}/share/vice/fonts
36REQD_DIRS+= ${PREFIX}/share/vice 32REQD_DIRS+= ${PREFIX}/share/vice
37 33
38DEPENDS+= xa65-[0-9]*:../../devel/xa65 34BUILD_DEPENDS+= xa65-[0-9]*:../../devel/xa65
 35
 36SUBST_CLASSES+= prefix
 37SUBST_STAGE.prefix= post-configure
 38SUBST_FILES.prefix= man/vice.1
 39SUBST_FILES.prefix+= doc/html/vice_4.html
 40SUBST_FILES.prefix+= doc/vice.info
 41SUBST_FILES.prefix+= doc/vice.txt
 42SUBST_SED.prefix= -e 's|/usr/local|${PREFIX}|g'
39 43
40.include "options.mk" 44.include "options.mk"
41 45
42.include "../../audio/flac/buildlink3.mk" 46.include "../../audio/flac/buildlink3.mk"
43.include "../../audio/lame/buildlink3.mk" 47.include "../../audio/lame/buildlink3.mk"
44.include "../../audio/libvorbis/buildlink3.mk" 48.include "../../audio/libvorbis/buildlink3.mk"
45.include "../../audio/mpg123/buildlink3.mk" 49.include "../../audio/mpg123/buildlink3.mk"
46.include "../../devel/gettext-lib/buildlink3.mk" 
47.include "../../devel/zlib/buildlink3.mk" 50.include "../../devel/zlib/buildlink3.mk"
48.include "../../graphics/giflib/buildlink3.mk" 51.include "../../graphics/giflib/buildlink3.mk"
49.include "../../graphics/png/buildlink3.mk" 52.include "../../graphics/png/buildlink3.mk"
50.include "../../net/libpcap/buildlink3.mk" 53.include "../../net/libpcap/buildlink3.mk"
51.include "../../mk/jpeg.buildlink3.mk" 54.include "../../mk/jpeg.buildlink3.mk"
52.include "../../mk/readline.buildlink3.mk" 55.include "../../mk/readline.buildlink3.mk"
53.include "../../mk/bsd.pkg.mk" 56.include "../../mk/bsd.pkg.mk"

cvs diff -r1.26 -r1.27 pkgsrc/emulators/vice/PLIST (expand / switch to unified diff)

--- pkgsrc/emulators/vice/PLIST 2018/07/14 16:05:19 1.26
+++ pkgsrc/emulators/vice/PLIST 2018/12/31 15:38:55 1.27
@@ -1,102 +1,89 @@ @@ -1,102 +1,89 @@
1@comment $NetBSD: PLIST,v 1.26 2018/07/14 16:05:19 maya Exp $ 1@comment $NetBSD: PLIST,v 1.27 2018/12/31 15:38:55 rhialto Exp $
2bin/c1541 2bin/c1541
3bin/cartconv 3bin/cartconv
4bin/petcat 4bin/petcat
5bin/vsid 5bin/vsid
6bin/x128 6bin/x128
7bin/x64 7bin/x64
8bin/x64dtv 8bin/x64dtv
9bin/x64sc 9bin/x64sc
10bin/xcbm2 10bin/xcbm2
11bin/xcbm5x0 11bin/xcbm5x0
12bin/xpet 12bin/xpet
13bin/xplus4 13bin/xplus4
14bin/xscpu64 14bin/xscpu64
15bin/xvic 15bin/xvic
16info/vice.info 16info/vice.info
17info/vice.txt 17info/vice.txt
18man/man1/c1541.1 18man/man1/c1541.1
19man/man1/cartconv.1 19man/man1/cartconv.1
20man/man1/petcat.1 20man/man1/petcat.1
21man/man1/vice.1 21man/man1/vice.1
22share/doc/vice/Android-Howto.txt 22share/doc/vice/Android-Howto.txt
23share/doc/vice/CIA-README.txt 23share/doc/vice/CIA-README.txt
24share/doc/vice/CIPS2008.png 24share/doc/vice/CIPS2008.png
25share/doc/vice/COPYING 25share/doc/vice/COPYING
26share/doc/vice/Documentation-Howto.txt 26share/doc/vice/Documentation-Howto.txt
27share/doc/vice/Doxygen-Howto.txt 27share/doc/vice/Doxygen-Howto.txt
28share/doc/vice/GTK3-Howto.txt 28share/doc/vice/FreeBSD-GTK3-Howto.txt
 29share/doc/vice/GTK3-macOS.txt
29share/doc/vice/Lato-Bold.eot 30share/doc/vice/Lato-Bold.eot
30share/doc/vice/Lato-Bold.ttf 31share/doc/vice/Lato-Bold.ttf
31share/doc/vice/Lato-Bold.woff 32share/doc/vice/Lato-Bold.woff
32share/doc/vice/Lato-Bold.woff2 33share/doc/vice/Lato-Bold.woff2
33share/doc/vice/Lato-BoldItalic.eot 34share/doc/vice/Lato-BoldItalic.eot
34share/doc/vice/Lato-BoldItalic.ttf 35share/doc/vice/Lato-BoldItalic.ttf
35share/doc/vice/Lato-BoldItalic.woff 36share/doc/vice/Lato-BoldItalic.woff
36share/doc/vice/Lato-BoldItalic.woff2 37share/doc/vice/Lato-BoldItalic.woff2
37share/doc/vice/Lato-Italic.eot 38share/doc/vice/Lato-Italic.eot
38share/doc/vice/Lato-Italic.ttf 39share/doc/vice/Lato-Italic.ttf
39share/doc/vice/Lato-Italic.woff 40share/doc/vice/Lato-Italic.woff
40share/doc/vice/Lato-Italic.woff2 41share/doc/vice/Lato-Italic.woff2
41share/doc/vice/Lato-Regular.eot 42share/doc/vice/Lato-Regular.eot
42share/doc/vice/Lato-Regular.ttf 43share/doc/vice/Lato-Regular.ttf
43share/doc/vice/Lato-Regular.woff 44share/doc/vice/Lato-Regular.woff
44share/doc/vice/Lato-Regular.woff2 45share/doc/vice/Lato-Regular.woff2
45share/doc/vice/Linux-Mingw32-Howto.txt 46share/doc/vice/Linux-GTK3-Howto.txt
46share/doc/vice/Linux-Native-Howto.txt 
47share/doc/vice/MSDOS-Ethernet-Howto.txt 
48share/doc/vice/MSDOS-Howto.txt 
49share/doc/vice/MacOSX-Cocoa-Howto.txt 
50share/doc/vice/MacOSX-Howto.txt 
51share/doc/vice/MacOSX-ResourceTree.txt 
52share/doc/vice/Minix-Howto.txt 
53share/doc/vice/NEWS 47share/doc/vice/NEWS
54share/doc/vice/NLS-Howto.txt 48share/doc/vice/NetBSD-howto.txt
55share/doc/vice/OFL.txt 49share/doc/vice/OFL.txt
56share/doc/vice/OpenVMS-Howto.txt 
57share/doc/vice/Readme-Amiga.txt 
58share/doc/vice/Readme-BeOS.txt 
59share/doc/vice/Readme-DOS.txt 
60share/doc/vice/Readme-GTK3.txt 50share/doc/vice/Readme-GTK3.txt
61share/doc/vice/Readme-MacOSX.txt 
62share/doc/vice/Readme-SDL.txt 51share/doc/vice/Readme-SDL.txt
63share/doc/vice/Readme-SDL2.txt 52share/doc/vice/Readme-SDL2.txt
64share/doc/vice/Readme-Unix.txt 53share/doc/vice/Release-Howto.txt
65share/doc/vice/SDL-Howto.txt 54share/doc/vice/SDL-Howto.txt
66share/doc/vice/SDL-support.txt 55share/doc/vice/SDL-support.txt
67share/doc/vice/Win32-Cygwin-Howto.txt 56share/doc/vice/Windows-MinGW-GTK3-Howto.txt
68share/doc/vice/Win32-Mingw32-Howto.txt 
69share/doc/vice/WinNT-Unicode.txt 
70share/doc/vice/amigaos.html 57share/doc/vice/amigaos.html
71share/doc/vice/android.html 58share/doc/vice/android.html
72share/doc/vice/beos.html 59share/doc/vice/beos.html
73share/doc/vice/coding-guidelines.txt 60share/doc/vice/coding-guidelines.txt
74share/doc/vice/darwin.html 61share/doc/vice/darwin.html
75share/doc/vice/ffmpeg-support.txt 62share/doc/vice/ffmpeg-support.txt
76share/doc/vice/hardware-sids.txt 63share/doc/vice/hardware-sids.txt
77share/doc/vice/iec-bus.txt 64share/doc/vice/iec-bus.txt
78share/doc/vice/index.html 65share/doc/vice/index.html
79share/doc/vice/macosx.html 66share/doc/vice/macosx.html
80share/doc/vice/new.gif 67share/doc/vice/new.gif
81share/doc/vice/nsosrh.html 68share/doc/vice/nsosrh.html
82share/doc/vice/ports-status.txt 
83share/doc/vice/qnx.html 69share/doc/vice/qnx.html
84share/doc/vice/robots.txt 70share/doc/vice/robots.txt
85share/doc/vice/sco.html 71share/doc/vice/sco.html
86share/doc/vice/sitemap.xml 72share/doc/vice/sitemap.xml
87share/doc/vice/solaris.html 73share/doc/vice/solaris.html
88share/doc/vice/sortix.html 74share/doc/vice/sortix.html
89share/doc/vice/unix.html 75share/doc/vice/unix.html
 76share/doc/vice/vice-logo-black.svg
90share/doc/vice/vice-logo.svg 77share/doc/vice/vice-logo.svg
91share/doc/vice/vice.chm 78share/doc/vice/vice.chm
92share/doc/vice/vice.css 79share/doc/vice/vice.css
93share/doc/vice/vice.guide 80share/doc/vice/vice.guide
94share/doc/vice/vice.hlp 81share/doc/vice/vice.hlp
95share/doc/vice/vice.inf 82share/doc/vice/vice.inf
96share/doc/vice/vice.info 83share/doc/vice/vice.info
97share/doc/vice/vice.pdf 84share/doc/vice/vice.pdf
98share/doc/vice/vice.txt 85share/doc/vice/vice.txt
99share/doc/vice/vice_1.html 86share/doc/vice/vice_1.html
100share/doc/vice/vice_10.html 87share/doc/vice/vice_10.html
101share/doc/vice/vice_11.html 88share/doc/vice/vice_11.html
102share/doc/vice/vice_12.html 89share/doc/vice/vice_12.html
@@ -110,203 +97,183 @@ share/doc/vice/vice_19.html @@ -110,203 +97,183 @@ share/doc/vice/vice_19.html
110share/doc/vice/vice_2.html 97share/doc/vice/vice_2.html
111share/doc/vice/vice_20.html 98share/doc/vice/vice_20.html
112share/doc/vice/vice_21.html 99share/doc/vice/vice_21.html
113share/doc/vice/vice_22.html 100share/doc/vice/vice_22.html
114share/doc/vice/vice_3.html 101share/doc/vice/vice_3.html
115share/doc/vice/vice_4.html 102share/doc/vice/vice_4.html
116share/doc/vice/vice_5.html 103share/doc/vice/vice_5.html
117share/doc/vice/vice_6.html 104share/doc/vice/vice_6.html
118share/doc/vice/vice_7.html 105share/doc/vice/vice_7.html
119share/doc/vice/vice_8.html 106share/doc/vice/vice_8.html
120share/doc/vice/vice_9.html 107share/doc/vice/vice_9.html
121share/doc/vice/vice_toc.html 108share/doc/vice/vice_toc.html
122share/doc/vice/windows.html 109share/doc/vice/windows.html
123${PLIST.mo}share/locale/da/LC_MESSAGES/vice.mo 
124${PLIST.mo}share/locale/de/LC_MESSAGES/vice.mo 
125${PLIST.mo}share/locale/es/LC_MESSAGES/vice.mo 
126${PLIST.mo}share/locale/fr/LC_MESSAGES/vice.mo 
127${PLIST.mo}share/locale/hu/LC_MESSAGES/vice.mo 
128${PLIST.mo}share/locale/it/LC_MESSAGES/vice.mo 
129${PLIST.mo}share/locale/ko/LC_MESSAGES/vice.mo 
130${PLIST.mo}share/locale/nl/LC_MESSAGES/vice.mo 
131${PLIST.mo}share/locale/pl/LC_MESSAGES/vice.mo 
132${PLIST.mo}share/locale/ru/LC_MESSAGES/vice.mo 
133${PLIST.mo}share/locale/sv/LC_MESSAGES/vice.mo 
134${PLIST.mo}share/locale/tr/LC_MESSAGES/vice.mo 
135share/vice/C128/basic64 110share/vice/C128/basic64
136share/vice/C128/basichi 111share/vice/C128/basichi
137share/vice/C128/basiclo 112share/vice/C128/basiclo
138share/vice/C128/c64hq.vpl 113share/vice/C128/c64hq.vpl
139share/vice/C128/c64s.vpl 114share/vice/C128/c64s.vpl
140share/vice/C128/ccs64.vpl 115share/vice/C128/ccs64.vpl
141share/vice/C128/chargch 116share/vice/C128/chargch
142share/vice/C128/chargde 117share/vice/C128/chargde
143share/vice/C128/chargen 118share/vice/C128/chargen
144share/vice/C128/chargfr 119share/vice/C128/chargfr
 120share/vice/C128/chargno
145share/vice/C128/chargse 121share/vice/C128/chargse
 122share/vice/C128/cjam.vpl
146share/vice/C128/colodore.vpl 123share/vice/C128/colodore.vpl
147share/vice/C128/community-colors.vpl 124share/vice/C128/community-colors.vpl
148share/vice/C128/deekay.vpl 125share/vice/C128/deekay.vpl
149share/vice/C128/default.vrs 126share/vice/C128/default.vrs
150share/vice/C128/frodo.vpl 127share/vice/C128/frodo.vpl
151share/vice/C128/godot.vpl 128share/vice/C128/godot.vpl
 129${PLIST.x11}share/vice/C128/gtk3_pos.vkm
 130${PLIST.x11}share/vice/C128/gtk3_sym.vkm
152share/vice/C128/kernal 131share/vice/C128/kernal
153share/vice/C128/kernal64 132share/vice/C128/kernal64
154share/vice/C128/kernalch 133share/vice/C128/kernalch
155share/vice/C128/kernalde 134share/vice/C128/kernalde
156share/vice/C128/kernalfi 135share/vice/C128/kernalfi
157share/vice/C128/kernalfr 136share/vice/C128/kernalfr
158share/vice/C128/kernalit 137share/vice/C128/kernalit
159share/vice/C128/kernalno 138share/vice/C128/kernalno
160share/vice/C128/kernalse 139share/vice/C128/kernalse
161share/vice/C128/pc64.vpl 140share/vice/C128/pc64.vpl
162share/vice/C128/pepto-ntsc-sony.vpl 141share/vice/C128/pepto-ntsc-sony.vpl
163share/vice/C128/pepto-ntsc.vpl 142share/vice/C128/pepto-ntsc.vpl
164share/vice/C128/pepto-pal.vpl 143share/vice/C128/pepto-pal.vpl
165share/vice/C128/pepto-palold.vpl 144share/vice/C128/pepto-palold.vpl
166share/vice/C128/ptoing.vpl 145share/vice/C128/ptoing.vpl
167share/vice/C128/rgb.vpl 146share/vice/C128/rgb.vpl
168${PLIST.sdl}share/vice/C128/sdl_hotkeys.vkm 147${PLIST.sdl}share/vice/C128/sdl_hotkeys.vkm
169${PLIST.sdl}share/vice/C128/sdl_pos.vkm 148${PLIST.sdl}share/vice/C128/sdl_pos.vkm
170${PLIST.x11}share/vice/C128/gtk3_pos.vkm 
171${PLIST.x11}share/vice/C128/gtk3_sym.vkm 
172share/vice/C128/vdc_comp.vpl 149share/vice/C128/vdc_comp.vpl
173share/vice/C128/vdc_deft.vpl 150share/vice/C128/vdc_deft.vpl
174share/vice/C128/vice.vpl 151share/vice/C128/vice.vpl
175${PLIST.x11}share/vice/C128/x11_pos.vkm 
176${PLIST.x11}share/vice/C128/x11_sym.vkm 
177share/vice/C64/basic 152share/vice/C64/basic
178share/vice/C64/c64hq.vpl 153share/vice/C64/c64hq.vpl
179share/vice/C64/c64mem.sym 154share/vice/C64/c64mem.sym
180share/vice/C64/c64s.vpl 155share/vice/C64/c64s.vpl
181share/vice/C64/ccs64.vpl 156share/vice/C64/ccs64.vpl
182share/vice/C64/chargen 157share/vice/C64/chargen
 158share/vice/C64/cjam.vpl
183share/vice/C64/colodore.vpl 159share/vice/C64/colodore.vpl
184share/vice/C64/community-colors.vpl 160share/vice/C64/community-colors.vpl
185share/vice/C64/deekay.vpl 161share/vice/C64/deekay.vpl
186share/vice/C64/default.vrs 162share/vice/C64/default.vrs
187share/vice/C64/edkernal 163share/vice/C64/edkernal
188share/vice/C64/frodo.vpl 164share/vice/C64/frodo.vpl
189share/vice/C64/godot.vpl 165share/vice/C64/godot.vpl
190share/vice/C64/gskernal 166share/vice/C64/gskernal
 167${PLIST.x11}share/vice/C64/gtk3_keyrah.vkm
 168${PLIST.x11}share/vice/C64/gtk3_keyrah_de.vkm
 169${PLIST.x11}share/vice/C64/gtk3_pos.vkm
 170${PLIST.x11}share/vice/C64/gtk3_pos_de.vkm
 171${PLIST.x11}share/vice/C64/gtk3_sym.vkm
 172${PLIST.x11}share/vice/C64/gtk3_sym_de.vkm
 173${PLIST.x11}share/vice/C64/gtk3_sym_nl.vkm
191share/vice/C64/jpchrgen 174share/vice/C64/jpchrgen
192share/vice/C64/jpkernal 175share/vice/C64/jpkernal
193share/vice/C64/kernal 176share/vice/C64/kernal
194share/vice/C64/pc64.vpl 177share/vice/C64/pc64.vpl
195share/vice/C64/pepto-ntsc-sony.vpl 178share/vice/C64/pepto-ntsc-sony.vpl
196share/vice/C64/pepto-ntsc.vpl 179share/vice/C64/pepto-ntsc.vpl
197share/vice/C64/pepto-pal.vpl 180share/vice/C64/pepto-pal.vpl
198share/vice/C64/pepto-palold.vpl 181share/vice/C64/pepto-palold.vpl
199share/vice/C64/ptoing.vpl 182share/vice/C64/ptoing.vpl
200share/vice/C64/rgb.vpl 183share/vice/C64/rgb.vpl
201${PLIST.sdl}share/vice/C64/sdl_hotkeys.vkm 184${PLIST.sdl}share/vice/C64/sdl_hotkeys.vkm
202${PLIST.sdl}share/vice/C64/sdl_hotkeys_vsid.vkm 185${PLIST.sdl}share/vice/C64/sdl_hotkeys_vsid.vkm
203${PLIST.sdl}share/vice/C64/sdl_joymap_ps3.vjm 186${PLIST.sdl}share/vice/C64/sdl_joymap_ps3.vjm
204${PLIST.sdl}share/vice/C64/sdl_keyrah.vkm 187${PLIST.sdl}share/vice/C64/sdl_keyrah.vkm
205${PLIST.sdl}share/vice/C64/sdl_keyrah_combian.vkm 188${PLIST.sdl}share/vice/C64/sdl_keyrah_combian.vkm
206${PLIST.sdl}share/vice/C64/sdl_keyrah_de.vkm 189${PLIST.sdl}share/vice/C64/sdl_keyrah_de.vkm
207${PLIST.sdl}share/vice/C64/sdl_keyrah_retropie.vkm 190${PLIST.sdl}share/vice/C64/sdl_keyrah_retropie.vkm
208${PLIST.sdl}share/vice/C64/sdl_keyrah_retropie_de.vkm 191${PLIST.sdl}share/vice/C64/sdl_keyrah_retropie_de.vkm
209${PLIST.sdl}share/vice/C64/sdl_pos.vkm 192${PLIST.sdl}share/vice/C64/sdl_pos.vkm
210${PLIST.sdl}share/vice/C64/sdl_pos_da.vkm 193${PLIST.sdl}share/vice/C64/sdl_pos_da.vkm
211${PLIST.sdl}share/vice/C64/sdl_pos_de.vkm 194${PLIST.sdl}share/vice/C64/sdl_pos_de.vkm
212${PLIST.sdl}share/vice/C64/sdl_pos_fi.vkm 195${PLIST.sdl}share/vice/C64/sdl_pos_fi.vkm
213${PLIST.sdl}share/vice/C64/sdl_pos_no.vkm 196${PLIST.sdl}share/vice/C64/sdl_pos_no.vkm
214${PLIST.sdl}share/vice/C64/sdl_sym.vkm 197${PLIST.sdl}share/vice/C64/sdl_sym.vkm
215${PLIST.sdl}share/vice/C64/sdl_sym_de.vkm 198${PLIST.sdl}share/vice/C64/sdl_sym_de.vkm
 199${PLIST.sdl}share/vice/C64/sdl_sym_nl.vkm
216share/vice/C64/sxkernal 200share/vice/C64/sxkernal
217share/vice/C64/vice.vpl 201share/vice/C64/vice.vpl
218${PLIST.x11}share/vice/C64/gtk3_keyrah.vkm 
219${PLIST.x11}share/vice/C64/gtk3_keyrah_de.vkm 
220${PLIST.x11}share/vice/C64/gtk3_pos.vkm 
221${PLIST.x11}share/vice/C64/gtk3_pos_de.vkm 
222${PLIST.x11}share/vice/C64/gtk3_sym.vkm 
223${PLIST.x11}share/vice/C64/gtk3_sym_de.vkm 
224${PLIST.x11}share/vice/C64/x11_keyrah.vkm 
225${PLIST.x11}share/vice/C64/x11_keyrah_de.vkm 
226${PLIST.x11}share/vice/C64/x11_pos.vkm 
227${PLIST.x11}share/vice/C64/x11_pos_de.vkm 
228${PLIST.x11}share/vice/C64/x11_sym.vkm 
229${PLIST.x11}share/vice/C64/x11_sym_de.vkm 
230share/vice/C64DTV/basic 202share/vice/C64DTV/basic
231share/vice/C64DTV/c64mem.sym 203share/vice/C64DTV/c64mem.sym
232share/vice/C64DTV/chargen 204share/vice/C64DTV/chargen
233share/vice/C64DTV/default.vrs 205share/vice/C64DTV/default.vrs
234share/vice/C64DTV/dtvrom.bin 206share/vice/C64DTV/dtvrom.bin
 207${PLIST.x11}share/vice/C64DTV/gtk3_keyrah.vkm
 208${PLIST.x11}share/vice/C64DTV/gtk3_keyrah_de.vkm
 209${PLIST.x11}share/vice/C64DTV/gtk3_pos.vkm
 210${PLIST.x11}share/vice/C64DTV/gtk3_pos_de.vkm
 211${PLIST.x11}share/vice/C64DTV/gtk3_sym.vkm
 212${PLIST.x11}share/vice/C64DTV/gtk3_sym_de.vkm
 213${PLIST.x11}share/vice/C64DTV/gtk3_sym_nl.vkm
235share/vice/C64DTV/kernal 214share/vice/C64DTV/kernal
236${PLIST.sdl}share/vice/C64DTV/sdl_hotkeys.vkm 215${PLIST.sdl}share/vice/C64DTV/sdl_hotkeys.vkm
237${PLIST.sdl}share/vice/C64DTV/sdl_keyrah.vkm 216${PLIST.sdl}share/vice/C64DTV/sdl_keyrah.vkm
238${PLIST.sdl}share/vice/C64DTV/sdl_keyrah_combian.vkm 217${PLIST.sdl}share/vice/C64DTV/sdl_keyrah_combian.vkm
239${PLIST.sdl}share/vice/C64DTV/sdl_keyrah_de.vkm 218${PLIST.sdl}share/vice/C64DTV/sdl_keyrah_de.vkm
240${PLIST.sdl}share/vice/C64DTV/sdl_keyrah_retropie.vkm 219${PLIST.sdl}share/vice/C64DTV/sdl_keyrah_retropie.vkm
241${PLIST.sdl}share/vice/C64DTV/sdl_keyrah_retropie_de.vkm 220${PLIST.sdl}share/vice/C64DTV/sdl_keyrah_retropie_de.vkm
242${PLIST.sdl}share/vice/C64DTV/sdl_pos.vkm 221${PLIST.sdl}share/vice/C64DTV/sdl_pos.vkm
243${PLIST.sdl}share/vice/C64DTV/sdl_pos_da.vkm 222${PLIST.sdl}share/vice/C64DTV/sdl_pos_da.vkm
244${PLIST.sdl}share/vice/C64DTV/sdl_pos_de.vkm 223${PLIST.sdl}share/vice/C64DTV/sdl_pos_de.vkm
245${PLIST.sdl}share/vice/C64DTV/sdl_pos_fi.vkm 224${PLIST.sdl}share/vice/C64DTV/sdl_pos_fi.vkm
246${PLIST.sdl}share/vice/C64DTV/sdl_pos_no.vkm 225${PLIST.sdl}share/vice/C64DTV/sdl_pos_no.vkm
247${PLIST.sdl}share/vice/C64DTV/sdl_sym.vkm 226${PLIST.sdl}share/vice/C64DTV/sdl_sym.vkm
248${PLIST.sdl}share/vice/C64DTV/sdl_sym_de.vkm 227${PLIST.sdl}share/vice/C64DTV/sdl_sym_de.vkm
 228${PLIST.sdl}share/vice/C64DTV/sdl_sym_nl.vkm
249share/vice/C64DTV/spiff.vpl 229share/vice/C64DTV/spiff.vpl
250${PLIST.x11}share/vice/C64DTV/gtk3_keyrah.vkm 
251${PLIST.x11}share/vice/C64DTV/gtk3_keyrah_de.vkm 
252${PLIST.x11}share/vice/C64DTV/gtk3_pos.vkm 
253${PLIST.x11}share/vice/C64DTV/gtk3_pos_de.vkm 
254${PLIST.x11}share/vice/C64DTV/gtk3_sym.vkm 
255${PLIST.x11}share/vice/C64DTV/gtk3_sym_de.vkm 
256${PLIST.x11}share/vice/C64DTV/x11_keyrah.vkm 
257${PLIST.x11}share/vice/C64DTV/x11_keyrah_de.vkm 
258${PLIST.x11}share/vice/C64DTV/x11_pos.vkm 
259${PLIST.x11}share/vice/C64DTV/x11_pos_de.vkm 
260${PLIST.x11}share/vice/C64DTV/x11_sym.vkm 
261${PLIST.x11}share/vice/C64DTV/x11_sym_de.vkm 
262share/vice/CBM-II/amber.vpl 230share/vice/CBM-II/amber.vpl
263share/vice/CBM-II/basic.128 231share/vice/CBM-II/basic.128
264share/vice/CBM-II/basic.256 232share/vice/CBM-II/basic.256
265share/vice/CBM-II/basic.500 233share/vice/CBM-II/basic.500
266share/vice/CBM-II/c64hq.vpl 234share/vice/CBM-II/c64hq.vpl
267share/vice/CBM-II/c64s.vpl 235share/vice/CBM-II/c64s.vpl
268share/vice/CBM-II/ccs64.vpl 236share/vice/CBM-II/ccs64.vpl
269share/vice/CBM-II/chargen.500 237share/vice/CBM-II/chargen.500
270share/vice/CBM-II/chargen.600 238share/vice/CBM-II/chargen.600
271share/vice/CBM-II/chargen.700 239share/vice/CBM-II/chargen.700
 240share/vice/CBM-II/cjam.vpl
272share/vice/CBM-II/colodore.vpl 241share/vice/CBM-II/colodore.vpl
273share/vice/CBM-II/community-colors.vpl 242share/vice/CBM-II/community-colors.vpl
274share/vice/CBM-II/deekay.vpl 243share/vice/CBM-II/deekay.vpl
275share/vice/CBM-II/frodo.vpl 244share/vice/CBM-II/frodo.vpl
276share/vice/CBM-II/godot.vpl 245share/vice/CBM-II/godot.vpl
277share/vice/CBM-II/green.vpl 246share/vice/CBM-II/green.vpl
 247${PLIST.x11}share/vice/CBM-II/gtk3_sym.vkm
 248${PLIST.x11}share/vice/CBM-II/gtk3_sym_de.vkm
278share/vice/CBM-II/kernal 249share/vice/CBM-II/kernal
279share/vice/CBM-II/kernal.500 250share/vice/CBM-II/kernal.500
280share/vice/CBM-II/pc64.vpl 251share/vice/CBM-II/pc64.vpl
281share/vice/CBM-II/pepto-ntsc-sony.vpl 252share/vice/CBM-II/pepto-ntsc-sony.vpl
282share/vice/CBM-II/pepto-ntsc.vpl 253share/vice/CBM-II/pepto-ntsc.vpl
283share/vice/CBM-II/pepto-pal.vpl 254share/vice/CBM-II/pepto-pal.vpl
284share/vice/CBM-II/pepto-palold.vpl 255share/vice/CBM-II/pepto-palold.vpl
285share/vice/CBM-II/ptoing.vpl 256share/vice/CBM-II/ptoing.vpl
286share/vice/CBM-II/rgb.vpl 257share/vice/CBM-II/rgb.vpl
287share/vice/CBM-II/rom128h.vrs 258share/vice/CBM-II/rom128h.vrs
288share/vice/CBM-II/rom128l.vrs 259share/vice/CBM-II/rom128l.vrs
289share/vice/CBM-II/rom256h.vrs 260share/vice/CBM-II/rom256h.vrs
290share/vice/CBM-II/rom256l.vrs 261share/vice/CBM-II/rom256l.vrs
291share/vice/CBM-II/rom500.vrs 262share/vice/CBM-II/rom500.vrs
292${PLIST.sdl}share/vice/CBM-II/sdl_hotkeys.vkm 263${PLIST.sdl}share/vice/CBM-II/sdl_hotkeys.vkm
293${PLIST.sdl}share/vice/CBM-II/sdl_sym.vkm 264${PLIST.sdl}share/vice/CBM-II/sdl_sym.vkm
294share/vice/CBM-II/vice.vpl 265share/vice/CBM-II/vice.vpl
295share/vice/CBM-II/white.vpl 266share/vice/CBM-II/white.vpl
296${PLIST.x11}share/vice/CBM-II/gtk3_sym.vkm 
297${PLIST.x11}share/vice/CBM-II/gtk3_sym_de.vkm 
298${PLIST.x11}share/vice/CBM-II/x11_sym.vkm 
299${PLIST.x11}share/vice/CBM-II/x11_sym_de.vkm 
300share/vice/DRIVES/d1541II 267share/vice/DRIVES/d1541II
301share/vice/DRIVES/d1571cr 268share/vice/DRIVES/d1571cr
302share/vice/DRIVES/dos1001 269share/vice/DRIVES/dos1001
303share/vice/DRIVES/dos1540 270share/vice/DRIVES/dos1540
304share/vice/DRIVES/dos1541 271share/vice/DRIVES/dos1541
305share/vice/DRIVES/dos1551 272share/vice/DRIVES/dos1551
306share/vice/DRIVES/dos1570 273share/vice/DRIVES/dos1570
307share/vice/DRIVES/dos1571 274share/vice/DRIVES/dos1571
308share/vice/DRIVES/dos1581 275share/vice/DRIVES/dos1581
309share/vice/DRIVES/dos2031 276share/vice/DRIVES/dos2031
310share/vice/DRIVES/dos2040 277share/vice/DRIVES/dos2040
311share/vice/DRIVES/dos3040 278share/vice/DRIVES/dos3040
312share/vice/DRIVES/dos4040 279share/vice/DRIVES/dos4040
@@ -314,150 +281,132 @@ share/vice/PET/amber.vpl @@ -314,150 +281,132 @@ share/vice/PET/amber.vpl
314share/vice/PET/basic1 281share/vice/PET/basic1
315share/vice/PET/basic2 282share/vice/PET/basic2
316share/vice/PET/basic4 283share/vice/PET/basic4
317share/vice/PET/characters.901640-01.bin 284share/vice/PET/characters.901640-01.bin
318share/vice/PET/chargen 285share/vice/PET/chargen
319share/vice/PET/chargen.de 286share/vice/PET/chargen.de
320share/vice/PET/edit1g 287share/vice/PET/edit1g
321share/vice/PET/edit2b 288share/vice/PET/edit2b
322share/vice/PET/edit2g 289share/vice/PET/edit2g
323share/vice/PET/edit4b40 290share/vice/PET/edit4b40
324share/vice/PET/edit4b80 291share/vice/PET/edit4b80
325share/vice/PET/edit4g40 292share/vice/PET/edit4g40
326share/vice/PET/green.vpl 293share/vice/PET/green.vpl
 294${PLIST.x11}share/vice/PET/gtk3_bude_pos.vkm
 295${PLIST.x11}share/vice/PET/gtk3_bude_pos_de.vkm
 296${PLIST.x11}share/vice/PET/gtk3_bude_sym.vkm
 297${PLIST.x11}share/vice/PET/gtk3_bude_sym_de.vkm
 298${PLIST.x11}share/vice/PET/gtk3_buuk_pos.vkm
 299${PLIST.x11}share/vice/PET/gtk3_buuk_pos_de.vkm
 300${PLIST.x11}share/vice/PET/gtk3_buuk_sym.vkm
 301${PLIST.x11}share/vice/PET/gtk3_buuk_sym_de.vkm
 302${PLIST.x11}share/vice/PET/gtk3_grus_pos.vkm
 303${PLIST.x11}share/vice/PET/gtk3_grus_pos_de.vkm
 304${PLIST.x11}share/vice/PET/gtk3_grus_sym.vkm
 305${PLIST.x11}share/vice/PET/gtk3_grus_sym_de.vkm
 306${PLIST.x11}share/vice/PET/gtk3_sym.vkm
327share/vice/PET/hre-9000.324992-02.bin 307share/vice/PET/hre-9000.324992-02.bin
328share/vice/PET/hre-a000.324993-02.bin 308share/vice/PET/hre-a000.324993-02.bin
329share/vice/PET/hre.vrs 309share/vice/PET/hre.vrs
330share/vice/PET/kernal1 310share/vice/PET/kernal1
331share/vice/PET/kernal2 311share/vice/PET/kernal2
332share/vice/PET/kernal4 312share/vice/PET/kernal4
333share/vice/PET/rom1g.vrs 313share/vice/PET/rom1g.vrs
334share/vice/PET/rom2b.vrs 314share/vice/PET/rom2b.vrs
335share/vice/PET/rom2g.vrs 315share/vice/PET/rom2g.vrs
336share/vice/PET/rom4b40.vrs 316share/vice/PET/rom4b40.vrs
337share/vice/PET/rom4b80.vrs 317share/vice/PET/rom4b80.vrs
338share/vice/PET/rom4g40.vrs 318share/vice/PET/rom4g40.vrs
339share/vice/PET/romsuperpet.vrs 319share/vice/PET/romsuperpet.vrs
340${PLIST.sdl}share/vice/PET/sdl_buuk_sym.vkm 320${PLIST.sdl}share/vice/PET/sdl_buuk_sym.vkm
341${PLIST.sdl}share/vice/PET/sdl_grus_sym.vkm 321${PLIST.sdl}share/vice/PET/sdl_grus_sym.vkm
342${PLIST.sdl}share/vice/PET/sdl_hotkeys.vkm 322${PLIST.sdl}share/vice/PET/sdl_hotkeys.vkm
343${PLIST.sdl}share/vice/PET/sdl_sym.vkm 323${PLIST.sdl}share/vice/PET/sdl_sym.vkm
344share/vice/PET/waterloo-a000.901898-01.bin 324share/vice/PET/waterloo-a000.901898-01.bin
345share/vice/PET/waterloo-b000.901898-02.bin 325share/vice/PET/waterloo-b000.901898-02.bin
346share/vice/PET/waterloo-c000.901898-03.bin 326share/vice/PET/waterloo-c000.901898-03.bin
347share/vice/PET/waterloo-d000.901898-04.bin 327share/vice/PET/waterloo-d000.901898-04.bin
348share/vice/PET/waterloo-e000.901897-01.bin 328share/vice/PET/waterloo-e000.901897-01.bin
349share/vice/PET/waterloo-f000.901898-05.bin 329share/vice/PET/waterloo-f000.901898-05.bin
350share/vice/PET/white.vpl 330share/vice/PET/white.vpl
351${PLIST.x11}share/vice/PET/gtk3_bude_pos.vkm 
352${PLIST.x11}share/vice/PET/gtk3_bude_pos_de.vkm 
353${PLIST.x11}share/vice/PET/gtk3_bude_sym.vkm 
354${PLIST.x11}share/vice/PET/gtk3_bude_sym_de.vkm 
355${PLIST.x11}share/vice/PET/gtk3_buuk_pos.vkm 
356${PLIST.x11}share/vice/PET/gtk3_buuk_pos_de.vkm 
357${PLIST.x11}share/vice/PET/gtk3_buuk_sym.vkm 
358${PLIST.x11}share/vice/PET/gtk3_buuk_sym_de.vkm 
359${PLIST.x11}share/vice/PET/gtk3_grus_pos.vkm 
360${PLIST.x11}share/vice/PET/gtk3_grus_pos_de.vkm 
361${PLIST.x11}share/vice/PET/gtk3_grus_sym.vkm 
362${PLIST.x11}share/vice/PET/gtk3_grus_sym_de.vkm 
363${PLIST.x11}share/vice/PET/gtk3_sym.vkm 
364${PLIST.x11}share/vice/PET/x11_bude_pos.vkm 
365${PLIST.x11}share/vice/PET/x11_bude_pos_de.vkm 
366${PLIST.x11}share/vice/PET/x11_bude_sym.vkm 
367${PLIST.x11}share/vice/PET/x11_bude_sym_de.vkm 
368${PLIST.x11}share/vice/PET/x11_buuk_pos.vkm 
369${PLIST.x11}share/vice/PET/x11_buuk_pos_de.vkm 
370${PLIST.x11}share/vice/PET/x11_buuk_sym.vkm 
371${PLIST.x11}share/vice/PET/x11_buuk_sym_de.vkm 
372${PLIST.x11}share/vice/PET/x11_grus_pos.vkm 
373${PLIST.x11}share/vice/PET/x11_grus_pos_de.vkm 
374${PLIST.x11}share/vice/PET/x11_grus_sym.vkm 
375${PLIST.x11}share/vice/PET/x11_grus_sym_de.vkm 
376${PLIST.x11}share/vice/PET/x11_sym.vkm 
377share/vice/PLUS4/3plus1hi 331share/vice/PLUS4/3plus1hi
378share/vice/PLUS4/3plus1lo 332share/vice/PLUS4/3plus1lo
379share/vice/PLUS4/basic 333share/vice/PLUS4/basic
380share/vice/PLUS4/c2lo.364 334share/vice/PLUS4/c2lo.364
381share/vice/PLUS4/colodore_ted.vpl 335share/vice/PLUS4/colodore_ted.vpl
382share/vice/PLUS4/default.vrs 336share/vice/PLUS4/default.vrs
 337${PLIST.x11}share/vice/PLUS4/gtk3_pos.vkm
 338${PLIST.x11}share/vice/PLUS4/gtk3_sym.vkm
 339${PLIST.x11}share/vice/PLUS4/gtk3_sym_de.vkm
383share/vice/PLUS4/kernal 340share/vice/PLUS4/kernal
384share/vice/PLUS4/kernal.005 341share/vice/PLUS4/kernal.005
385share/vice/PLUS4/kernal.232 342share/vice/PLUS4/kernal.232
386share/vice/PLUS4/kernal.364 343share/vice/PLUS4/kernal.364
387${PLIST.sdl}share/vice/PLUS4/sdl_hotkeys.vkm 344${PLIST.sdl}share/vice/PLUS4/sdl_hotkeys.vkm
388${PLIST.sdl}share/vice/PLUS4/sdl_pos.vkm 345${PLIST.sdl}share/vice/PLUS4/sdl_pos.vkm
389${PLIST.x11}share/vice/PLUS4/gtk3_pos.vkm 
390${PLIST.x11}share/vice/PLUS4/gtk3_sym.vkm 
391${PLIST.x11}share/vice/PLUS4/gtk3_sym_de.vkm 
392${PLIST.x11}share/vice/PLUS4/x11_pos.vkm 
393${PLIST.x11}share/vice/PLUS4/x11_sym.vkm 
394${PLIST.x11}share/vice/PLUS4/x11_sym_de.vkm 
395share/vice/PLUS4/yape-ntsc.vpl 346share/vice/PLUS4/yape-ntsc.vpl
396share/vice/PLUS4/yape-pal.vpl 347share/vice/PLUS4/yape-pal.vpl
397share/vice/PRINTER/1520.vpl 348share/vice/PRINTER/1520.vpl
398share/vice/PRINTER/cbm1526 349share/vice/PRINTER/cbm1526
399share/vice/PRINTER/mps801 350share/vice/PRINTER/mps801
400share/vice/PRINTER/mps803 351share/vice/PRINTER/mps803
401share/vice/PRINTER/mps803.vpl 352share/vice/PRINTER/mps803.vpl
402share/vice/PRINTER/nl10-cbm 353share/vice/PRINTER/nl10-cbm
403share/vice/PRINTER/nl10.vpl 354share/vice/PRINTER/nl10.vpl
404share/vice/SCPU64/c64hq.vpl 355share/vice/SCPU64/c64hq.vpl
405share/vice/SCPU64/c64s.vpl 356share/vice/SCPU64/c64s.vpl
406share/vice/SCPU64/ccs64.vpl 357share/vice/SCPU64/ccs64.vpl
407share/vice/SCPU64/chargen 358share/vice/SCPU64/chargen
 359share/vice/SCPU64/cjam.vpl
408share/vice/SCPU64/colodore.vpl 360share/vice/SCPU64/colodore.vpl
409share/vice/SCPU64/community-colors.vpl 361share/vice/SCPU64/community-colors.vpl
410share/vice/SCPU64/deekay.vpl 362share/vice/SCPU64/deekay.vpl
411share/vice/SCPU64/default.vrs 363share/vice/SCPU64/default.vrs
412share/vice/SCPU64/frodo.vpl 364share/vice/SCPU64/frodo.vpl
413share/vice/SCPU64/godot.vpl 365share/vice/SCPU64/godot.vpl
 366${PLIST.x11}share/vice/SCPU64/gtk3_pos.vkm
 367${PLIST.x11}share/vice/SCPU64/gtk3_pos_de.vkm
 368${PLIST.x11}share/vice/SCPU64/gtk3_sym.vkm
 369${PLIST.x11}share/vice/SCPU64/gtk3_sym_de.vkm
 370${PLIST.x11}share/vice/SCPU64/gtk3_sym_nl.vkm
414share/vice/SCPU64/jpchrgen 371share/vice/SCPU64/jpchrgen
415share/vice/SCPU64/pc64.vpl 372share/vice/SCPU64/pc64.vpl
416share/vice/SCPU64/pepto-ntsc-sony.vpl 373share/vice/SCPU64/pepto-ntsc-sony.vpl
417share/vice/SCPU64/pepto-ntsc.vpl 374share/vice/SCPU64/pepto-ntsc.vpl
418share/vice/SCPU64/pepto-pal.vpl 375share/vice/SCPU64/pepto-pal.vpl
419share/vice/SCPU64/pepto-palold.vpl 376share/vice/SCPU64/pepto-palold.vpl
420share/vice/SCPU64/ptoing.vpl 377share/vice/SCPU64/ptoing.vpl
421share/vice/SCPU64/rgb.vpl 378share/vice/SCPU64/rgb.vpl
422share/vice/SCPU64/scpu64 379share/vice/SCPU64/scpu64
423share/vice/SCPU64/scpu64mem.sym 380share/vice/SCPU64/scpu64mem.sym
424${PLIST.sdl}share/vice/SCPU64/sdl_hotkeys.vkm 381${PLIST.sdl}share/vice/SCPU64/sdl_hotkeys.vkm
425${PLIST.sdl}share/vice/SCPU64/sdl_keyrah.vkm 382${PLIST.sdl}share/vice/SCPU64/sdl_keyrah.vkm
426${PLIST.sdl}share/vice/SCPU64/sdl_keyrah_combian.vkm 383${PLIST.sdl}share/vice/SCPU64/sdl_keyrah_combian.vkm
427${PLIST.sdl}share/vice/SCPU64/sdl_keyrah_de.vkm 384${PLIST.sdl}share/vice/SCPU64/sdl_keyrah_de.vkm
428${PLIST.sdl}share/vice/SCPU64/sdl_keyrah_retropie.vkm 385${PLIST.sdl}share/vice/SCPU64/sdl_keyrah_retropie.vkm
429${PLIST.sdl}share/vice/SCPU64/sdl_keyrah_retropie_de.vkm 386${PLIST.sdl}share/vice/SCPU64/sdl_keyrah_retropie_de.vkm
430${PLIST.sdl}share/vice/SCPU64/sdl_pos.vkm 387${PLIST.sdl}share/vice/SCPU64/sdl_pos.vkm
431${PLIST.sdl}share/vice/SCPU64/sdl_pos_da.vkm 388${PLIST.sdl}share/vice/SCPU64/sdl_pos_da.vkm
432${PLIST.sdl}share/vice/SCPU64/sdl_pos_de.vkm 389${PLIST.sdl}share/vice/SCPU64/sdl_pos_de.vkm
433${PLIST.sdl}share/vice/SCPU64/sdl_pos_fi.vkm 390${PLIST.sdl}share/vice/SCPU64/sdl_pos_fi.vkm
434${PLIST.sdl}share/vice/SCPU64/sdl_pos_no.vkm 391${PLIST.sdl}share/vice/SCPU64/sdl_pos_no.vkm
435${PLIST.sdl}share/vice/SCPU64/sdl_sym.vkm 392${PLIST.sdl}share/vice/SCPU64/sdl_sym.vkm
436${PLIST.sdl}share/vice/SCPU64/sdl_sym_de.vkm 393${PLIST.sdl}share/vice/SCPU64/sdl_sym_de.vkm
 394${PLIST.sdl}share/vice/SCPU64/sdl_sym_nl.vkm
437share/vice/SCPU64/vice.vpl 395share/vice/SCPU64/vice.vpl
438${PLIST.x11}share/vice/SCPU64/gtk3_pos.vkm 
439${PLIST.x11}share/vice/SCPU64/gtk3_pos_de.vkm 
440${PLIST.x11}share/vice/SCPU64/gtk3_sym.vkm 
441${PLIST.x11}share/vice/SCPU64/gtk3_sym_de.vkm 
442${PLIST.x11}share/vice/SCPU64/x11_pos.vkm 
443${PLIST.x11}share/vice/SCPU64/x11_pos_de.vkm 
444${PLIST.x11}share/vice/SCPU64/x11_sym.vkm 
445${PLIST.x11}share/vice/SCPU64/x11_sym_de.vkm 
446share/vice/VIC20/basic 396share/vice/VIC20/basic
447share/vice/VIC20/chargen 397share/vice/VIC20/chargen
448share/vice/VIC20/colodore_vic.vpl 398share/vice/VIC20/colodore_vic.vpl
449share/vice/VIC20/default.vrs 399share/vice/VIC20/default.vrs
 400${PLIST.x11}share/vice/VIC20/gtk3_pos.vkm
 401${PLIST.x11}share/vice/VIC20/gtk3_sym.vkm
450share/vice/VIC20/kernal 402share/vice/VIC20/kernal
451share/vice/VIC20/mike-ntsc.vpl 403share/vice/VIC20/mike-ntsc.vpl
452share/vice/VIC20/mike-pal.vpl 404share/vice/VIC20/mike-pal.vpl
453${PLIST.sdl}share/vice/VIC20/sdl_hotkeys.vkm 405${PLIST.sdl}share/vice/VIC20/sdl_hotkeys.vkm
454${PLIST.sdl}share/vice/VIC20/sdl_pos.vkm 406${PLIST.sdl}share/vice/VIC20/sdl_pos.vkm
455${PLIST.sdl}share/vice/VIC20/sdl_pos_fi.vkm 407${PLIST.sdl}share/vice/VIC20/sdl_pos_fi.vkm
456share/vice/VIC20/vice.vpl 408share/vice/VIC20/vice.vpl
457${PLIST.x11}share/vice/VIC20/gtk3_pos.vkm 
458${PLIST.x11}share/vice/VIC20/gtk3_sym.vkm 
459${PLIST.x11}share/vice/VIC20/x11_pos.vkm 
460${PLIST.x11}share/vice/VIC20/x11_sym.vkm 
461share/vice/fonts/CBM.ttf 409share/vice/fonts/CBM.ttf
462share/vice/fonts/vice-cbm.bdf 410share/vice/fonts/vice-cbm.bdf
463${PLIST.pcf}share/vice/fonts/vice-cbm.pcf 411${PLIST.pcf}share/vice/fonts/vice-cbm.pcf
 412${PLIST.x11}share/vice/gui/vice.gresource

cvs diff -r1.45 -r1.46 pkgsrc/emulators/vice/distinfo (expand / switch to unified diff)

--- pkgsrc/emulators/vice/distinfo 2018/07/14 16:05:19 1.45
+++ pkgsrc/emulators/vice/distinfo 2018/12/31 15:38:55 1.46
@@ -1,9 +1,8 @@ @@ -1,9 +1,8 @@
1$NetBSD: distinfo,v 1.45 2018/07/14 16:05:19 maya Exp $ 1$NetBSD: distinfo,v 1.46 2018/12/31 15:38:55 rhialto Exp $
2 2
3SHA1 (vice-3.2.tar.gz) = ab240eed57d4af1e215e4c9c23c437f45cedf6bf 3SHA1 (vice-3.3.tar.gz) = 55a34feb29955da40067ee5a5171278ed0191c93
4RMD160 (vice-3.2.tar.gz) = 4e3fb04607dda7188d49fb5f68c3766925212cc2 4RMD160 (vice-3.3.tar.gz) = 7b014f2b3ed1287e74ba93c1e30a547fe40582ce
5SHA512 (vice-3.2.tar.gz) = d05081db90e2ee85745ecdee0b692a5c485b76b21a56463b17639de29c29c6deda3c39504122d8440f1667156d11dad504cea76b9b0272fc770ccfe0da3df616 5SHA512 (vice-3.3.tar.gz) = 702942e33b6e3d7e29ca6ed483242319ed5f6be26831def88a282cf7dce25d4c34dbf3651fcf8b583492fcb280ce5f4304c6eda3712088a73db24772c7a2bb3a
6Size (vice-3.2.tar.gz) = 30279589 bytes 6Size (vice-3.3.tar.gz) = 22742913 bytes
7SHA1 (patch-configure) = f810d83265f5b8e7162c7ff6dbbca7d84e163de0 7SHA1 (patch-configure) = fd17525277067aa8aee3e2ea85d4c59c7f52a969
8SHA1 (patch-data_fonts_Makefile.in) = 614a433448ec422108e5125c71d2e83fa3ecc21c 8SHA1 (patch-data_fonts_Makefile.in) = ed5b427acb6c6a20ff9e69fa9863b108e1d1675d
9SHA1 (patch-po_Makefile.in.in) = 6e028dde8a74f6c5d511057a19580285e3d506c7 

cvs diff -r1.9 -r1.10 pkgsrc/emulators/vice/options.mk (expand / switch to unified diff)

--- pkgsrc/emulators/vice/options.mk 2018/07/14 16:05:19 1.9
+++ pkgsrc/emulators/vice/options.mk 2018/12/31 15:38:55 1.10
@@ -1,71 +1,39 @@ @@ -1,71 +1,39 @@
1# $NetBSD: options.mk,v 1.9 2018/07/14 16:05:19 maya Exp $ 1# $NetBSD: options.mk,v 1.10 2018/12/31 15:38:55 rhialto Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.vice 3PKG_OPTIONS_VAR= PKG_OPTIONS.vice
4PKG_SUPPORTED_OPTIONS= ffmpeg vte 4PKG_SUPPORTED_OPTIONS= ffmpeg
5PKG_OPTIONS_REQUIRED_GROUPS= gui 5PKG_OPTIONS_REQUIRED_GROUPS= gui
6PKG_OPTIONS_GROUP.gui= gtk2 gtk3wip sdl xaw 6PKG_OPTIONS_GROUP.gui= gtk3 sdl sdl2
7PKG_SUGGESTED_OPTIONS= gtk2 7PKG_SUGGESTED_OPTIONS= gtk3 ffmpeg
8 8
9.include "../../mk/bsd.options.mk" 9.include "../../mk/bsd.options.mk"
10 10
11PLIST_VARS+= mo pcf sdl x11 11PLIST_VARS+= pcf sdl x11
12 12
13# Cocoa user interface works only in application bundle. 13.if !empty(PKG_OPTIONS:Mgtk3)
14#.if !empty(PKG_OPTIONS:Mcocoa) 
15#CONFIGURE_ARGS+= --disable-bundle 
16#CONFIGURE_ARGS+= --with-cocoa 
17#PLIST.x11= yes 
18#INSTALL_TARGET= bindist 
19#.else 
20USE_TOOLS+= bdftopcf 
21#.endif 
22 
23.if !empty(PKG_OPTIONS:Mgtk2) 
24CONFIGURE_ARGS+= --enable-gnomeui 
25PLIST.mo= yes 
26PLIST.pcf= yes 
27PLIST.x11= yes 
28. include "../../x11/gtk2/buildlink3.mk" 
29.endif 
30 
31.if !empty(PKG_OPTIONS:Mgtk3wip) 
32CONFIGURE_ARGS+= --enable-native-gtk3ui 14CONFIGURE_ARGS+= --enable-native-gtk3ui
33PLIST.pcf= yes 15PLIST.pcf= yes
34PLIST.x11= yes 16PLIST.x11= yes
35. include "../../x11/gtk3/buildlink3.mk" 17. include "../../x11/gtk3/buildlink3.mk"
 18TOOL_DEPENDS+= glib2-tools>=2.56:../../devel/glib2-tools
36.endif 19.endif
37 20
38.if !empty(PKG_OPTIONS:Msdl) 21.if !empty(PKG_OPTIONS:Msdl)
 22CONFIGURE_ARGS+= --enable-sdlui
 23PLIST.sdl= yes
 24. include "../../devel/SDL/buildlink3.mk"
 25.endif
 26
 27.if !empty(PKG_OPTIONS:Msdl2)
39CONFIGURE_ARGS+= --enable-sdlui2 28CONFIGURE_ARGS+= --enable-sdlui2
40PLIST.sdl= yes 29PLIST.sdl= yes
41. include "../../devel/SDL2/buildlink3.mk" 30. include "../../devel/SDL2/buildlink3.mk"
42.endif 31.endif
43 32
44# If desired, ffmpeg and lame can be build-time-only dependencies, 33# If desired, ffmpeg and lame can be build-time-only dependencies,
45# since they are loaded dynamically only. 34# since they are loaded dynamically only.
46.if !empty(PKG_OPTIONS:Mffmpeg) 35.if !empty(PKG_OPTIONS:Mffmpeg)
47#BUILDLINK_DEPMETHOD.ffmpeg?= build 36#BUILDLINK_DEPMETHOD.ffmpeg?= build
48CONFIGURE_ARGS+= --enable-external-ffmpeg 37CONFIGURE_ARGS+= --enable-external-ffmpeg
49. include "../../multimedia/ffmpeg3/buildlink3.mk" 38. include "../../multimedia/ffmpeg3/buildlink3.mk"
50.endif 39.endif
51 
52.if !empty(PKG_OPTIONS:Mvte) 
53. if !empty(PKG_OPTIONS:Mgtk2) || !empty(PKG_OPTIONS:Mgtk3wip) 
54. include "../../x11/vte/buildlink3.mk" 
55. else 
56# vte only makes sense with gtk* 
57. endif 
58.endif 
59 
60.if !empty(PKG_OPTIONS:Mxaw) 
61PLIST.mo= yes 
62PLIST.pcf= yes 
63PLIST.x11= yes 
64. include "../../x11/libXt/buildlink3.mk" 
65. include "../../x11/libXmu/buildlink3.mk" 
66. include "../../x11/libXaw/buildlink3.mk" 
67. include "../../x11/libXpm/buildlink3.mk" 
68. include "../../x11/libXrandr/buildlink3.mk" 
69. include "../../x11/libXv/buildlink3.mk" 
70. include "../../x11/libXxf86vm/buildlink3.mk" 
71.endif 

cvs diff -r1.1 -r1.2 pkgsrc/emulators/vice/patches/patch-configure (expand / switch to unified diff)

--- pkgsrc/emulators/vice/patches/patch-configure 2017/08/16 17:54:09 1.1
+++ pkgsrc/emulators/vice/patches/patch-configure 2018/12/31 15:38:55 1.2
@@ -1,37 +1,68 @@ @@ -1,37 +1,68 @@
1$NetBSD: patch-configure,v 1.1 2017/08/16 17:54:09 adam Exp $ 1$NetBSD: patch-configure,v 1.2 2018/12/31 15:38:55 rhialto Exp $
2 2
31. Portability problem with "text xx == yy" 31. Use the NetBSD configuration for every OS since the PLIST is
4 (in a section for some other OS, so not too relevant). 
52. Use the NetBSD configuration for every OS since the PLIST is 
6 hardcoded for that. Should fix every non-NetBSD platform. 4 hardcoded for that. Should fix every non-NetBSD platform.
7 5
8--- configure.orig 2012-11-02 21:06:04.000000000 +0000 6--- configure.orig 2018-12-19 21:25:02.000000000 +0000
9+++ configure 7+++ configure
10@@ -20158,7 +20158,7 @@ fi 8@@ -8782,34 +8782,6 @@ case "$host_os" in
11 esac 9 esac
12  10
 11
 12-case "$host_os" in
 13- freebsd*)
 14- CPPFLAGS="$CPPFLAGS -I/usr/local/include"
 15- fbsdrtp=`${CONFIG_SHELL-/bin/sh} "$srcdir/config.rpath" "$CC" "$GCC" "$LDFLAGS" "$LD" "$with_gnu_ld" "$host" "/usr/local/lib"`
 16- LDFLAGS="$LDFLAGS $fbsdrtp -L/usr/local/lib"
 17- ;;
 18- netbsd*)
 19- CPPFLAGS="$CPPFLAGS -I/usr/pkg/include -I/usr/include"
 20- nbsdrtp=`${CONFIG_SHELL-/bin/sh} "$srcdir/config.rpath" "$CC" "$GCC" "$LDFLAGS" "$LD" "$with_gnu_ld" "$host" "/usr/pkg/lib"`
 21- LDFLAGS="$LDFLAGS $nbsdrtp -L/usr/pkg/lib"
 22- if test -d "/usr/X11R7/lib"; then
 23- rtp=`${CONFIG_SHELL-/bin/sh} "$srcdir/config.rpath" "$CC" "$GCC" "$LDFLAGS" "$LD" "$with_gnu_ld" "$host" "/usr/X11R7/lib"`
 24- LDFLAGS="$LDFLAGS $rtp"
 25- else
 26- if test -d "/usr/X11R6/lib"; then
 27- rtp=`${CONFIG_SHELL-/bin/sh} "$srcdir/config.rpath" "$CC" "$GCC" "$LDFLAGS" "$LD" "$with_gnu_ld" "$host" "/usr/X11R6/lib"`
 28- LDFLAGS="$LDFLAGS $rtp"
 29- fi
 30- fi
 31- ;;
 32- dragonfly*)
 33- CPPFLAGS="$CPPFLAGS -I/usr/local/include"
 34- dfbsdrtp=`${CONFIG_SHELL-/bin/sh} "$srcdir/config.rpath" "$CC" "$GCC" "$LDFLAGS" "$LD" "$with_gnu_ld" "$host" "/usr/local/lib"`
 35- LDFLAGS="$LDFLAGS $dfbsdrtp -L/usr/local/lib"
 36- ;;
 37- *)
 38- ;;
 39-esac
 40
 41
 42 if test x"$enable_shared_ffmpeg" = "xyes" -o x"$enable_static_ffmpeg" = "xyes"; then
 43@@ -21894,7 +21866,7 @@ _ACEOF
 44
 45
13 case "$host_os" in 46 case "$host_os" in
14- netbsd*) 47- netbsd*)
15+ *) 48+ *)
16 VICEDIR="$PREFIX/share/vice" 49 VICEDIR="$PREFIX/share/vice"
17 if true; then 50 if true; then
18 ALTERNATE_DOCDIR_TRUE= 51 ALTERNATE_DOCDIR_TRUE=
19@@ -20167,52 +20167,6 @@ else 52@@ -21905,51 +21877,6 @@ else
20 ALTERNATE_DOCDIR_TRUE='#' 
21 ALTERNATE_DOCDIR_FALSE= 
22 fi 53 fi
23- 54
24- ;; 55 ;;
25- freebsd*) 56- freebsd*)
26- VICEDIR="$PREFIX/lib/vice" 57- VICEDIR="$PREFIX/lib/vice"
27- if true; then 58- if true; then
28- ALTERNATE_DOCDIR_TRUE= 59- ALTERNATE_DOCDIR_TRUE=
29- ALTERNATE_DOCDIR_FALSE='#' 60- ALTERNATE_DOCDIR_FALSE='#'
30-else 61-else
31- ALTERNATE_DOCDIR_TRUE='#' 62- ALTERNATE_DOCDIR_TRUE='#'
32- ALTERNATE_DOCDIR_FALSE= 63- ALTERNATE_DOCDIR_FALSE=
33-fi 64-fi
34- 65-
35- ;; 66- ;;
36- linux*) 67- linux*)
37- if test x"$host_cpu" = "xx86_64"; then 68- if test x"$host_cpu" = "xx86_64"; then
@@ -56,16 +87,17 @@ $NetBSD: patch-configure,v 1.1 2017/08/1 @@ -56,16 +87,17 @@ $NetBSD: patch-configure,v 1.1 2017/08/1
56- 87-
57- fi 88- fi
58- ;; 89- ;;
59- *) 90- *)
60- VICEDIR="$PREFIX/lib/vice" 91- VICEDIR="$PREFIX/lib/vice"
61- if false; then 92- if false; then
62- ALTERNATE_DOCDIR_TRUE= 93- ALTERNATE_DOCDIR_TRUE=
63- ALTERNATE_DOCDIR_FALSE='#' 94- ALTERNATE_DOCDIR_FALSE='#'
64-else 95-else
65- ALTERNATE_DOCDIR_TRUE='#' 96- ALTERNATE_DOCDIR_TRUE='#'
66- ALTERNATE_DOCDIR_FALSE= 97- ALTERNATE_DOCDIR_FALSE=
67-fi 98-fi
68- 99-
69 ;; 100- ;;
70 esac 101 esac
71  102
 103

cvs diff -r1.2 -r1.3 pkgsrc/emulators/vice/patches/Attic/patch-data_fonts_Makefile.in (expand / switch to unified diff)

--- pkgsrc/emulators/vice/patches/Attic/patch-data_fonts_Makefile.in 2017/08/16 17:54:09 1.2
+++ pkgsrc/emulators/vice/patches/Attic/patch-data_fonts_Makefile.in 2018/12/31 15:38:55 1.3
@@ -1,34 +1,35 @@ @@ -1,34 +1,35 @@
1$NetBSD: patch-data_fonts_Makefile.in,v 1.2 2017/08/16 17:54:09 adam Exp $ 1$NetBSD: patch-data_fonts_Makefile.in,v 1.3 2018/12/31 15:38:55 rhialto Exp $
2 2
3Don't try to mess in ${HOME}. 3Don't try to mess in ${HOME}.
4Don't try mkfontdir (that is done at pkg_add time). 4Don't try mkfontdir (that is done at pkg_add time).
5Don't use bdftopcf on Darwin. 5Don't use bdftopcf on Darwin.
6 6
7--- data/fonts/Makefile.in.orig 2017-03-30 20:40:42.000000000 +0000 7--- data/fonts/Makefile.in.orig 2018-12-19 21:25:03.000000000 +0000
8+++ data/fonts/Makefile.in 8+++ data/fonts/Makefile.in
9@@ -555,22 +555,9 @@ uninstall-am: uninstall-fontsDATA 9@@ -589,22 +589,10 @@ uninstall-am: uninstall-fontsDATA
10  10
11  11
12 install: install-data-am 12 install: install-data-am
13-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ @echo "Preparing fontdir, please wait..." ; \ 13-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ @echo "Preparing fontdir, please wait..." ; \
14-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ if [ ! `fc-cache --list > /dev/null 2>&1` ] ; then \ 14-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ if [ ! `fc-cache --list > /dev/null 2>&1` ] ; then \
15-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ if test "x${HOME}" != "x" ; then \ 15-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ if test "x${HOME}" != "x" ; then \
16-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ mkdir ${HOME}/.fonts > /dev/null 2>&1 ; \ 16-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ mkdir ${HOME}/.fonts > /dev/null 2>&1 ; \
17-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ cp $(fontsdir)/CBM.ttf ${HOME}/.fonts ; \ 17-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ cp $(fontsdir)/CBM.ttf ${HOME}/.fonts ; \
18-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ fc-cache ; \ 18-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ fc-cache ; \
19-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ else \ 19-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ else \
20-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ echo '$$HOME not set... giving up.' ; \ 20-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ echo '$$HOME not set... giving up.' ; \
21-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ fi \ 21-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ fi \
22-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ else \ 22-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ else \
23-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ echo 'fc-cache not available... giving up.' ; \ 23-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ echo 'fc-cache not available... giving up.' ; \
24-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ fi 24-@HAVE_FC_CACHE_TRUE@@SDL_COMPILE_FALSE@ fi
25-@SDL_COMPILE_FALSE@ @echo "Preparing fontdir..." ; \ 25-@SDL_COMPILE_FALSE@ @echo "Preparing fontdir..." ; \
26-@SDL_COMPILE_FALSE@ cd $(DESTDIR)$(fontsdir) ; \ 26-@SDL_COMPILE_FALSE@ cd $(DESTDIR)$(fontsdir) ; \
27-@SDL_COMPILE_FALSE@ bdftopcf -o vice-cbm.pcf vice-cbm.bdf ; \ 27-@SDL_COMPILE_FALSE@ bdftopcf -o vice-cbm.pcf vice-cbm.bdf ; \
28-@SDL_COMPILE_FALSE@ ${MKFONTDIR_BIN} . 28-@SDL_COMPILE_FALSE@ ${MKFONTDIR_BIN} .
29+@MACOSX_COCOA_FALSE@@SDL_COMPILE_FALSE@ @echo "Preparing fontdir..." ; \ 29+@UNIX_MACOSX_COMPILE_FALSE@@SDL_COMPILE_FALSE@ @echo "Preparing fontdir..." ; \
30+@MACOSX_COCOA_FALSE@@SDL_COMPILE_FALSE@ cd $(DESTDIR)$(fontsdir) ; \ 30+@UNIX_MACOSX_COMPILE_FALSE@@SDL_COMPILE_FALSE@ cd $(DESTDIR)$(fontsdir) ; \
31+@MACOSX_COCOA_FALSE@@SDL_COMPILE_FALSE@ bdftopcf -o vice-cbm.pcf vice-cbm.bdf 31+@UNIX_MACOSX_COMPILE_FALSE@@SDL_COMPILE_FALSE@ bdftopcf -o vice-cbm.pcf vice-cbm.bdf ; \
 32+@UNIX_MACOSX_COMPILE_FALSE@@SDL_COMPILE_FALSE@ ${MKFONTDIR_BIN} .
32  33
33 # Tell versions [3.59,3.63) of GNU make to not export all variables. 34 # Tell versions [3.59,3.63) of GNU make to not export all variables.
34 # Otherwise a system limit (for SysV at least) may be exceeded. 35 # Otherwise a system limit (for SysV at least) may be exceeded.

File Deleted: pkgsrc/emulators/vice/patches/Attic/patch-po_Makefile.in.in