summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorwiz <wiz>2015-04-02 22:34:39 +0000
committerwiz <wiz>2015-04-02 22:34:39 +0000
commit8cfeda12c9e0677f14cb74c75ce0e6057b2f4d4d (patch)
tree8c350969e700dca013ee1777c3623eb8a69d7473 /x11
parent27401b7d3f79db0795da4f78004b69d856cd239c (diff)
downloadpkgsrc-8cfeda12c9e0677f14cb74c75ce0e6057b2f4d4d.tar.gz
Update to 0.1.2:
Release 0.1.2 (2015-03-35) =========================== - Use CFSwapInt32LittleToHost from CoreFoundation.h on Mac OS X to implement le32toh. - Check submodules before running autoconf. - darwin: Use OSByteOrder.h rather than CF. - Perform safety check before trying to load glyph cursorHEADmaster
Diffstat (limited to 'x11')
-rw-r--r--x11/xcb-util-cursor/Makefile5
-rw-r--r--x11/xcb-util-cursor/distinfo9
-rw-r--r--x11/xcb-util-cursor/patches/patch-cursor_parse__cursor__file.c17
3 files changed, 6 insertions, 25 deletions
diff --git a/x11/xcb-util-cursor/Makefile b/x11/xcb-util-cursor/Makefile
index 6cd563cc689..6a12d42743c 100644
--- a/x11/xcb-util-cursor/Makefile
+++ b/x11/xcb-util-cursor/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2014/09/25 20:04:53 jperkin Exp $
+# $NetBSD: Makefile,v 1.7 2015/04/02 22:34:39 wiz Exp $
-DISTNAME= xcb-util-cursor-0.1.1
-PKGREVISION= 1
+DISTNAME= xcb-util-cursor-0.1.2
CATEGORIES= x11
MASTER_SITES= http://xcb.freedesktop.org/dist/
EXTRACT_SUFX= .tar.bz2
diff --git a/x11/xcb-util-cursor/distinfo b/x11/xcb-util-cursor/distinfo
index 4db2b13ab27..106039db011 100644
--- a/x11/xcb-util-cursor/distinfo
+++ b/x11/xcb-util-cursor/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.4 2015/02/02 14:41:16 wiz Exp $
+$NetBSD: distinfo,v 1.5 2015/04/02 22:34:39 wiz Exp $
-SHA1 (xcb-util-cursor-0.1.1.tar.bz2) = 75ea5d4dc5f185151f171e525023cb76f3b72128
-RMD160 (xcb-util-cursor-0.1.1.tar.bz2) = 3dafa5d3ba7d284c2cdd4c8f57d648dfb595fb46
-Size (xcb-util-cursor-0.1.1.tar.bz2) = 280852 bytes
-SHA1 (patch-cursor_parse__cursor__file.c) = bdae403e10d920edda9f212e785539e3303f9667
+SHA1 (xcb-util-cursor-0.1.2.tar.bz2) = b55a92cd96c3ec1be9a26963df6d5f16e68fffea
+RMD160 (xcb-util-cursor-0.1.2.tar.bz2) = 091da6d282c485c041904d2f8945d70de4a10516
+Size (xcb-util-cursor-0.1.2.tar.bz2) = 289714 bytes
diff --git a/x11/xcb-util-cursor/patches/patch-cursor_parse__cursor__file.c b/x11/xcb-util-cursor/patches/patch-cursor_parse__cursor__file.c
deleted file mode 100644
index 9399e5abf60..00000000000
--- a/x11/xcb-util-cursor/patches/patch-cursor_parse__cursor__file.c
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-cursor_parse__cursor__file.c,v 1.1 2015/02/02 14:41:16 wiz Exp $
-
-Simplified version of
-http://cgit.freedesktop.org/xcb/util-cursor/commit/?id=f03cc278c6cce0cf721adf9c3764d3c5fba63392
-
---- cursor/parse_cursor_file.c.orig 2013-11-09 10:15:12.000000000 +0000
-+++ cursor/parse_cursor_file.c
-@@ -48,6 +48,9 @@
- # ifndef HAVE_LE32TOH
- # define le32toh(x) LE_32(x)
- # endif
-+#elif defined(__APPLE__)
-+#include <libkern/OSByteOrder.h>
-+#define le32toh(x) OSSwapLittleToHostInt32(x)
- #endif
-
- #include <xcb/xcb.h>