pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/x11/xcb-util import xcb-util-0.3.3, from Blair Sadewit...
details: https://anonhg.NetBSD.org/pkgsrc/rev/c5fb75b73576
branches: trunk
changeset: 556902:c5fb75b73576
user: drochner <drochner%pkgsrc.org@localhost>
date: Mon Apr 06 10:25:19 2009 +0000
description:
import xcb-util-0.3.3, from Blair Sadewitz and Michael Stapelberg
per pkgsrc-wip
diffstat:
x11/xcb-util/DESCR | 18 ++++++++++++++++++
x11/xcb-util/Makefile | 32 ++++++++++++++++++++++++++++++++
x11/xcb-util/PLIST | 34 ++++++++++++++++++++++++++++++++++
x11/xcb-util/buildlink3.mk | 14 ++++++++++++++
x11/xcb-util/distinfo | 5 +++++
5 files changed, 103 insertions(+), 0 deletions(-)
diffs (123 lines):
diff -r ae0dcbab432f -r c5fb75b73576 x11/xcb-util/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/xcb-util/DESCR Mon Apr 06 10:25:19 2009 +0000
@@ -0,0 +1,18 @@
+The xcb-util module provides a number of libraries which sit on top of
+libxcb, the core X protocol library, and some of the extension
+libraries. These experimental libraries provide convenience functions
+and interfaces which make the raw X protocol more usable. Some of the
+libraries also provide client-side code which is not strictly part of
+the X protocol but which have traditionally been provided by Xlib.
+
+These libraries are currently included, roughly ordered by maturity:
+
+render-util: Convenience functions for the Render extension.
+aux: Convenient access to connection setup and some core requests.
+atom: Standard core X atom constants and atom caching.
+property: Callback X property-change handling.
+icccm: Both client and window-manager helpers for ICCCM.
+keysyms: Standard X key constants and conversion to/from keycodes.
+event: Callback X event handling.
+image: Port of Xlib's XImage and XShmImage functions.
+wm: Framework for window manager implementation.
diff -r ae0dcbab432f -r c5fb75b73576 x11/xcb-util/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/xcb-util/Makefile Mon Apr 06 10:25:19 2009 +0000
@@ -0,0 +1,32 @@
+# $NetBSD: Makefile,v 1.1.1.1 2009/04/06 10:25:19 drochner Exp $
+#
+
+DISTNAME= xcb-util-0.3.3
+CATEGORIES= x11
+MASTER_SITES= http://xcb.freedesktop.org/dist/
+EXTRACT_SUFX= .tar.bz2
+
+MAINTAINER= bjs%NetBSD.org@localhost
+HOMEPAGE= http://xcb.freedesktop.org/
+COMMENT= XCB Utilities
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+GNU_CONFIGURE= yes
+USE_TOOLS+= pkg-config gmake
+USE_LIBTOOL= yes
+
+PKGCONFIG_OVERRIDE+= atom/xcb-atom.pc.in
+PKGCONFIG_OVERRIDE+= aux/xcb-aux.pc.in
+PKGCONFIG_OVERRIDE+= event/xcb-event.pc.in
+PKGCONFIG_OVERRIDE+= icccm/xcb-icccm.pc.in
+PKGCONFIG_OVERRIDE+= image/xcb-image.pc.in
+PKGCONFIG_OVERRIDE+= keysyms/xcb-keysyms.pc.in
+PKGCONFIG_OVERRIDE+= property/xcb-property.pc.in
+PKGCONFIG_OVERRIDE+= renderutil/xcb-renderutil.pc.in
+PKGCONFIG_OVERRIDE+= reply/xcb-reply.pc.in
+PKGCONFIG_OVERRIDE+= wm/xcb-wm.pc.in
+
+#.include "../../devel/gperf/buildlink3.mk"
+.include "../../x11/libxcb/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r ae0dcbab432f -r c5fb75b73576 x11/xcb-util/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/xcb-util/PLIST Mon Apr 06 10:25:19 2009 +0000
@@ -0,0 +1,34 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2009/04/06 10:25:19 drochner Exp $
+include/xcb/xcb_atom.h
+include/xcb/xcb_aux.h
+include/xcb/xcb_bitops.h
+include/xcb/xcb_event.h
+include/xcb/xcb_icccm.h
+include/xcb/xcb_image.h
+include/xcb/xcb_keysyms.h
+include/xcb/xcb_pixel.h
+include/xcb/xcb_property.h
+include/xcb/xcb_renderutil.h
+include/xcb/xcb_reply.h
+include/xcb/xcb_wm.h
+lib/libxcb-atom.la
+lib/libxcb-aux.la
+lib/libxcb-event.la
+lib/libxcb-icccm.la
+lib/libxcb-image.la
+lib/libxcb-keysyms.la
+lib/libxcb-property.la
+lib/libxcb-render-util.la
+lib/libxcb-reply.la
+lib/libxcb-wm.la
+lib/pkgconfig/xcb-atom.pc
+lib/pkgconfig/xcb-aux.pc
+lib/pkgconfig/xcb-event.pc
+lib/pkgconfig/xcb-icccm.pc
+lib/pkgconfig/xcb-image.pc
+lib/pkgconfig/xcb-keysyms.pc
+lib/pkgconfig/xcb-property.pc
+lib/pkgconfig/xcb-renderutil.pc
+lib/pkgconfig/xcb-reply.pc
+lib/pkgconfig/xcb-wm.pc
+@comment in libxcb: @dirrm include/xcb
diff -r ae0dcbab432f -r c5fb75b73576 x11/xcb-util/buildlink3.mk
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/xcb-util/buildlink3.mk Mon Apr 06 10:25:19 2009 +0000
@@ -0,0 +1,14 @@
+# $NetBSD: buildlink3.mk,v 1.1.1.1 2009/04/06 10:25:19 drochner Exp $
+
+BUILDLINK_TREE+= xcb-util
+
+.if !defined(XCB_UTIL_BUILDLINK3_MK)
+XCB_UTIL_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.xcb-util?= xcb-util>=0.3.3
+BUILDLINK_PKGSRCDIR.xcb-util?= ../../x11/xcb-util
+
+.include "../../x11/libxcb/buildlink3.mk"
+.endif # XCB_UTIL_BUILDLINK3_MK
+
+BUILDLINK_TREE+= -xcb-util
diff -r ae0dcbab432f -r c5fb75b73576 x11/xcb-util/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/x11/xcb-util/distinfo Mon Apr 06 10:25:19 2009 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2009/04/06 10:25:19 drochner Exp $
+
+SHA1 (xcb-util-0.3.3.tar.bz2) = a45fe7b4a6af4e0d1d1a876ab91e872cdef2c10b
+RMD160 (xcb-util-0.3.3.tar.bz2) = ff1741b36ac988845ea95ab18e8a7a1e4204f687
+Size (xcb-util-0.3.3.tar.bz2) = 271220 bytes
Home |
Main Index |
Thread Index |
Old Index