./wip/wine, Compatibility layer for running Microsoft Windows applications

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 7.0, Package name: wine-7.0, Maintainer: pkgsrc-users

Wine is a compatibility layer capable of running Windows applications on
several POSIX-compliant operating systems. Instead of simulating internal
Windows logic like a virtual machine or emulator, Wine translates Windows
API calls into POSIX calls on-the-fly, eliminating the performance and memory
penalties of other methods and allowing you to cleanly integrate Windows
applications into your desktop.

This package tracks the Wine stable branch.

On 32-bit systems this package supports only 32-bit applications, and on
64-bit systems it supports only 64-bit applications.

MESSAGE.NetBSD [+/-]

Required to run:
[sysutils/desktop-file-utils] [textproc/libxml2] [textproc/libxslt] [graphics/glut] [graphics/lcms] [graphics/tiff] [graphics/freetype2] [graphics/png] [graphics/glu] [fonts/fontconfig] [security/gnutls] [devel/ncurses] [x11/Xcomposite] [x11/xcursor] [x11/Xrender] [x11/liboldXrandr] [graphics/giflib]

Required to build:
[fonts/fontforge] [pkgtools/x11-links] [x11/compositeproto] [x11/glproto] [x11/renderproto] [x11/xproto] [x11/xf86vidmodeproto] [x11/xf86driproto] [x11/damageproto] [x11/inputproto] [x11/xextproto] [x11/randrproto] [x11/dri2proto] [x11/fixesproto4]

Package options: cups, dbus, sane, x11

Master sites: (Expand)

Filesize: 26485.266 KB

Version history: (Expand)


CVS history: (Expand)


   2014-05-04 16:17:49 by othyro | Files touched by this commit (300) | Package removed
Log message:
Removing old/duplicate/archive copies of packages in HEAD.
   2012-10-07 22:11:06 by Aleksej Saushev | Files touched by this commit (137)
Log message:
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
Mark packages that don't or might probably not have staged installation.
   2012-02-19 00:01:47 by Aleksej Saushev | Files touched by this commit (5)
Log message:
Update to WINE 1.4 RC1.

   2011-12-09 13:47:54 by Aleksej Saushev | Files touched by this commit (3)
Log message:
Update to WINE 1.3.34

   2011-11-15 14:22:12 by Aleksej Saushev | Files touched by this commit (5)
Log message:
Update to WINE 1.3.32

   2011-11-12 15:42:37 by Aleksej Saushev | Files touched by this commit (20)
Log message:
Bring WINE 1.3.26 from pkgsrc.

   2010-12-26 06:01:21 by David Sainty | Files touched by this commit (78)
Log message:
Mechanically replace references to graphics/jpeg with the suitable
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-12-22 03:40:41 by Aleksej Saushev | Files touched by this commit (14)
Log message:
Update to WINE 1.3.9, make it build on NetBSD.