summaryrefslogtreecommitdiff
path: root/emulators
AgeCommit message (Collapse)AuthorFilesLines
2007-08-27Update to 0.72:xtraeme3-30/+6
This release fixes a few bugs that slipped through when releasing 0.71. Here a list of the changes: * Fixed unitialized variable in joystick. (Fixes crashes on Vista and Mac OS X) * Some bugfixes and speedups to the 64 bit recompiling core. * Fixed sign flag on soundblaster dma transfers (Space Quest 6 intro) * Fixed a bug in keyboard layout processing code and fixed certain layouts. * Fixed Dreamweb. * Improved speed unlocking when running cycles=max. * Fixed a crash related to the tab completion in the shell. * Improved aspect correction code. Should now be like how a real monitor handles it. * Fixed a bug in the xms status report code. (Blake Stone 1.0 shareware) * Added a lot more keyboard layouts. * Fixed crash related to changing the scaler before a screen was created. * Hopefully fixed compilation on *bsd. * Enabled auto cpu core selection for recompiling core as well. * Made the used joystick selectable when 4axis is specified. * Added some hints for inexperienced DOS users to the shell.
2007-08-24Add static package list for manually created files. Bump package revision.jlam2-2/+4
2007-08-24Add static package list for manually created files. Bump package revision.tron2-2/+6
2007-08-23Only invoke MAKEDEV to create devices if that script exists (whichjlam2-8/+10
doesn't on FreeBSD-6.x). This fixes PR pkg/34817 and PR pkg/36081.
2007-08-23Add the build and install targets to actually create and install thejlam1-1/+11
local.conf file alluded to in the previous commit.
2007-08-23Teach the suse*_fontconfig packages to install a /etc/fonts/local.confjlam6-4/+110
containing the paths to font directories for font packages installed through pkgsrc. This allows Linux packages that use fontconfig to locate fonts to actually find them when X11_TYPE != "native". This should fix PR pkg/35160 and PR pkg/35505. Bump the PKGREVISION.
2007-08-23There are no wildcards when using :S. Use :C instead. This fixes thejlam1-2/+2
build for the compat*-extras packages.
2007-08-23Allow a nicer syntax for expressing needing at least a certain versionjlam4-8/+8
of an emulated operating system. Instead of proliferating things like SUSE_VERSION_REQD, NETBSD_VERSION_REQD, SOLARIS_VERSION_REQD, etc., a package can say: EMUL_REQD= suse>=9.1 netbsd>=2.0 solaris>=10 all in one, succinct line.
2007-08-23Back out previous and solve this in another way that doesn't involvejlam1-3/+14
a hokey new emulator-opsys.mk file.
2007-08-23Break out the inclusion of the operating-system-specific Makefile intojlam1-1/+3
a separate emulator-opsys.mk file. The emulator-opsys.mk file defines EMUL_DISTRO and the various *EMUL*DIR* variables, as well as any opsys-specific variables. Include this file within compat_netbsd/Makefile.common so that the *EXEC_FMT variables (defined by the compat*/emulator.mk files) are defined. This fixes the build of compat* packages. XXX emulator-opsys.mk will go away in the near future as we do more XXX appropriate information hiding.
2007-08-23suse_linux no longer exists -- appease pkglintjnemeth1-2/+1
2007-08-22When testing for the existence of the symlink before removal, usejlam4-8/+12
"test -h", not "test -e" which tests for the existence of the target of the symlink. Bump the PKGREVISIONs of suse100_vmware and suse91_vmware.
2007-08-21* Support netbsd-* as a valid platform in EMUL_PLATFORMS. Use thejlam161-1363/+3483
pkgsrc/emulator/compat* and pkgsrc/emulator/netbsd32_compat* packages to provide the necessary shared libraries to run dynamically linked NetBSD binaries from the days of yore. * Add some additional compat* packages for completeness: compat15, compat20, compat30 * Modify the compat* packages so that "compatNM" only provides files that aren't in "NetBSD-N.(M+1)". For example, compat12 only provides files that don't exist in NetBSD-1.3.x, compat13 only provides files that don't exist in NetBSD-1.4.x, etc. As a result, if you are running NetBSD-3.0/alpha and want to run a 1.3 dynamically linked binary, there is an automatic dependency chain that causes the following packages to be installed: compat13, compat14, compat15, compat16, compat20 There are some deviations from this dependency chain on platforms that have changed executable formats, e.g. i386, m68, sparc, etc. However, in general pkgsrc will require that you have the necessary COMPAT_* options in your kernel to match the installed compat* packages. This restriction is an artificial one imposed by pkgsrc, but allows for a single set of distfiles to be used on all versions of NetBSD. * Provide compat* package support for every supported architecture of NetBSD. Verily, it is now possible to run 1.2 binaries on NetBSD-1.5.3/pc532 by installing the compat12 package from pkgsrc. Rejoice, one and all! * The netbsd32_compat* packages mirror the corresponding compat* packages for use by sparc64 and x86_64 to allow running 32-bit binaries with COMPAT_NETBSD32 kernel support. The "extras" packages supply the additional shared libraries from the corresponding release of NetBSD so that the set of files in /emul/netbsd32 will be complete. * pkgsrc/emulators/compat_netbsd contains infrastructure files shared by all of the compat* packages.
2007-08-16Add support for modular Xorg.joerg2-5/+18
2007-08-16-compat14-cryptojlam1-2/+1
2007-08-16Remove compat14-crypto and make compat14 also install the crypto libraries.jlam11-215/+24
The distinction is pointless nowadays.
2007-08-13Added mk/misc/category.mk, which contains the definitions that are onlyrillig1-2/+2
useful for category Makefiles, as opposed to bsd.pkg.subdir.mk, which is also relevant for the top-level directory. Adjusted the category Makefiles.
2007-08-11Changes 0.9.43:adam3-8/+27
- Direct3D support on top of WGL instead of GLX for better portability. - Many DirectSound fixes. - Still more gdiplus functions. - Many crypt32 improvements. - Lots of bug fixes.
2007-08-01Write out the path to the Makefile to include so that lintpkgsrc won'tjlam39-78/+78
complain.
2007-08-01Support automatically using pkgsrc/emulators/osf1_lib to satisfyjlam4-44/+152
EMUL_PLATFORM osf1-alpha.
2007-08-01Support automatically using pkgsrc/emulators/darwin_lib to satisfyjlam4-41/+148
EMUL_PLATFORMs darwin-i386 and darwin-powerpc.
2007-07-31Fixed build problem on NetBSD 3.x (PR 36632) and NetBSD 2.x (PR 25474).obache6-4/+485
Almost of patches are inspired by emulators/vmware-module3.
2007-07-31Update to 0.71.xtraeme6-71/+22
A bugfix release this time, but we couldn't resist adding a few new exciting features: * Added a new recompiling cpu core which is easier to port! * Added a x86_64 and a mipsel_32 recompiling core. * Fixed hangups on certain platforms after long gameplay of several games. * Fixed several joystick bugs. * Improved cdrom support. (fixes for audio, iso and detection.) * Improved SVGA and VESA. (detection and display) * Fixed a few textmodes and improved ansi emulation a bit. * Fixed pcspeaker and certain types of soundeffects. * Added undocumented mousebackdoor. * Made mount and imgmount a bit easier to use. (ioctl by default, support for ~ and ~username, auto size guessing for images) * Fix a few compilation problems on various hosts and a general code cleanup. * Several small fixes that improve compatibility.
2007-07-31Changes 0.9.42:adam3-7/+15
- Support for activation contexts and side-by-side assemblies. - Many more gdiplus functions. - More messaging support in crypt32.dll. - Many HTTP protocol handling fixes. - Lots of bug fixes.
2007-07-30Replace for @LINUX_BASE@ in linux{,32}-mkpwd. This only affected thejlam2-4/+4
documentation at the head of the script, so I'm not going to bother bumping the PKGREVISION for this.
2007-07-30Update to 2.31:wiz2-7/+8
- Uses DatLib v2.21. - Empty attributes are now ignored (e.g. sha1="") - Removed cloneof, romof and sampleof fixes from datutil -i - DatUtil -i, -I and -p now default the output format to CMPro (in addition to -g, -G and -r which already behave like that) - Added support for the isbios="yes" of MAME v0.117u2 onwards.
2007-07-30Update to 2.21:wiz2-7/+7
- Empty attributes are now ignored (e.g. sha1="") - Removed cloneof, romof and sampleof fixes from datutil -i - DatUtil -i, -I and -p now default the output format to CMPro (in addition to -g, -G and -r which already behave like that) - Added support for the isbios="yes" of MAME v0.117u2 onwards.
2007-07-30Add definition for DIRNAME to the INSTALL scripts, which is needed whenjlam4-6/+8
creating the /emul/linux symlink on a system where /emul doesn't exist. Problem noted by <wiz> in private email. Bump the PKGREVISIONs of suse100_base and suse91_base (and also the corresponding suse32 packages by implication).
2007-07-30s/_LINUX_MODULES/_EMUL_MODULES/gjlam2-4/+4
_LINUX_MODULES was an old, internal name I used in my development of the emulator framework that I had renamed to _EMUL_MODULES everywhere, or so I had thought. This should fix the problem where the dependencies on suse_* weren't being converted into dependencies on suse32_* on x86_64 platforms when building a "linux-i386" package.
2007-07-30Assume that the +ROOT_ACTIONS script is always executed from thejlam4-8/+8
current working directory. This should fix problems installing the suse*_base and suse*_vmware packages as a privileged user. When this package is installed as a privileged user, the +ROOT_ACTIONS script is executed from ${WRKDIR}/.pkginstall before the package metadata directory exists.
2007-07-29Add 32-bit versions of SuSE Linux 9.1 and 10.0 for use by NetBSD/x86_64jlam44-17/+271
with COMPAT_LINUX32.
2007-07-29* Add new emulator framework in pkgsrc/mk/emulator that handles alljlam252-1907/+1784
binary-only packages that require binary "emulation" on the native operating system. Please see pkgsrc/mk/emulator/README for more details. * Teach the plist framework to automatically use any existing PLIST.${EMUL_PLATFORM} as part of the default PLIST_SRC definition. * Convert all of the binary-only packages in pkgsrc to use the emulator framework. Most of them have been tested to install and deinstall correctly. This involves the following cleanup actions: * Remove use of custom PLIST code and use PLIST.${EMUL_PLATFORM} more consistently. * Simplify packages by using default INSTALL and DEINSTALL scripts instead of custom INSTALL/DEINSTALL code. * Remove "SUSE_COMPAT32" and "PKG_OPTIONS.suse" from pkgsrc. Packages only need to state exactly which emulations they support, and the framework handles any i386-on-x86_64 or sparc-on-sparc64 uses. * Remove "USE_NATIVE_LINUX" from pkgsrc. The framework will automatically detect when the package is installing on Linux. Specific changes to packages include: * Bump the PKGREVISIONs for all of the suse100* and suse91* packages due to changes in the +INSTALL/+DEINSTALL scripts used in all of the packages. * Remove pkgsrc/emulators/suse_linux, which is unused by any packages. * cad/lc -- remove custom code to create the distinfo file for all supported platforms; just use "emul-fetch" and "emul-distinfo" instead. * lang/Cg-compiler -- install the shared libraries under ${EMULDIR} instead of ${PREFIX}/lib so that compiled programs will find the shared libraries. * mail/thunderbird-bin-nightly -- update to latest binary distributions for supported platforms. * multimedia/ns-flash -- update Linux version to 9.0.48 as the older version is no longer available for interactive fetch. * security/uvscan -- set LD_LIBRARY_PATH explicitly so that it's not necessary to install library symlinks into ${EMULDIR}/usr/local/lib. * www/firefox-bin-flash -- update Linux version to 9.0.48 as the older version is no longer available for interactive fetch.
2007-07-27Don't use malloc.h.joerg4-1/+40
2007-07-20Changes 2.0.3:adam2-13/+13
* new style of artifacting * corrected PMG in bizarre ANTIC/GTIA modes * added 128 KB SpartaDOS X cartridge type * added support for QVGA landscape smartphones, added the virtual keyboard * new command-line option "-win32keys" for keyboard layouts different from US * MS-Win: run the emulator in a window ("-windowed" on the command line) * middle button support for ST and Amiga mice in X11 and MS-Win targets
2007-07-17Changes 0.9.41:adam4-14/+17
- A number of gdiplus functions. - More complete pdh.dll implementation. - Support for MSI remote calls. - Messaging support in crypt32.dll. - Lots of bug fixes.
2007-07-09Drop maintainership.xtraeme1-2/+2
2007-07-08Drop maintainership.wiz7-14/+14
2007-07-01Changes 0.9.40:adam5-15/+23
- Many MSHTML improvements - A few more sound fixes - Many Direct3D fixes - Lots of bug fixes
2007-06-17Do not use malloc.h.minskim2-1/+14
2007-06-17Use stdlib.h instead of non-standard malloc.h.minskim2-1/+15
2007-06-17Use the tools framework for unzip, so that it can work on the platforms withminskim1-3/+3
native unzip.
2007-06-17Add patch from Magnus Henoch in PR 36502 to make keys work again.wiz3-3/+17
Bump PKGREVISION.
2007-06-16Update to 0.4.6:xtraeme3-7/+9
The changes between release 0.4.5.1 and 0.4.6 include, among other things: o) NetBSD/pmppc can now run in the emulator (with root-on-nfs), on an emulated Artesyn PM/PPC board. o) An instruction combination has been implemented for the idle loop used by NetBSD/arm (cats, netwinder, and iq80321). In plain English, this means that if the guest OS inside the emulator is not using any CPU, the emulator should not use much CPU on the host either. o) Some minor SuperH emulation speed improvements. o) General code cleanup: Non-working (skeleton) emulation modes have been removed, to make it easier to maintain the source code in the long run, and many unused/legacy constructs have been removed.
2007-06-16Changes 0.9.39:adam4-11/+35
- Many MSHTML improvements. - Several improvements to the sound support. - A number of Winsock fixes. - Several new supported constructs in the IDL compiler. - Many Direct3D threading fixes. - Lots of bug fixes.
2007-06-15Expect Xxf86dga to exist with non-native Xorg.Expect Xxf86dga to exist with ↵joerg1-2/+2
non-native Xorg.
2007-06-12Fix infinite loop in configure on DragonFly and FreeBSD 4.joerg4-7/+19
Fix dependencies for modular Xorg by adding Xxf86vm and Xxf86dga. Bump revision.
2007-06-06Made the package build for me. The error message was:rillig3-3/+20
./parsegen -D__UNIXSDL__ -D__OPENGL__ [...] Shared object "libz.so.1" not found
2007-06-06Update to 0.9:wiz3-7/+9
0.9 (2007-06-04) - add support for CMPro XML header skip detectors - fix handling of zero byte ROMs - dumpgame: brief option: no ROM/disk info - mkmamedb: add support for reading Romcenter dat files - mkmamedb: warn about multiple games with same name - mkmamedb: create CMPro dat files - mkmamedb: create mame db or CMPro dat file from zip archives - ckmame: add option to keep files present in old ROM database
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-05-21Update to 0.9.0. Thanks to Michael Van Elst for sending me the missingxtraeme16-332/+134
patch to let this build on systems without POSIX AIO. version 0.9.0: - Support for relative paths in backing files for disk images - Async file I/O API - New qcow2 disk image format - Support of multiple VM snapshots - Linux: specific host CDROM and floppy support - SMM support - Moved PCI init, MP table init and ACPI table init to Bochs BIOS - Support for MIPS32 Release 2 instruction set (Thiemo Seufer) - MIPS Malta system emulation (Aurelien Jarno, Stefan Weil) - Darwin userspace emulation (Pierre d'Herbemont) - m68k user support (Paul Brook) - several x86 and x86_64 emulation fixes - Mouse relative offset VNC extension (Anthony Liguori) - PXE boot support (Anthony Liguori) - '-daemonize' option (Anthony Liguori)