pkgsrc/emulators
ryoon 198906b731 Update to 2.6
* It seems that NetBSD/i386 and amd64 do not boot on this version of bochs...

Changelog:
Changes in 2.6 (September 2, 2012):

Brief summary :
- More than 10% CPU emulation speedup !
- Support for AMD's SVM hardware emulation (including extended XAPIC support).
- Implemented support for new x86 ISA extensions.
  Bochs is fully aligned with rev043 of Intel(R) Architecture Manual.
- Improved emulation accuracy (critical fixes for APIC, VMX and AVX/XOP emulation).
- Bochs internal debugger: new command to show state of a device from the debugger.
- ROM BIOS: improved PCI boot ROM support (for VGA and other devices)
- Networking:
    - Ported Intel(R) 82540EM Gigabit Ethernet adapter emulation from Qemu.
    - Added PCI network boot ROM support to all network adapters.
    - Added TFTP support to the 'slirp' networking module.
- Harddrive: added support for VirtualPC disk images, fixed sparse disk images.
- Sound:
    - implemented PC speaker beep using the lowlevel sound interface.
    - SDL audio output support.
- Added ability to set log action per device from .bochsrc.
- Moved disk imaging, networking, sound and USB devices to subdirectories
  in the iodev folder.

Detailed change log :

- CPU
  - Implemented EPT A/D extensions support.
    Bochs is fully aligned with rev043 of the of Intel(R) Architecture Manual.
  - Implemented ADX (ADCX/ADOX) instructions support, the feature can
    be enabled using .bochsrc CPUID option.
  - More than 10% CPU emulation speedup with even more optimal lazy flags
    handling, stack access optimizations and cross branch trace linking.
  - Support for AMD's SVM hardware emulation in Bochs CPU, to enable
    configure with --enable-svm option
  - Implemented AMD Extended XAPIC support, to enable set .bochsrc CPU
    APIC option to 'xapic_ext'
  ! Added Corei5 750 (Lynnfield) configuration to the CPUDB
  ! Added Turion64 (Tyler) configuration to the CPUDB
  ! Added AMD Phenom X3 8650 (Toliman) configuration to the CPUDB
  ! Added Corei7 3770K (Ivy Bridge) configuration to the CPUDB
  - Bugfixes for CPU emulation correctness and stability
    (critical fixes for APIC/X2APIC, VMX and AVX/XOP emulation)

- Bochs Debugger and Instrumentation
  - Implemented new debugger command 'info device [string]' that shows the
    state of the device specified in 'string'
  - Improved debug dump for ne2k, pci, pic and vga/cirrus devices. Added
    debug dump for pci2isa, i/o apic, cmos, pit, floppy and dma devices.
  - Added TLB to CPU param tree - now it can be browsed from Bochs internal
    debugger and Bochs debugger GUI through param tree interfaces
  - Implemented 'writemem' debugger command to dump virtual memory block
    starting from selected linear address into a file
  - Updated definition of instrumentation callbacks, see description in
    instrumentation.txt / Fixed instrumentation examples

- Configure and compile
  - Moved disk imaging, networking, sound and USB devices to subdirectories
    in the iodev folder.
  - pcidev: enable support for Linux kernel 3.x (Debian patch by Guillem Jover)
  - debugger: generate parser / lexer files only if all required tools are present

- Config interface
  - Added support for direct device plugin loading with bochsrc directive for
    devices which have the same name for the plugin and config option.
  - The bochsrc option 'plugin_ctrl' can now be used to load/unload optional
    plugins directly when parsing the config file or command line. See the bochsrc
    sample for supported devices.
  - Moved bochsrc parsing / writing and config parameter handling for networking,
    sound and USB devices to the plugin device code. The options are only
    available when the corresponding plugin device is loaded.
  - Added ability to set log action per device from .bochsrc.
  - Added new command line option '-noconsole' to disable the console
    window on Windows host.
  - Renamed PCI Pseudo NIC option to "pcipnic" (for direct plugin loading)
  - Moved several related options to the new "keyboard" bochsrc option.
  - Added new parameter 'rtc_sync' for the 'clock' option. If this option
    is enabled together with the realtime synchronization, the RTC runs
    at realtime speed.
  - Moved MWAIT_IS_NOP bochsrc option from CPUID to CPU so it can be set
    even if cpu was configured using pre-defined CPUDB profile.
  - Allow larger CPU 'quantum' values when emulating SMP systems for speed
    (quantum values up to 32 are allowed now).

- I/O Devices
  - Networking
    - Ported Intel(R) 82540EM Gigabit Ethernet adapter emulation from Qemu,
      to enable configure with option --enable-e1000
    - Added PCI network boot ROM support to all network adapters
    - Added TFTP support to the 'slirp' networking module
  - PCI
    - added "auto-assign to PCI slot" feature for PCI-only devices
  - DMA
    - Added the capability to transfer more then one byte / word per ISA DMA cycle
  - VGA
    - Major rewrite of the vga / cirrus code:
      - vgacore (shared standard VGA emulation code)
      - vga (Bochs VBE and PCI VGA)
      - cirrus (CL-GD 5430 ISA / CL-GD 5446 PCI)
    - Added VGA graphics blinking support
    - More accurate vertical and horizontal retrace emulation
      (based on the DOSBox implementation)
  - hard drive / hdimage
    - added new disk image mode 'vpc' for VirtualPC images
    - undoable mode: added coherency check (flat image size and timestamp)
    - sparse mode: fixed read support
  - Sound
    - implemented PC speaker beep using the lowlevel sound interface
    - added SDL audio output support

- ROM BIOS
  - improved PCI boot ROM support (for VGA and other devices)
  - added MADT entry for Interrupt Source Override to ACPI tables

- GUI and display libraries
  - implemented "auto-off" timer for status LEDs indicating a data transfer
  - Added support for sending absolute mouse position values from the gui if an
    absolute pointing device (USB tablet) is active (rfb, sdl, win32, wx, x).
  - Gui debugger now supported when using sdl gui on Windows
  - Implemented "hideIPS" option in rfb, sdl, win32 and wx libraries
  - wx: fixed random freezes with wxGTK and "show ips" feature enabled
  - rfb: the "show ips" feature now works on Windows host

- Tools
  - bxcommit: added support for converting growing to flat mode images
  - bxcommit: support command line options and non-interactive (quiet) mode
  - bximage: increased maximum disk size to 8 TB

- SF patches applied
  [3540389] Patch 5 : Change memory reference functions argument order by Yeong-uk Jo
  [3539254] Patch 4 : Memory reference optimization 2 by Yeong-uk Jo
  [3539251] Patch 3 : Memory reference optimization by Yeong-uk Jo
  [3539237] Patch 2 : Some optimization by Yeong-uk Jo
  [3539228] Patch 1 : ROM BIOS Compatibility patch by Yeong-uk Jo
  [3505209] Fixed combo box size by Konrad Grochowski
  [2864391] Gui debugger default regs by Thomas Nilsen
  [3486555] Fix critical stack leak in Win32 GUI by Carlo Bramini

- these S.F. bugs were closed/fixed
  [625877]  wx: power button -> thread deadlock
  [3534063] Configure does not check for flex presence
  [3555237] NE2000 doesn't compile on OS/X
  [3553168] X doesn't build in latest code on OS/X
  [3550175] Crash when saving snapshot to directory instead of file
  [3548109] VMX State Not Restored After Entering SMM on 32-bit Systems
  [3548108] VMEXIT Instruction Length Not Always Getting Updated
  [3545941] Typo in preprocessor symbol
  [3538731] Missing CR8 register
  [3538574] Missing XD flag ( Execute Disable ) when showing PTEs
  [3537556] Missing initializations
  [3537309] Unable to use the debug GUI with SDL and plugins
  [3537473] GUI debugger only shows 32-bit CRx registers in x86-64 mode
  [3533426] UHCI PCI interrupts
  [3459359] svga cirrus initialization
  [3535228] info gdt does not show long mode segments
  [3531806] Bochs crashes (SIGSEGV) when starting via ssh console
  [3531807] Various missing initialization values reported by Valgrind
   [635789] mapping mode 0 not supported
  [3307201] BOCHS panics when execute HBIOS.COM
  [3528809] IO APIC index register width
  [3528516] Missing #if in soundmod.h
  [3526069] MADT:Interrupt Source Override missed
  [3518753] update dump after manual chages to memory contents
  [3516859] bug in svn e1000 module
  [3516029] stepping not working in debugger GUI in case of smp vm
  [3510403] closing config dialog box closes entire simulator
  [3459998] Bochs cannot be compiled outside the source tree
  [2905969] can't use --enable-gdb-stub on vs2008
  [3294001] Bochs GUI doesn't appear properly for 2nd Bochs copy
  [3493315] Changing VGA 9/8 dot mode causes screen corruption

- these S.F. feature requests were closed/implemented
  [3540441] automatically enable devices in plugin control
  [1251456] command line method to query bochs for features
  [3409396] sdl sound
  [3519794] debugger's ability to save physical/linear memory dumps
  [1429612] Idea how to speedup simulation - stack direct access
  [1703452] Other Network Devices?
  [2919376] Disable show the console window
   [534271] can't set log action by device (bochsrc)
2012-10-01 13:40:48 +00:00
..
aliados Install documentation. 2012-05-15 11:34:52 +00:00
applyppf
aranym Fix build on NetBSD. 2012-09-28 16:30:16 +00:00
arcem Add user-destdir installation support. 2011-03-03 12:55:48 +00:00
arnold recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
atari800 emulators/atari800: Upgrade to version 2.2.1 from 2.1.0 2012-08-26 19:42:09 +00:00
b-em emulators/b-em: Upgrade from version 2.1a to 2.2 (Fixes zlib 1.27) 2012-08-12 02:03:15 +00:00
BasiliskII add limits.h to fix the linux build 2012-05-14 07:35:02 +00:00
blinkensim recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
bochs Update to 2.6 2012-10-01 13:40:48 +00:00
ckmame Recursive PKGREVISION bump for libxml2 buildlink addition. 2012-06-14 07:43:06 +00:00
cmdpack Update to 1.03: 2012-04-15 15:46:53 +00:00
compat12 Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
compat13 Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
compat14 Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
compat15 Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
compat15-extras Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
compat16 Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
compat16-extras Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
compat20 Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
compat20-extras Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
compat30 Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
compat30-extras Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
compat40 Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
compat40-extras Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
compat_netbsd Remove @dirrm related logic. 2009-06-14 22:57:58 +00:00
Cygne-SDL Fix previous, should be ${TOOLS_PATH.zip} as noted by Joerg. 2012-04-14 03:47:37 +00:00
cygwin_esound PR/29576 -- Use @RCD_SCRIPTS_SHELL@ in rc.d scripts, not /bin/sh 2011-10-07 22:37:02 +00:00
cygwin_lib Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
darcnes Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
darwin_lib Add destdir installation support. 2011-03-03 13:06:49 +00:00
DatLib Change default for zip extraction to leave files as they are. 2009-08-25 11:56:34 +00:00
DatUtil Honor LDFLAGS from pkgsrc. 2011-11-29 06:11:53 +00:00
dega emulators/dega: Fix indirect linking on DragonFly 2012-05-16 11:27:31 +00:00
dgen Update to 1.28, provided by Opolo Remo <gatta1@dcemail.com>. 2012-01-08 15:10:49 +00:00
dosbox Recursive bump for libmikmod shlib major ++ 2012-06-04 09:29:53 +00:00
dynagen Bump PKGREVISION from default python to 2.7. 2012-03-15 11:53:20 +00:00
dynamips Don't hardwire /usr/lib/libelf.a, even for Linux. Should fix Linux build. 2012-05-23 05:13:22 +00:00
e-uae recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
fceu Stop maintaining it, dead upstream. 2012-09-14 13:33:10 +00:00
fmsx emulators/fmsx: Fix for libz >= 1.2.6 2012-07-18 23:23:20 +00:00
freebsd_lib Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
fuse recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
fuse-utils recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
gambatte recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
gcube emulators/gcube: Fix indirect linking on DragonFly 2012-05-16 18:35:28 +00:00
generator recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
generator-cbiere Add missing archivers/bzip2 and deve/zlib buildlinks. 2011-11-16 09:22:25 +00:00
gens recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
gns3 Bump PKGREVISION for python default version change to 2.7. 2012-03-09 12:33:57 +00:00
gnuboy emulators/gnuboy: Fix for modern gcc 2011-12-09 01:31:57 +00:00
gnuboy-sdl emulators/gnuboy-sdl: Fix for modern gcc 2011-12-09 01:32:58 +00:00
gpsim recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
gpsim-devel recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
gpsim-oscilloscope recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
gpsim-ptyusart recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
gxemul fix missing patch checksums 2012-08-02 09:41:06 +00:00
handy_sdl emulators/handy_sdl: Really fix normal user building 2012-05-27 17:47:29 +00:00
hatari Update to 1.6.2 2012-08-12 11:06:25 +00:00
hercules Fix build on DragonFly 3.0.1 2012-03-25 05:27:42 +00:00
hercules-images Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
ia64sim Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
kegs Recognize both "ppc" and "powerpc" as appeared in today's netbsd powerpc 2012-06-28 03:23:37 +00:00
kenigma recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
libspectrum recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
lrmi Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
m1 Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
makeppf
mame recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
MAMEDiff Honor LDFLAGS from pkgsrc. 2011-11-29 06:11:53 +00:00
mednafen recursive bump from libcdio shlib major change. 2012-09-23 05:36:22 +00:00
mess recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
minivmac Remove kei as maintainer, he resigned. 2009-09-02 08:34:13 +00:00
mmix Reduce mmix's dependencies on TeX. 2012-03-05 16:22:46 +00:00
NeoPop-SDL png shlib name changed for png>=1.5.0, so bump PKGREVISIONs. 2011-01-13 13:36:05 +00:00
nestopia recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
netbsd32_compat15
netbsd32_compat15-extras
netbsd32_compat16
netbsd32_compat16-extras
netbsd32_compat20
netbsd32_compat20-extras
netbsd32_compat30
netbsd32_compat30-extras
netbsd32_compat40
netbsd32_compat40-extras
openmsx emulators/openmsx: Fix linkpkgsrc circular reference 2012-09-02 09:33:32 +00:00
or1ksim Depend on GNU readline because rl_event_hook is not provided by NetBSD's. 2011-12-19 16:09:22 +00:00
osf1_lib Update to support PKG_DESTDIR. 2010-02-26 05:09:54 +00:00
p11 Fix build with gcc-4.5 and on systems providing POSIX getline(). 2011-12-19 16:20:56 +00:00
palmosemulator Include limits.h to define PATH_MAX. 2012-06-19 20:29:34 +00:00
pcemu Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
pearpc Remove @dirrm entries from PLISTs 2009-06-14 17:48:39 +00:00
qemu Add the or32 user space emulator. 2012-09-26 10:42:48 +00:00
qemu0 recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
raine * fixes build with libpng-1.5 2011-03-14 12:04:31 +00:00
ROMBuild Honor LDFLAGS from pkgsrc. 2011-11-29 06:11:53 +00:00
ROMInfo Honor LDFLAGS from pkgsrc. 2011-11-29 06:21:02 +00:00
sap No master site here; set INTERACTIVE_STAGE=fetch 2009-09-23 13:49:40 +00:00
simh emulators/simh: Prevent -lto switch on DragonFly 2012-07-18 23:46:01 +00:00
simulavr Patch up gcc inline mess. Fixes build with gcc 4.5. 2011-12-18 19:51:33 +00:00
ski Complete import of wip/ski 2011-07-27 11:14:22 +00:00
ski-bin copy compat_linux(8) binary package to appropriately named directory 2011-07-27 09:20:57 +00:00
sms_sdl emulators/sms_sdl: Fix indirect linking on DragonFly 2012-05-16 14:38:05 +00:00
snes9x Zap environment before invoking tr to remove any locale settings that 2012-03-07 19:10:30 +00:00
snes9x-gtk recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
spim Drop dependency on libXp (from Imake) 2012-05-03 09:55:29 +00:00
stella Update to 3.7.1. 2012-09-02 18:35:19 +00:00
suse100_32_alsa
suse100_32_aspell
suse100_32_base
suse100_32_compat
suse100_32_expat
suse100_32_fontconfig
suse100_32_freetype2
suse100_32_glx
suse100_32_gtk2
suse100_32_krb5
suse100_32_libcups
suse100_32_libjpeg
suse100_32_libpng
suse100_32_libsigc++2
suse100_32_libtiff
suse100_32_libxml2
suse100_32_locale
suse100_32_openmotif
suse100_32_openssl
suse100_32_resmgr
suse100_32_slang
suse100_32_x11
suse100_alsa
suse100_aspell
suse100_base Enable PKG_DESTDIR_SUPPORT for suse100_* 2009-06-05 11:20:27 +00:00
suse100_compat
suse100_expat
suse100_fontconfig Add more font dirs, same as suse113_fontconfig. 2011-02-21 08:38:30 +00:00
suse100_freetype2
suse100_glx
suse100_gtk2
suse100_krb5
suse100_libcups
suse100_libjpeg
suse100_libpng
suse100_libsigc++2
suse100_libtiff
suse100_libxml2
suse100_linux remove obsolated module support codes. 2012-03-17 06:43:54 +00:00
suse100_locale
suse100_openmotif
suse100_openssl
suse100_resmgr
suse100_slang Compensate for lib vs lib64 on amd64. 2009-11-29 17:48:40 +00:00
suse100_x11
suse121_32_alsa Import suse32_alsa-12.1 as emulators/suse121_32_alsa. 2012-03-21 13:26:27 +00:00
suse121_32_aspell Import suse32_aspell-12.1 as emulators/suse121_32_aspell. 2012-03-21 13:27:25 +00:00
suse121_32_base Import suse32_base-12.1 as emulators/suse121_32_base. 2012-03-21 13:28:53 +00:00
suse121_32_compat Import suse32_compat-12.1 as emulators/suse121_32_compat. 2012-03-21 13:29:07 +00:00
suse121_32_expat Import suse32_expat-12.1 as emulators/suse121_32_expat. 2012-03-21 13:29:21 +00:00
suse121_32_fontconfig Import suse32_fontconfig-12.1 as emulators/suse121_32_fontconfig. 2012-03-21 13:29:39 +00:00
suse121_32_freetype2 Import suse32_freetype2-12.1 as emulators/suse121_32_freetype2. 2012-03-21 13:29:58 +00:00
suse121_32_glx Import suse32_glx-12.1 as emulators/suse121_32_glx. 2012-03-21 13:30:11 +00:00
suse121_32_gtk2 Import suse32_gtk2-12.1 as emulators/suse121_32_gtk2. 2012-03-21 13:30:25 +00:00
suse121_32_krb5 Import suse32_krb5-12.1 as emulators/suse121_32_krb5. 2012-03-21 13:30:35 +00:00
suse121_32_libcups Import suse32_libcups-12.1 as emulators/suse121_32_libcups. 2012-03-21 13:30:46 +00:00
suse121_32_libcurl Import suse32_libcurl-12.1 as emulators/suse121_32_libcurl. 2012-03-21 13:31:01 +00:00
suse121_32_libdrm Import suse32_libdrm-12.1 as emulators/suse121_32_libdrm. 2012-03-21 13:31:19 +00:00
suse121_32_libjpeg Import suse32_libjpeg-12.1 as emulators/suse121_32_libjpeg. 2012-03-21 13:31:33 +00:00
suse121_32_libpng Import suse32_libpng-12.1 as emulators/suse121_32_libpng. 2012-03-21 13:31:50 +00:00
suse121_32_libsigc++2 Import suse32_libsigc++2-12.1 as emulators/suse121_32_libsigc++2. 2012-03-21 13:32:09 +00:00
suse121_32_libtiff Import suse32_libtiff-12.1 as emulators/suse121_32_libtiff. 2012-03-21 13:32:25 +00:00
suse121_32_libxml2 Import suse32_libxml2-12.1 as emulators/suse121_32_libxml2. 2012-03-21 13:32:39 +00:00
suse121_32_locale Import suse32_locale-12.1 as emulators/suse121_32_locale. 2012-03-21 13:33:11 +00:00
suse121_32_openmotif Import suse32_openmotif-12.1 as emulators/suse121_32_openmotif. 2012-03-21 13:33:21 +00:00
suse121_32_openssl Import suse32_openssl-12.1 as emulators/suse121_32_openssl. 2012-03-21 13:33:31 +00:00
suse121_32_qt4 Import suse32_qt4-12.1 as emulators/suse121_32_qt4. 2012-03-21 13:34:44 +00:00
suse121_32_slang Import suse32_slang-12.1 as emulators/suse121_32_slang. 2012-03-21 13:34:59 +00:00
suse121_32_x11 Import suse32_x11-12.1 as emulators/suse121_32_x11. 2012-03-21 13:35:10 +00:00
suse121_alsa Import suse_alsa-12.1 as emulators/suse121_alsa. 2012-03-21 13:35:24 +00:00
suse121_aspell Import suse_aspell-12.1 as emulators/suse121_aspell. 2012-03-21 13:35:33 +00:00
suse121_base Update bash-4.2/libreadline6-6.2 rpm to 1.14.1 for CVE-2012-3410. 2012-07-24 09:59:48 +00:00
suse121_compat Import suse_compat-12.1 as emulators/suse121_compat. 2012-03-21 13:36:05 +00:00
suse121_expat Update libexpat1 rpm to 2.0.1-109.7.1, recommented update. 2012-04-24 07:51:30 +00:00
suse121_fontconfig Import suse_fontconfig-12.1 as emulators/suse121_fontconfig. 2012-03-21 13:36:25 +00:00
suse121_freetype2 Update suse121_freetype2 rpm to libfreetype6-2.4.7-6.1 for CVE-2012-1129 - CVE-2012-1144. 2012-04-13 11:56:33 +00:00
suse121_glx drm module and libudev0 are required. 2012-03-22 11:51:48 +00:00
suse121_gtk2 Update gdk-pixbuf-query-loaders and libgdk_pixbuf-2_0-0 rpm to 2.24.0-2.4.1 2012-07-24 10:02:27 +00:00
suse121_krb5 Import suse_krb5-12.1 as emulators/suse121_krb5. 2012-03-21 13:37:21 +00:00
suse121_libcups Import suse_libcups-12.1 as emulators/suse121_libcups. 2012-03-21 13:37:36 +00:00
suse121_libcurl Import suse_libcurl-12.1 as emulators/suse121_libcurl. 2012-03-21 13:37:45 +00:00
suse121_libdrm Import suse_libdrm-12.1 as emulators/suse121_libdrm. 2012-03-21 13:37:54 +00:00
suse121_libjpeg Update ibjpeg62-62.0.0 rpm to 10.4.1 for CVE-2012-2806. 2012-08-02 09:03:11 +00:00
suse121_libpng Update libpng14 RPM to resolve CVE-2012-3425. 2012-08-03 08:29:56 +00:00
suse121_libsigc++2 Import suse_libsigc++2-12.1 as emulators/suse121_libsigc++2. 2012-03-21 13:38:32 +00:00
suse121_libtiff Update suse121_libtiff libtiff3 RPM to 3.9.5-8.7.1 for CVE-2012-2088 and 2012-07-04 07:43:48 +00:00
suse121_libxml2 Update libxml2-2.7.8 rpm to 3.11.1 for CVE-2012-2807. 2012-08-11 02:10:23 +00:00
suse121_linux Change HOMPAGE to openSUSE one, not Enterprise one. 2012-04-13 14:19:17 +00:00
suse121_locale Import suse_locale-12.1 as emulators/suse121_locale. 2012-03-21 13:40:16 +00:00
suse121_openmotif Import suse_openmotif-12.1 as emulators/suse121_openmotif. 2012-03-21 13:40:24 +00:00
suse121_openssl Update suse121_openssl openssl1_0_0 rpm to 1.0.0e-34.12.1 for CVE-2012-0884. 2012-04-24 00:43:37 +00:00
suse121_qt4 Import suse_qt4-12.1 as emulators/suse121_qt4. 2012-03-21 13:40:53 +00:00
suse121_slang Import suse_slang-12.1 as emulators/suse121_slang. 2012-03-21 13:41:02 +00:00
suse121_x11 Import suse_x11-12.1 as emulators/suse121_x11. 2012-03-21 13:41:10 +00:00
swarm Teach this to recognize x86_64 on Linux. 2012-05-23 05:19:40 +00:00
tme recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
tuxnes Fix build on SunOS. 2012-03-07 15:52:40 +00:00
twin This package doesn't build on amd64 because there's absolutely zero 2012-01-03 00:51:10 +00:00
uae recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
ucon64 emulators/ucon64: Fix for libz >= 1.2.6 2012-07-18 22:10:21 +00:00
vba Use const syntax correctly. const void * != void *const, and likewise, 2012-09-29 21:27:14 +00:00
vice Recursive revbump from multimedia/libvpx 1.1.0 update 2012-09-22 13:48:15 +00:00
vmips Fix build with modern GCC 2011-11-27 19:39:09 +00:00
wine recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
wine-devel recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
x48 Add time.h where Linux demands it. 2012-05-23 05:22:37 +00:00
xbeeb Don't explicitly run mkfontdir. 2012-04-18 00:05:13 +00:00
xcopilot Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
xhomer Add xf86dgaproto to hopefully fix -5 native X failure. 2011-07-05 01:33:25 +00:00
xm7 When adding standard headers like <errno.h>, please do *not* wrap in 2012-06-23 19:32:00 +00:00
xnp2 recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
xtrs user-destdir support 2009-07-08 16:40:08 +00:00
xyame
yabause recursive bump from libffi shlib major bump 2012-09-15 10:03:29 +00:00
z26 DESTDIR support. 2009-02-23 17:56:36 +00:00
ZIPIdent Honor LDFLAGS from pkgsrc. 2011-11-29 06:11:53 +00:00
zsnes * fixes build with png-1.5. 2011-03-15 11:46:09 +00:00
Makefile remove suse 11.3 packages. 2012-08-18 16:33:35 +00:00