Index: x11-drivers/xf86-video-r128/Makefile =================================================================== --- x11-drivers/xf86-video-r128/Makefile (revision 431798) +++ x11-drivers/xf86-video-r128/Makefile (working copy) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= xf86-video-r128 -PORTVERSION= 6.10.1 +PORTVERSION= 6.10.2 CATEGORIES= x11-drivers MAINTAINER= x11@FreeBSD.org @@ -12,6 +12,6 @@ USE_GL= gl XORG_CAT= driver -USE_XORG= glproto xf86driproto xf86miscproto xineramaproto +USE_XORG= xf86miscproto .include Index: x11-drivers/xf86-video-r128/distinfo =================================================================== --- x11-drivers/xf86-video-r128/distinfo (revision 431798) +++ x11-drivers/xf86-video-r128/distinfo (working copy) @@ -1,3 +1,3 @@ -TIMESTAMP = 1484351416 -SHA256 (xorg/driver/xf86-video-r128-6.10.1.tar.bz2) = 5ebfef49831c9b12f7b7011c8314010596ac2ab0d5b9b7cfd17908e93d7de4ea -SIZE (xorg/driver/xf86-video-r128-6.10.1.tar.bz2) = 495306 +TIMESTAMP = 1484717021 +SHA256 (xorg/driver/xf86-video-r128-6.10.2.tar.bz2) = 84da21517f3af7617fdf341e84ccb22444d6cdab1647e4808fa631528b9a77de +SIZE (xorg/driver/xf86-video-r128-6.10.2.tar.bz2) = 504031 Index: x11-drivers/xf86-video-r128/files/patch-src_r128__dri.c =================================================================== --- x11-drivers/xf86-video-r128/files/patch-src_r128__dri.c (nonexistent) +++ x11-drivers/xf86-video-r128/files/patch-src_r128__dri.c (working copy) @@ -0,0 +1,94 @@ +# Correct type in format strings +# +--- src/r128_dri.c.orig 2017-01-17 22:42:44 UTC ++++ src/r128_dri.c +@@ -500,7 +500,7 @@ static Bool R128DRIAgpInit(R128InfoPtr i + return FALSE; + } + xf86DrvMsg(pScreen->myNum, X_INFO, +- "[agp] %d kB allocated with handle 0x%08x\n", ++ "[agp] %d kB allocated with handle 0x%08lx\n", + info->agpSize*1024, info->agpMemHandle); + + if (drmAgpBind(info->drmFD, info->agpMemHandle, info->agpOffset) < 0) { +@@ -540,7 +540,7 @@ static Bool R128DRIAgpInit(R128InfoPtr i + return FALSE; + } + xf86DrvMsg(pScreen->myNum, X_INFO, +- "[agp] ring handle = 0x%08x\n", info->ringHandle); ++ "[agp] ring handle = 0x%08lx\n", info->ringHandle); + + if (drmMap(info->drmFD, info->ringHandle, info->ringMapSize, + &info->ring) < 0) { +@@ -558,7 +558,7 @@ static Bool R128DRIAgpInit(R128InfoPtr i + return FALSE; + } + xf86DrvMsg(pScreen->myNum, X_INFO, +- "[agp] ring read ptr handle = 0x%08x\n", ++ "[agp] ring read ptr handle = 0x%08lx\n", + info->ringReadPtrHandle); + + if (drmMap(info->drmFD, info->ringReadPtrHandle, info->ringReadMapSize, +@@ -578,7 +578,7 @@ static Bool R128DRIAgpInit(R128InfoPtr i + return FALSE; + } + xf86DrvMsg(pScreen->myNum, X_INFO, +- "[agp] vertex/indirect buffers handle = 0x%08x\n", ++ "[agp] vertex/indirect buffers handle = 0x%08lx\n", + info->bufHandle); + + if (drmMap(info->drmFD, info->bufHandle, info->bufMapSize, +@@ -598,7 +598,7 @@ static Bool R128DRIAgpInit(R128InfoPtr i + return FALSE; + } + xf86DrvMsg(pScreen->myNum, X_INFO, +- "[agp] AGP texture map handle = 0x%08x\n", ++ "[agp] AGP texture map handle = 0x%08lx\n", + info->agpTexHandle); + + if (drmMap(info->drmFD, info->agpTexHandle, info->agpTexMapSize, +@@ -660,7 +660,7 @@ static Bool R128DRIPciInit(R128InfoPtr i + return FALSE; + } + xf86DrvMsg(pScreen->myNum, X_INFO, +- "[pci] %d kB allocated with handle 0x%08x\n", ++ "[pci] %d kB allocated with handle 0x%08lx\n", + info->agpSize*1024, info->pciMemHandle); + + /* Initialize the CCE ring buffer data */ +@@ -684,7 +684,7 @@ static Bool R128DRIPciInit(R128InfoPtr i + return FALSE; + } + xf86DrvMsg(pScreen->myNum, X_INFO, +- "[pci] ring handle = 0x%08x\n", info->ringHandle); ++ "[pci] ring handle = 0x%08lx\n", info->ringHandle); + + if (drmMap(info->drmFD, info->ringHandle, info->ringMapSize, + &info->ring) < 0) { +@@ -705,7 +705,7 @@ static Bool R128DRIPciInit(R128InfoPtr i + return FALSE; + } + xf86DrvMsg(pScreen->myNum, X_INFO, +- "[pci] ring read ptr handle = 0x%08x\n", ++ "[pci] ring read ptr handle = 0x%08lx\n", + info->ringReadPtrHandle); + + if (drmMap(info->drmFD, info->ringReadPtrHandle, info->ringReadMapSize, +@@ -728,7 +728,7 @@ static Bool R128DRIPciInit(R128InfoPtr i + return FALSE; + } + xf86DrvMsg(pScreen->myNum, X_INFO, +- "[pci] vertex/indirect buffers handle = 0x%08x\n", ++ "[pci] vertex/indirect buffers handle = 0x%08lx\n", + info->bufHandle); + + if (drmMap(info->drmFD, info->bufHandle, info->bufMapSize, +@@ -829,7 +829,7 @@ static Bool R128DRIMapInit(R128InfoPtr i + return FALSE; + } + xf86DrvMsg(pScreen->myNum, X_INFO, +- "[drm] register handle = 0x%08x\n", info->registerHandle); ++ "[drm] register handle = 0x%08lx\n", info->registerHandle); + + return TRUE; + } Property changes on: x11-drivers/xf86-video-r128/files/patch-src_r128__dri.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property