diff options
author | tnn <tnn@pkgsrc.org> | 2008-08-09 16:21:18 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2008-08-09 16:21:18 +0000 |
commit | 9795c0ee98e64819bae0e35c792d424be981f3ca (patch) | |
tree | a6341f689f2437e6cfd694a59fd3a791051680c9 /x11 | |
parent | 64f808e91654d548f80b6d4c595387ad6bde2b85 (diff) | |
download | pkgsrc-9795c0ee98e64819bae0e35c792d424be981f3ca.tar.gz |
Update to xf86-video-vesa-2.0.0.
2.0.0:
Remove unused ->device
Un-duplicate some init code.
vesa 2.0.0
1.99.1:
Don't disable FB access when it's already disabled.
Remove all trace of mfb
Bug #10004: Fix palette initialization in 8bpp modes.
Fix boolean inversion in VBE screen clear.
Remove some useless module loading cruft.
Prefer a more modern depth/bpp selection.
Add semi-reasonable mode validation.
Clean up memory model checking, and properly refuse unsupported models.
Update copyright.
vesa 1.99.1
Bug #11090: xf86-video-vesa COPYING file
Add conditional support for pci-rework branch.
Correct '#ifdef' to '#ifndef'. Oops.
Use XSERVER_LIBPCIACCESS to autodetect libpciaccess usage.
Use pci_device_map_range instead of pci_device_map_memory_range
Rename .cvsignore to .gitignore
Add *~ to .gitignore to skip patch/emacs droppings
fixup pciaccess version detect
Planar video is gone
Makefile.am: nuke RCS Id
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xf86-video-vesa/Makefile | 5 | ||||
-rw-r--r-- | x11/xf86-video-vesa/distinfo | 9 | ||||
-rw-r--r-- | x11/xf86-video-vesa/patches/patch-aa | 21 |
3 files changed, 6 insertions, 29 deletions
diff --git a/x11/xf86-video-vesa/Makefile b/x11/xf86-video-vesa/Makefile index 030975e53fc..96e336036e2 100644 --- a/x11/xf86-video-vesa/Makefile +++ b/x11/xf86-video-vesa/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.4 2008/05/24 21:45:18 tnn Exp $ +# $NetBSD: Makefile,v 1.5 2008/08/09 16:21:18 tnn Exp $ # -DISTNAME= xf86-video-vesa-1.3.0 -PKGREVISION= 1 +DISTNAME= xf86-video-vesa-2.0.0 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_XORG:=driver/} EXTRACT_SUFX= .tar.bz2 diff --git a/x11/xf86-video-vesa/distinfo b/x11/xf86-video-vesa/distinfo index cb26a1c5491..5c6e40a2f31 100644 --- a/x11/xf86-video-vesa/distinfo +++ b/x11/xf86-video-vesa/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.2 2007/08/02 14:15:18 sborrill Exp $ +$NetBSD: distinfo,v 1.3 2008/08/09 16:21:18 tnn Exp $ -SHA1 (xf86-video-vesa-1.3.0.tar.bz2) = 09d74f838c07c58b6eba3600f3afa5fb74420ff4 -RMD160 (xf86-video-vesa-1.3.0.tar.bz2) = d75e863733a8803a442f74f3f9ecedce1506e05b -Size (xf86-video-vesa-1.3.0.tar.bz2) = 237759 bytes -SHA1 (patch-aa) = 9a60c79ef6cbf10356eb5fb6eb8712b69d12ea99 +SHA1 (xf86-video-vesa-2.0.0.tar.bz2) = 657804e5544b9a92bfd695e61958c688a1e8b3ef +RMD160 (xf86-video-vesa-2.0.0.tar.bz2) = 99d720b768446c71048f6c4b38127bafd6e32c55 +Size (xf86-video-vesa-2.0.0.tar.bz2) = 247176 bytes diff --git a/x11/xf86-video-vesa/patches/patch-aa b/x11/xf86-video-vesa/patches/patch-aa deleted file mode 100644 index 78b240f107d..00000000000 --- a/x11/xf86-video-vesa/patches/patch-aa +++ /dev/null @@ -1,21 +0,0 @@ -$NetBSD: patch-aa,v 1.1 2007/08/02 14:15:18 sborrill Exp $ - ---- src/vesa.c.orig 2007-08-02 14:28:14.000000000 +0100 -+++ src/vesa.c 2007-08-02 14:35:09.000000000 +0100 -@@ -1049,15 +1049,7 @@ - VESASwitchMode(int scrnIndex, DisplayModePtr pMode, int flags) - { - ScrnInfoPtr pScrn = xf86Screens[scrnIndex]; -- VESAPtr pVesa = VESAGetRec(pScrn); -- Bool ret; -- -- if (pVesa->ModeSetClearScreen) -- pScrn->EnableDisableFBAccess(scrnIndex,FALSE); -- ret = VESASetMode(xf86Screens[scrnIndex], pMode); -- if (pVesa->ModeSetClearScreen) -- pScrn->EnableDisableFBAccess(scrnIndex,TRUE); -- return ret; -+ return VESASetMode(pScrn, pMode); - } - - /* Set a graphics mode */ |