summaryrefslogtreecommitdiff
path: root/emulators/wine
AgeCommit message (Collapse)AuthorFilesLines
2014-01-17Changes 1.6.2:adam26-481/+821
- Color management support updated to liblcms version 2. - Various bug fixes.
2014-01-01Recursive PKGREVISION bump for libgcrypt-1.6.0 shlib major bump.wiz1-2/+2
2013-07-05Recursive revbump from graphics/giflib update to 5.0.4.ryoon2-4/+4
2013-06-04Try to fix the fallout caused by the fix for PR pkg/47882. Part 3:tron2-4/+4
Recursively bump package revisions again after the "freetype2" and "fontconfig" handling was fixed.
2013-06-03Bump freetype2 and fontconfig dependencies to current pkgsrc versions,wiz2-4/+4
to address issues with NetBSD-6(and earlier)'s fontconfig not being new enough for pango. While doing that, also bump freetype2 dependency to current pkgsrc version. Suggested by tron in PR 47882
2013-02-16Recursive bump for png-1.6.wiz1-2/+2
2013-02-06PKGREVISION bumps for the security/openssl 1.0.1d update.jperkin1-2/+2
2013-01-26Revbump after graphics/jpeg and textproc/icuadam2-4/+4
2012-12-16recursive bump from cyrus-sasl libsasl2 shlib major bump.obache1-2/+2
2012-12-10Bump PKGREVISION from graphics/sane-backends.ryoon1-2/+2
2012-10-03Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-09-15recursive bump from libffi shlib major bumpobache1-2/+2
(additionaly, reset PKGREVISION of qt4-* sub packages from base qt4 update)
2012-07-05more PKGREV bumps for gnutls updatedrochner1-2/+2
2012-06-14Recursive PKGREVISION bump for libxml2 buildlink addition.sbd1-2/+2
2012-03-03More pcre PKGREVISION bumps.wiz1-2/+2
2012-02-06Revbump forwiz1-2/+2
a) tiff update to 4.0 (shlib major change) b) glib2 update 2.30.2 (adds libffi dependency to buildlink3.mk) Enjoy.
2012-01-13Recursive bump from audio/libaudiofile, x11/qt4-libs and x11/qt4-tools ABI bump.obache1-2/+2
2011-11-26requires flex>=2.5.33hans1-1/+2
2011-11-01Recursive bump for graphics/freetype2 buildlink addition.sbd1-1/+2
2011-11-01Recursive bump for graphics/freetype2 buildlink addition.sbd1-2/+2
2011-05-04Changes 1.2.3:adam27-374/+911
* Translation updates * Various bug fixes
2011-04-22recursive bump from gettext-lib shlib bump.obache1-2/+2
2011-03-09libungif/buildlink3.mk -> mk/giflib.buildlink3.mkdrochner1-3/+3
(uses giflib now per default) bump PKGREV
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 suitabledsainty2-4/+4
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-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-02-20redid some patches since they had been off by a few linesschwarz6-28/+27
2010-01-18Second try at jpeg-8 recursive PKGREVISION bump.wiz2-4/+4
2010-01-04wine-devel is only for i386/x86_64. Both don't work on NetBSD though.joerg1-1/+3
2009-09-07Fix build to Wine a bit.reinoud2-1/+29
It would bomb out on: freetype.c:166: error: 'FT_MulFix' undeclared here (not in a function) freetype.c:166: warning: type defaults to 'int' in declaration of 'pFT_MulFix' This is due to a newer version of freetype. Patch by Shunichi Fuji. Still fails to compile on other errors, but one more down.
2009-08-26bump revision because of graphics/jpeg updatesno2-3/+4
2009-07-22Remove empty PLIST.common_end.wiz1-1/+0
2009-07-22Remove USE_DIRS from pkgsrc.wiz1-2/+1
Shared directories can now be created independently by the pacakges needing them and will be removed automatically by pkg_delete when empty. Packages needing empty directories can use the @pkgdir command in PLIST. Discussed and ok'd in thread starting at http://mail-index.netbsd.org/tech-pkg/2009/06/30/msg003546.html
2009-06-14Remove @dirrm entries from PLISTsjoerg1-14/+1
2009-04-20Fix building on Darwin; fix PLIST (added common_end)adam9-37/+88
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time.
2008-12-16Fix -m32 build on amd64. Make sure the appropriate multilib options arejmcneill1-1/+13
passed to configure for CC, CXX, AS, and LD as these options are passed through to winegcc, which the buildlink wrapper doesn't handle. Also pass LDD to configure so it can be overridden.
2008-12-07Enable HAL, bump PKGREVISIONjmcneill2-4/+11
2008-10-18Changes 1.0.1:adam3-9/+8
* Bugfix release
2008-06-28wined3d components aren't dependent on opengl option.sborrill1-3/+3
Don't bother bumping PKGREVISION as you wouldn't have been able to create a binary package with -opengl in the PKG_OPTION before
2008-06-28Redundant; the code already handles the __NetBSD__ case.jmcneill2-42/+1
2008-06-28winex11.drv: if 800x600 is not available, attempt 800x480 before giving up.jmcneill2-1/+23
This lets me launch Diablo II on an EeePC, which runs menus at 800x600 but allows the actual game itself to run at 640x480, without hooking up an external VGA monitor.
2008-06-28Regen patchsum, bump PKGREVISION for exception handling fixes.jmcneill2-4/+4
2008-06-28Fix exception handling on i386.jmcneill1-8/+8
2008-06-27Bump PKGREVISION for addition of patch-bb:sborrill1-2/+2
__errno and ___errno overrides must exist, so #undef them rather than not overriding at all on NetBSD.
2008-06-27Regen for patch-bbjmcneill1-2/+2
2008-06-27__errno and ___errno overrides must exist, so #undef them rather thanjmcneill1-10/+12
not overriding at all on NetBSD.
2008-06-27bjs told me to bump PKGREVISION now that this actually works on NetBSDjmcneill1-1/+2
2008-06-27Regen for patch-bcjmcneill1-1/+2
2008-06-27Use /dev/sound on NetBSDjmcneill1-0/+32