summaryrefslogtreecommitdiff
path: root/emulators/vice
AgeCommit message (Collapse)AuthorFilesLines
2011-11-16Recursive bump for multimedia/ffmpeg buildlink addition.sbd1-2/+2
2011-11-01Recursive bump for graphics/freetype2 buildlink addition.sbd1-2/+2
2011-04-22recursive bump from gettext-lib shlib bump.obache1-1/+2
2011-04-16Fix build problem under NetBSD/i386 current.tron1-2/+2
2011-04-04Update to 2.3, provided by Olaf 'Rhialto' Seibert in PR 44820, with awiz11-295/+185
slight fix. * Changes in VICE 2.3 ====================== ** General ---------- - Added x64sc, the accurate C64 emulator: * VIC-II emulation rewritten from scratch using results from extensive testing with newly written test programs on real hardware. * Emulation is done on a cycle by cycle basis combined with pixel exact dot clock domain handling. * Accurate handling of all possible in-line splits of VIC-II registers and graphics data. * C64 model and even individual chip revisions can be selected for very detailed emulation of their differences. * Equally accurate PAL, NTSC and PAL-N emulation. We believe x64sc is one of the most accurate C64 emulators at the moment. - Drive improvements, including weak bit emulation. - Major reSID overhaul: * Emulation of all known pipeline delays for full cycle accuracy. * New shift register model based on revectorized die photograps. * Accurate DAC models based on revectorized die photograps. * Emulation of floating waveform DAC input for waveform 0. * Advanced 6581 transistor level filter model based on revectorized die photograps, yielding unprecedented accuracy. - CRT Emulation (former "PAL emulation") is now available regardless of video mode or -chip and works in all emulators. NOTE: Color gamma range changed. You may need to set to 2.200 manually. (ColorGamma=2200) - Added "True aspect ratio" option. - Sound buffer overflows reduced and the error replaced with a warning. - Various monitor improvements (io details, expansion port status ...) - Removed little used Emulator ID feature. - VIA wrap handling rewritten to fix problems with timer 2. - Added autostart option to do LOAD ,8 instead of ,8,1. - RESTORE key presses are now distributed randomly across a frame. - Improved accuracy of CIA interrupts. (6526/6526A selectable) ** C64/C128 changes ------------------- - Cartridge emulation improvements. Many broken cartridges fixed, and the following ones added: * Action Replay 2 * Action Replay 3 * Capture * Diashow Maker * EXOS * Final Cartridge Plus * Freeze Frame * Freeze Machine * Game Killer * MACH 5 * Magic Voice * MMC Replay * Prophet 64 * Snapshot 64 * Super Explode V5 * Super Snapshot - Added emulation of the passthrough port of MMC64, Magic Voice and IEEE488 cartridges. - CIA TOD 50/60 Hz toggle emulation fixed. - Improved 1351/paddles port MUX emulation. ** C64 changes -------------- - Added Drean (PAL-N) emulation. - Fixed bug with autostart mode Inject-to-RAM. It now writes to RAM under I/O correctly. ** C128 changes --------------- - Fixed a bug with autostarting t64 images. ** VIC20 changes ---------------- - Added Vic Flash Plugin cartridge emulation. - Fixed video cache & reverse bug. - Fixed bug in attaching 4kB cartridges. - Fixed autostarting bug, mostly seen with tape images. ** PLUS4 changes ---------------- - Fixed crashes in NTSC mode. - Added v364 speech emulation. ** PET changes -------------- - Added DWW emulation. - Added userport DAC emulation. ** CBM2 changes --------------- - Split 5x0 and 6x0/7x0 settings in the configuration file. ** Unix changes --------------- - (Xaw) The menus can now be operated without holding the mouse button down. Keyboard control is also available (Shift-Alt-Z for left menu, Shift-Alt-X for right menu). - (Xaw) Lightpen/gun support added. - (GTK+) Fixed aspect ratio option added. ** SDL UI changes ----------------- - Added vsid UI, FFMPEG and printer menus. The UI is complete.
2011-01-24Add upstream bug report URL.wiz2-3/+4
2011-01-14Fix build with png-1.5.wiz2-1/+40
2011-01-13png shlib name changed for png>=1.5.0, so bump PKGREVISIONs.wiz1-2/+2
2010-12-23Mechanically replace references to graphics/jpeg with the suitabledsainty1-2/+2
alternative from mk/jpeg.buildlink3.mk This allows selection of an alternative jpeg library (namely the x86 MMX, SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and follows the current standard model for alternatives (fam, motif, fuse etc). The mechanical edits were applied via the following script: #!/bin/sh for d in */*; do [ -d "$d" ] || continue for i in "$d/"Makefile* "$d/"*.mk; do case "$i" in *.orig|*"*"*) continue;; esac out="$d/x" sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \ -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \ < "$i" > "$out" if cmp -s "$i" "$out"; then rm -f "$out" else echo "Edited $i" mv -f "$i" "$i.orig" && mv "$out" "$i" fi done done
2010-11-15PKGREVISION bumps for changes to gtk2, librsvg, libbonobo and libgnomeabs1-2/+2
2010-09-14More PKGREVISION bumps for pixman update.wiz1-1/+2
2010-07-24Update to 2.2, based on wip package by Olaf Seibert, with additionalwiz8-151/+217
fixes to get png, jpeg, and ffmpeg support. * Changes in VICE 2.2 ====================== ** General ---------- - On autostart, do not change true drive emulation (TDE) anymore by default. The old behaviour can be switched on again by specifiying -autostart-handle-tde on the command line. There is one drawback of this behaviour: If TDE is switched on, an image attached must fit to the drive type set. For example, when you attach a .D81, you must have the drive type set to 1581, or the autostart will fail. - Added automatic Warp mode during autostart. If this resource is enabled then VICE automatically enables the warp mode and then loads a file. After loading the warp mode is disabled again and then the program is started. - Autostarting a PRG file can now be done in three different ways: * "Virtual FS": This mode mounts the directory where the file resides as a virtual filesystem on drive #8 and then loads the PRG via virtual drive traps. This was the only way of autostarting in previous VICE versions and is still the default. * "Inject to RAM": The PRG file is loaded from VICE directly into the RAM of the emulated machine. Then the memory setup of a Basic LOAD is simulated and the program is run. This is the fastest mode available but may lack compatibility as no actual load operation was performed in the emulator. However, no drive setup is altered during the operation. * "Diskimage": VICE creates a temporary new disk image and copies the contents of the PRG file onto it. Then this image is mounted in drive #8 and the program is loaded from there. If TDE is enabled then the load operation is most compatible. The disk image stays attached until a new image is mounted. - Improved PAL emulation is now available for Unix/Xaw XVideo mode, and AmigaOS. Only the YUV packed modes work, the planar modes still use the old code paths, though. - Sound core has been reworked to enable lower latency of operation. Approximately 50 ms latency values are now routinely reached, and some people have reported that as low as 30 ms still works for them. - New SDL port. See ReadmeSDL.txt for details. - New win64 ports, both amd64/x64 and ia64 are supported (msvc compile only). - New SDL based armle, mipsle, ppcbe and shle QNX 6.x ports. - New SDL based M68k and sparc SunOS ports. - New SDL based Syllable port. - New SDL based Dingoo port. - Remote monitor (in other words: TCP/IP interface to VICE monitor) added. - Fixed non-6502/6510 CPU handling in monitor. ** C64/C128 changes ------------------- - ReSID's resampler has been optimized with MMX assembly. Some long-standing bugs in resample-interpolate mode were also fixed. - ReSID-FP has been optimized, too. It clocks the analog parts at half the rate now, which saves CPU during filter emulation especially for 6581 modes. - Added SFX Sound Sampler and SFX Sound Expander emulation. - Added EasyFlash cartridge emulation. - Added paddle emulation. - Added lightpen/lightgun emulation, currently only available for the following ports: SDL, GTK+, cocoa, win32/win64 and msdos. - Added support for the following userport joystick adapters: CGA/Protovision, DXS/HIT, PET (normally only used on the PET/CBM2), Hummer (normally only used on the C64DTV) and OEM (normally only used on the VIC20). ** C128 changes --------------- - Added RAM banks 2 and 3 support. - Improved the VDC emulation. - Stereo SID $D7xx range support. ** VIC20 changes ---------------- - New cycle exact emulation core. Handles accesses to unconnected address space and in-line graphics data changes correctly. (fixes "Impossiblator 3" and others) - Improved VIC emulation (in-line color/reverse mode changes on half-chars). - Cartridge handling rewritten. - Added Mega-Cart cartridge emulation. - Added Final Expansion cartridge emulation. - Default memory configuration changed from full to unexpanded. - Added paddle emulation. - Added lightpen/lightgun emulation, currently only available for the following ports: SDL, GTK+, cocoa, win32/win64 and msdos. - Corrected the joystick support, since the VIC20 can only have one joystick attached on the joystick port. - Added support for the following userport joystick adapters: CGA/Protovision (normally only used on the C64/C128), PET (normally only used on the PET/CBM2), Hummer (normally only used on the C64DTV) and OEM. ** PLUS4 changes ---------------- - Added Digibooster SID Cart add-on emulation. - Added SID Cart joystick port emulation. - Fixed bug in tape recording. - Improved graphics handling. ** C64DTV changes ----------------- - Replaced old DTVSID emulation with ReSID-DTV. - Minor bug fixes and emulation improvements. - Added support for the following userport joystick adapters: CGA/Protovision (normally only used on the C64/C128), PET (normally only used for the PET), Hummer and OEM (normally only used on the VIC20). ** PET changes -------------- - Corrected the joystick support, since the only way a PET can use a joystick is by a userport joystick adapter, the following userport joystick adapters are currently supported: CGA/Protovision (normally only used on the C64/C128), PET, Hummer (normally only used on the C64DTV) and OEM (normally only used on the VIC20). ** CBM2 changes --------------- - Corrected the joystick support, since the only way a CBM2 can use a joystick is by a userport joystick adapter, the following userport joystick adapters are currently supported: CGA/Protovision (normally only used on the C64/C128), PET, Hummer (normally only used on the C64DTV) and OEM (normally only used on the VIC20). ** Unix changes --------------- - Rudimentary PulseAudio sound driver has been added. - Added support for dynamic loading of FFMPEG libraries. - Added support for dynamic loading of OpenCBM and Lame library * Changes in VICE 2.1 ====================== ** General ---------- - The VICEplus project has been joined with VICE. Thus, x64dtv is now part of VICE. - We can be contacted via IRC: #vice-dev on freenode - Added a more accurate ReSID engine using floating point math (ReSID-FP). - Added support for the USB HardSID. - PAL emulation has been rewritten and optimized. - Fixed the ACIA 6551 emulation. (x64/x128/xcbm2/xpet/xplus4) - Monitor commands help text is now translated too (in ports where translation is available at all) - Monitor IO command now displays IO area even if it is currently banked out. - GCR file handling (.G64) issues an error message if the .G64 does not have the expected outline. Before, VICE just silently ignored such files. - IRQ handling fix ** C64/C128 changes ------------------- - Fixed the digimax sound generation. - Added the RR clockport disable functionality at $DF00.0. Allows to disable the RRnet. - Improved REU compatibility and timing. ** C64 changes -------------- - Added isepic cartridge emulation. - Added Double Quick Brown Box cartridge emulation. ** VIC20 changes ---------------- - Improved the sound emulation. - Fixed the lowest note bug. - Improved VIC emulation (exact in-line color/reverse mode changes). ** C64DTV changes ----------------- - New emulator. ** Unix changes --------------- - XRandR fullscreen implemented - Command line option `-fullscreen' is supposed to do something useful. - Vsync code imported from win32 (based on openGL extension). see also doc/openGLsync-howto.txt. - Vidmode (fullscreen support) is broken and therefore marked as deprecated. It will be removed in the next release if no-one takes responsibility to fix the broken code and is willing to maintain the code. - PAL Emulation (new implementation, improved speed) should be usable again (it was broken on certain display depths). - Log messages are always english. - Only x11 keymaps will be installed when doing a 'make install'. - MIDI cartridge emulation for x128, x64 and xvic. * Changes in VICE 2.0 ====================== ** General ---------- - VICE development has moved to public services: http://sf.net/projects/vice-emu You can read the latest development in the Subversion repository, file bug reports, and similar things. Check it out! - New Openserver 5.x, Openserver 6.x and Unixware ports. - New AROS64 port. - New QNX 4.x port. - New HPUX (HPPA and IA64) ports. - New SkyOS port. - New Atari Mint port. - New Solaris Express aka OpenSolaris aka Solaris 11 port. ** C64/C128 changes ------------------- - Improved $01 behaviour with regards to unused bit fall-off. - New experimental NEOS and Amiga mouse support. - Added a working RTC to the emulation of the IDE64 cartridge. - New more precise PAL emulation, works only with double size and double scan. - Added support for the Action Replay 4 and StarDos cartridges. - Improved REU compatibility - Fixed CPU timing bug introduced in 1.22 (demo "Borderless"). - Fixed bugs in the CIA emulation (demo "So-phisticated", W. Lorenz testsuite). - Fixed various bugs in VIC-II emulation: Sprite x-positioning, Latch X/Y, video mode changes, DEN bit handling, raster IRQ, NTSC sprites and sprites in full/debugging border mode (list of fixed demos/games too long to mention here). - RESTORE key is handled differently now, fixing an NMI bug because the NMI was asserted too long before. ** VIC20 changes ---------------- - Added unconnected c-bus floating byte support. - New more precise PAL emulation, works only with double size and double scan. ** PET changes -------------- - Added support for toggling CB2 sound output line. ** PLUS4 changes ---------------- - New more precise PAL emulation, works only with double size and double scan. ** Drive changes ---------------- - Fixed block allocation and interleave. ** Unix changes --------------- - Broken DGA1/DGA2 code removed - XRandR fullscreen implemented for all (but CRTC/VDC) videochips. - XRandR/Fullscreen can now toggle the Statusbar/Menu - Fixed unix mouse for single sized display. - Fixed mouse grab and xaw menu popup. - After a CPU jam user can select to resume emulation without reset. ** Miscellaneous changes ------------------------ - Added support for more 3rd party basic extenders to petcat. - Extended BMP saving to support 24bit. - Fixed the joystick code of all emulators to handle state changes on both joysticks at the same time. - New monitor commands and features. - New memmap feature which allows tracking of memory accesses, activated by the configure option --enable-memmap. - Fixed bug in ffmpeg/FFV1 driver. Should be really lossless now.
2010-06-13Bump PKGREVISION for libpng shlib name change.wiz1-2/+2
Also add some patches to remove use of deprecated symbols and fix other problems when looking for or compiling against libpng-1.4.x.
2010-06-05Fix build with latest X from xsrc. I hope it doesn't break anything else,wiz2-5/+15
but I expect it... let me know if you can improve the patch.
2009-08-26bump revision because of graphics/jpeg updatesno1-2/+2
2009-07-12Fix install paths for platforms other than NetBSD. Bump PKGREVISION.hasso3-3/+50
2009-06-14Remove @dirrm entries from PLISTsjoerg1-12/+1
2009-05-20Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlibwiz1-2/+2
major change. Reported by Robert Elz in PR 41345.
2008-11-10Bump PKGREVISION for libXaw API depends bump due to libXaw8 removal.wiz1-2/+2
2008-06-20Add DESTDIR support.joerg3-2/+30
2008-01-16bl3 libXrandr et al. so that we get fullscreen support with modular-xorgdrochner1-3/+5
bump PKGREVISION approved by Krister Walfridsson
2007-09-21Fix paths for GConf, libglade, libart, libsigc++, lablgtk moves.wiz1-2/+2
Bump PKGREVISION.
2007-09-19Bump PKGREVISION for gnome-vfs rename.wiz1-1/+2
2007-08-30Update to 1.22:wiz8-95/+19
* Changes in VICE 1.22 ====================== ** C128 changes --------------- - Added 2 MHz mode support (experimental). - The cursor keys are mapped differently in C64-mode now. - Fixed C64-mode autostart support. ** VIC20 changes ---------------- - Improved the sound emulation where the 'volume change click' is concerned, and normalized the audio output level. ** VIC-II --------- - The VIC-II border mode can be selected now (normal, full, debug). - Some sprite fixes needed for Krestage 3 demo. ** Drive changes ---------------- - Improved drive LED emulation. ** Unix changes --------------- - Fixed the "black screen" bug caused by some X11 library security update. - Fixed the usb support for bsd based platforms. - Changed the preferred libdir and docdir for netbsd and freebsd. - Xaw/XRandR fullscreen mode is supposed to work. ** C1541 changes ---------------- - Fixed some unlynx bugs.
2007-05-29Remove (default off) ffmpeg from PKG_SUPPORTED_OPTIONS -- pkgsrcwiz1-2/+4
vice version 1.21 needs at least ffmpeg-0.5.1, which is not currently in pkgsrc.
2007-04-15Update to 1.21:wiz5-17/+20
* Changes in VICE 1.21 ====================== ** General ---------- - Added sound recording support. - Added aiff, iff, mp3 and wav sound dump drivers. ** C128 changes --------------- - Added digimax support. - Fixed some minor VDC graphics bugs. ** C64 changes -------------- - Added MMC64 support. - Added digimax support. - Added Action Replay III support. - Improved compatibility of TFE emulation. ** PET changes -------------- - Added SID cartridge support. - Extended the PET REU emulation to include 512/1024/2048KB. ** PLUS4 changes ---------------- - Added SID cartridge support. - Fixed some minor TED graphics bug. ** VIC20 changes ---------------- - Added SID cartridge support. ** Drive changes ---------------- - Added support for Dolphin DOS 2 & 3 and Professional DOS 1571. The GUI is partially missing, command line switches have to be used. ** Unix changes --------------- - New Hungarian translations. - Fixed some bug in the XAW file selector. - New fullscreen mode based on XRandR - although restriced to XVideo HW scaling. See also BUGS. - Raster synchronization based on openGL extension `GLX_SGI_video_sync'. See openGL-sync.txt for details. - Fixed colormap handling on certain Gnome systems (sporadic black menus, e.g. reported by some FC users). - ffmpeg support should work again. ** MS-Windows changes --------------------- - Added Hungarian translations. - Added giflib/libungif dll support. ** OS/2 changes --------------- - Fixed a video resource bug that prevented VICE from running. ** Mac OSX X11 changes ---------------------- - Added Gtk+ Port - Introduced single "smart" Application Bundle VICE.app - Added command line launcher for Terminal.app and xterm - Added build scripts for all external libraries and universal builds of VICE ** AmigaOS changes ------------------ - Fixed some UI dialog bugs. - Added Hungarian translations. - Added more (previously missing) UI elements. - Added native MorphOS icons. - Fixed for native AmigaOS4 compile. - Added VBCC build scripts. - New experimental ppc-warpos port. - New experimental ppc-powerup port. ** BeOS changes --------------- - Fixed to also run on ZETA. - New ppc-beos port. - Added (previously missing) UI elements. ** Miscellaneous changes ------------------------ - Fixed the setting of illegal filenames.
2007-02-07Update to 1.20:wiz12-262/+63
* Changes in VICE 1.20 ====================== ** General ---------- - New GP2X port. - New AmigaOS3, AmigaOS4, MorphOS and AROS (x86/ppc) ports. - Mac OSX X11 port is included in the main distribution now. - Fixed some unusual CPU opcodes. ** C64 changes -------------- - Fixed some longstanding RMW to IO area VIC-II DMA timing bug. - Added Mikro Assembler, Dela EP7x8, Dela EP256 and Rex EP256 cart support. - Fixed the KCS cart emulation. - Added swiftlink and turbo232 support. - Added +256k memory expansion support. - Added I/O source read collision detection support, making simultanious use of multiple expansions possible, like on the real machine. - Fixed the RR-net address decoding and REU compatibility. - Fixed a problem with traps using the SX Kernal ROM. - Some IDE64 ultimax bug has been fixed. ** PET changes -------------- - Added 128kb REU memory expansion support. ** PLUS4 changes ---------------- - Added 256k csory memory expansion support. - Added 256k, 1024k and 4096k hannes memory expansion support. ** Unix changes --------------- - Gnome1 is no longer supported. - Gnome2 is now supported - everthing except the Image preview with CBM font should work. - Gnome 2 port supports dimmable drive LED now. - Added experimental ParSID support. - Added support for minix3. - Fixed some compile problems with the ffmpeg library. ** MS-Windows changes --------------------- - Added experimental ParSID support. ** MS-DOS changes ----------------- - Added experimental ParSID support. ** Mac OSX X11 changes ---------------------- - Added support for Intel build. - Added USB joystick support. ** Miscellaneous changes ------------------------ - Added support for more 3rd party basic extenders to petcat. - Added a c64/c128 cartridge conversion program (cartconv). - Added binary distribution (package) creation functionality. - Fixed a bug in the trap emulation with caused programs probing devices on the IEC bus to fail. - Lots of small fixes to the monitor.
2006-12-27- fine grained X11 dependencies for packages which have either USE_IMAKEjoerg1-1/+3
or USE_X11BASE set, but don't include mk/x11.buildlink3.mk directly or via buildlink3.mks - introduce BUILDLINK_PREFIX.libXpm as alias for BUILDLINK_PREFIX.xpm in the !modular case - fix some cases where the check for libX11 couldn't work at all by using C++ for compilation without including the proper headers Verified using a full X11_TYPE=xorg bulk build without additional breakage. Discussed with salo@, wiz@ and send to packages@ for feedback.
2006-12-15Mechanically replace all includes of buildlink3.mk of the followingjoerg1-2/+2
packages with the modular Xorg equivalent. Those are falling back to the old location by default, so this commmit doesn't change dependencies. graphics/xpm ==> x11/libXpm fonts/Xft2 ==> x11/libXft x11/Xfixes ==> x11/libXfixes x11/xcursor ==> x11/libXcursor x11/Xrender ==> x11/libXrender x11/Xrandr ==> libXrandr
2006-10-17Use inttypes.h for defines used by ffmpeg-option.wiz2-1/+14
Fixes build on amd64 (the replacements are wrong).
2006-10-16Remove superfluous (automatically added) part (hi rillig).wiz2-12/+3
2006-10-14Fixed "test ==" and a few pkglint warnings.rillig4-11/+80
2006-07-06- Convert gnome option to use gnome2 libraries, via official patch.dillo4-3/+104
Manually patch Makefile.in and configure to avoid dependency on autotools. - Explicitly disable esd when not requested, it is found and used with gnome enabled otherwise.
2006-06-29Fix a few pkglint warnings.wiz1-6/+6
2006-06-29Update to 1.19:dillo7-110/+60
- Fixed "RESTORE key works only once" bug. - Fixed compilation with GCC4. - [C64] Fixed an opcode execute problem with the +60k expansion. - [C64] New c64 256k expansion support. - [VIC-II] Fixed switch from idle state to display state. - [VIC-II] Added missing DEN bit scrolling feature. - The experimental netplay feature has been extended to the Unix platforms for testing. - Added IPV6 support to netplay. - Fixed crash if settings are saved. - Fixed some Gnome1 annoyances (popup menus in status bar) - Rework of gnome save media (screenshot) dialog - Xaw Statusbar fixes and improvements (new buttons for recording). - Added various new screenshot formats. - Improved the image content lister to display at least the first part of a circular directory listing. - Made the tape routines able to cope with non-standard header sizes. XXX: should use SUBST framework instead of home-grown code. Updated during freeze to fix gcc4 compile problems, okayed by wiz.
2006-04-17Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update.wiz1-2/+2
2006-04-17Strip ${PKGLOCALEDIR} from PLISTs of packages that already obeyjlam1-7/+7
PKGLOCALEDIR and which install their locale files directly under ${PREFIX}/${PKGLOCALEDIR} and sort the PLIST file entries. From now on, pkgsrc/mk/plist/plist-locale.awk will automatically handle transforming the PLIST to refer to the correct locale directory.
2006-04-13BUILD_USE_MSGFMT and USE_MSGFMT_PLURALS are obsolete. Replace withjlam1-4/+2
USE_TOOLS+=msgfmt.
2006-03-31* Welcome to the brave new world of gettext-0.14.5 -- if a source filejlam4-41/+48
includes <libintl.h>, then we must ensure that the resulting object is linked against -lintl. This ensures that the correct *printf() functions are used across all platforms. * List the info files directly in the PLIST. * Leave the HTML documentation where it is originally installed so that it references image files correctly. Bump the PKGREVISION to 3.
2006-03-13Update MASTER_SITES.wiz1-3/+3
(anyone up for the update to 1.19?)
2006-02-17Revert previous, committed by accident.wiz1-2/+1
2006-02-17Fix font handling. Move options handling to options.mk.wiz4-33/+36
Fix pkglint warning. Bump PKGREVISION.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-1/+2
2005-12-11Improve sun sound driver on NetBSD to support stereo and not todillo5-33/+123
rely on counting of played samples, which can get out of sync. This may work on other platforms too, but I cannot test it. Update to 1.18: - Fixed a bug that caused the emulator to crash after 72 minutes. - Added internal zlib and lpng support if no native libraries are found at compile time. - Fixed video recording frame rate in NTSC mode. - [C64] Added Structured Basic, Comal 80 and Ross cart support. - [C64] Fixed the improper detaching of certain types of carts. - [C64] The +60K expansion base address is now selectable for compatibility with the oldest version of the expansion. - [C128] Improved the VDC emulation. - Added support for more 3rd party basic extenders to petcat. - Compiling for QNX 6.x works now (binary package is available). - [C64] Binary packages for Solaris machines are available. - [C64] Added full GeoRAM memory expansion support with sizes from 64KB to 4MB. - [C64] Added full RamCart memory expansion support. - [C64] Added full +60K memory expansion support. - [C64] Correct REU values after reset. - [C128] Added full GeoRAM memory expansion support with sizes from 64KB to 4MB. - [C128] Added RamCart memory expansion support without the read-only option. - [C128] Fixed some C64 mode bugs. - [C128] Correct REU values after reset. - New dutch translation. - Language support has been extended to include commandline-options. - BSD platform problems with using the sounduss and soundsun driver have been fixed. - Problems compiling with older versions of libpng have been fixed. - Problems with MAXPATHLEN and PATH_MAX when compiling have been fixed. - New ALSA sound driver. - Fixed some compile errors if GCC4 is used. - Added support for more analog joysticks. - Userport RS232 emulation should work as expected now.
2005-12-04Fix build dependency on X11 clients.joerg1-2/+2
2005-11-18Fix a static/non-static conflict that prevented this from buildingkristerw2-1/+15
when using gcc 4.
2005-10-05Remove some more *LEGACY* settings that are over a month old andwiz1-2/+1
thus were before 2005Q3.
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+1
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-05-31Packages have no business modifying PKG_DEFAULT_OPTIONS -- it's adillo1-5/+2
user settable variable. Set PKG_SUGGESTED_OPTIONS instead. Also, make use of PKG_OPTIONS_LEGACY_VARS. Reviewed by wiz.
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison