summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-02-03 11:00:55 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-02-03 11:00:55 +0000
commitd6e1e3d80cf02a5f74dd61c465cef18ed9e0e9b8 (patch)
tree0ee0154b074f63ff7a6c71e2fb4218cb7aab86fa /testing
parent0b78fecab0f11c941c1f2acc0381acfe879369c0 (diff)
downloadaports-d6e1e3d80cf02a5f74dd61c465cef18ed9e0e9b8.tar.bz2
aports-d6e1e3d80cf02a5f74dd61c465cef18ed9e0e9b8.tar.xz
testing/wine: removed
Diffstat (limited to 'testing')
-rw-r--r--testing/wine/0001-Always-adjust-the-color_shifts-pointer-when-SelectBi.patch39
-rw-r--r--testing/wine/APKBUILD29
2 files changed, 0 insertions, 68 deletions
diff --git a/testing/wine/0001-Always-adjust-the-color_shifts-pointer-when-SelectBi.patch b/testing/wine/0001-Always-adjust-the-color_shifts-pointer-when-SelectBi.patch
deleted file mode 100644
index 05ac3141..00000000
--- a/testing/wine/0001-Always-adjust-the-color_shifts-pointer-when-SelectBi.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From 0454ace14774654c3670a2a29613bed5039991c5 Mon Sep 17 00:00:00 2001
-From: Roderick Colenbrander <thunderbird2k@gmail.com>
-Date: Thu, 3 Sep 2009 13:51:44 +0200
-Subject: [PATCH] Always adjust the color_shifts pointer when SelectBitmap is called. This fixes a regression in Steam (bug 19916).
-
----
- dlls/winex11.drv/bitmap.c | 10 ++++++----
- 1 files changed, 6 insertions(+), 4 deletions(-)
-
-diff --git a/dlls/winex11.drv/bitmap.c b/dlls/winex11.drv/bitmap.c
-index 4d635aa..fee2dbc 100644
---- a/dlls/winex11.drv/bitmap.c
-+++ b/dlls/winex11.drv/bitmap.c
-@@ -110,10 +110,6 @@ HBITMAP CDECL X11DRV_SelectBitmap( X11DRV_PDEVICE *physDev, HBITMAP hbitmap )
- if (physDev->depth != physBitmap->pixmap_depth)
- {
- physDev->depth = physBitmap->pixmap_depth;
-- if(physDev->depth == 1)
-- physDev->color_shifts = NULL;
-- else
-- physDev->color_shifts = &physBitmap->pixmap_color_shifts;
- wine_tsx11_lock();
- XFreeGC( gdi_display, physDev->gc );
- physDev->gc = XCreateGC( gdi_display, physDev->drawable, 0, NULL );
-@@ -122,6 +118,12 @@ HBITMAP CDECL X11DRV_SelectBitmap( X11DRV_PDEVICE *physDev, HBITMAP hbitmap )
- XFlush( gdi_display );
- wine_tsx11_unlock();
- }
-+
-+ if(physDev->depth == 1)
-+ physDev->color_shifts = NULL;
-+ else
-+ physDev->color_shifts = &physBitmap->pixmap_color_shifts;
-+
- return hbitmap;
- }
-
---
-1.6.0.4
diff --git a/testing/wine/APKBUILD b/testing/wine/APKBUILD
deleted file mode 100644
index 82ecba1b..00000000
--- a/testing/wine/APKBUILD
+++ /dev/null
@@ -1,29 +0,0 @@
-# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
-pkgname=wine
-pkgver=1.1.36
-pkgrel=0
-pkgdesc="A compatibility layer for running Windows programs"
-url="http://www.winehq.com"
-license="LGPL"
-subpackages="$pkgname-dev $pkgname-doc"
-makedepends="fontconfig-dev openldap-dev libxslt-dev libxxf86dga-dev
- libxcursor-dev libxrandr-dev libxdamage-dev mesa-dev flex bison"
-# lcms
-source="http://ibiblio.org/pub/linux/system/emulators/$pkgname/$pkgname-$pkgver.tar.bz2
- 0001-Always-adjust-the-color_shifts-pointer-when-SelectBi.patch"
-
-build() {
- cd "$srcdir"/$pkgname-$pkgver
- patch -Np1 -i "$srcdir"/0001-Always-adjust-the-color_shifts-pointer-when-SelectBi.patch
- ./configure --prefix=/usr --sysconfdir=/etc --with-x
- make depend || return 1
- make || return 1
-}
-
-package() {
- cd "$srcdir"/$pkgname-$pkgver
- make prefix="$pkgdir"/usr install || return 1
- mkdir -p "$pkgdir"/etc/wine
-}
-md5sums="2afa7846175c7c2ce4c7482aa1d82f0f wine-1.1.36.tar.bz2
-63c4a6aee199039d35e6b57fa505e887 0001-Always-adjust-the-color_shifts-pointer-when-SelectBi.patch"