Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package
@ 2015-04-18 12:40 Bernd Kuhls
  2015-04-18 12:40 ` [Buildroot] [PATCH 02/32] package/x11r7/xcb-util-cursor: " Bernd Kuhls
                   ` (31 more replies)
  0 siblings, 32 replies; 40+ messages in thread
From: Bernd Kuhls @ 2015-04-18 12:40 UTC (permalink / raw)
  To: buildroot


Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/x11r7/Config.in                                 |    1 +
 package/x11r7/xcb-util-renderutil/Config.in             |   15 +++++++++++++++
 .../x11r7/xcb-util-renderutil/xcb-util-renderutil.hash  |    2 ++
 .../x11r7/xcb-util-renderutil/xcb-util-renderutil.mk    |   15 +++++++++++++++
 4 files changed, 33 insertions(+)
 create mode 100644 package/x11r7/xcb-util-renderutil/Config.in
 create mode 100644 package/x11r7/xcb-util-renderutil/xcb-util-renderutil.hash
 create mode 100644 package/x11r7/xcb-util-renderutil/xcb-util-renderutil.mk

diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in
index 608837f..4166a96 100644
--- a/package/x11r7/Config.in
+++ b/package/x11r7/Config.in
@@ -19,6 +19,7 @@ if BR2_PACKAGE_XORG7
 		source package/x11r7/xcb-util/Config.in
 		source package/x11r7/xcb-util-image/Config.in
 		source package/x11r7/xcb-util-keysyms/Config.in
+		source package/x11r7/xcb-util-renderutil/Config.in
 		source package/x11r7/xcb-util-wm/Config.in
 		source package/x11r7/xlib_libFS/Config.in
 		source package/x11r7/xlib_libICE/Config.in
diff --git a/package/x11r7/xcb-util-renderutil/Config.in b/package/x11r7/xcb-util-renderutil/Config.in
new file mode 100644
index 0000000..9675278
--- /dev/null
+++ b/package/x11r7/xcb-util-renderutil/Config.in
@@ -0,0 +1,15 @@
+config BR2_PACKAGE_XCB_UTIL_RENDERUTIL
+	bool "xcb-util-renderutil"
+	select BR2_PACKAGE_XCB_UTIL
+	help
+	  The XCB util modules 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.
+
+	  XCB util-renderutil module provides the following library:
+	    - renderutil: Convenience functions for the Render extension.
+
+	  http://xcb.freedesktop.org/
diff --git a/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.hash b/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.hash
new file mode 100644
index 0000000..e5c47ca
--- /dev/null
+++ b/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.hash
@@ -0,0 +1,2 @@
+# From http://lists.x.org/archives/xorg-announce/2015-March/002555.html
+sha1	b55a92cd96c3ec1be9a26963df6d5f16e68fffea	xcb-util-cursor-0.1.2.tar.bz2
diff --git a/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.mk b/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.mk
new file mode 100644
index 0000000..9e6683b
--- /dev/null
+++ b/package/x11r7/xcb-util-renderutil/xcb-util-renderutil.mk
@@ -0,0 +1,15 @@
+################################################################################
+#
+# xcb-util-renderutil
+#
+################################################################################
+
+XCB_UTIL_RENDERUTIL_VERSION = 0.3.9
+XCB_UTIL_RENDERUTIL_SITE = http://xcb.freedesktop.org/dist
+XCB_UTIL_RENDERUTIL_SOURCE = xcb-util-renderutil-$(XCB_UTIL_RENDERUTIL_VERSION).tar.bz2
+XCB_UTIL_RENDERUTIL_LICENSE = MIT
+XCB_UTIL_RENDERUTIL_LICENSE_FILES = COPYING
+XCB_UTIL_RENDERUTIL_INSTALL_STAGING = YES
+XCB_UTIL_RENDERUTIL_DEPENDENCIES = xcb-util
+
+$(eval $(autotools-package))
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 40+ messages in thread

end of thread, other threads:[~2015-07-11 13:12 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-18 12:40 [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: new package Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 02/32] package/x11r7/xcb-util-cursor: " Bernd Kuhls
2015-04-18 16:38   ` Thomas Petazzoni
2015-04-19  9:03     ` Bernd Kuhls
2015-04-19 12:44       ` Thomas Petazzoni
2015-04-18 12:40 ` [Buildroot] [PATCH 03/32] package/x11r7/xlib_libXdmcp: bump to version 1.1.2 Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 04/32] package/x11r7/xdriver_xf86-input-synaptics: bump version to 1.8.2 Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 05/32] package/x11r7/xdriver_xf86-input-evdev: bump version to 2.9.2 Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 06/32] package/x11r7/xdriver_xf86-video-trident: bump version to 1.3.7, add hash Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 07/32] package/x11r7/xdriver_xf86-input-vmmouse: " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 08/32] package/x11r7/xdriver_xf86-input-keyboard: bump version to 1.8.1, " Bernd Kuhls
2015-04-18 16:29   ` Bernd Kuhls
2015-04-18 16:40     ` Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 09/32] package/x11r7/xapp_setxkbmap: bump version to 1.3.1, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 10/32] package/x11r7/xapp_smproxy: bump version to 1.0.6, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 11/32] package/x11r7/xapp_twm: bump version to 1.0.9, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 12/32] package/x11r7/xapp_x11perf: bump version to 1.6.0, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 13/32] package/x11r7/xapp_xcmsdb: bump version to 1.0.5, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 14/32] package/x11r7/xapp_xdpyinfo: bump version to 1.3.2, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 15/32] package/x11r7/xapp_xdriinfo: bump version to 1.0.5, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 16/32] package/x11r7/xapp_xditview: bump version to 1.0.4, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 17/32] package/x11r7/xapp_xev: bump version to 1.2.2, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 18/32] package/x11r7/xapp_xgamma: bump version to 1.0.6, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 19/32] package/x11r7/xapp_xgc: bump version to 1.0.5, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 20/32] package/x11r7/xapp_xhost: bump version to 1.0.7, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 21/32] package/x11r7/xapp_xkbedv: bump version to 1.1.4, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 22/32] package/x11r7/xapp_xkbprint: bump version to 1.0.4, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 23/32] package/x11r7/xapp_xlsatoms: bump version to 1.1.2, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 24/32] package/x11r7/xapp_xlsfonts: bump version to 1.0.5, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 25/32] package/x11r7/xapp_xmag: bump version to 1.0.6, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 26/32] package/x11r7/xapp_xmh: bump version to 1.0.3, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 27/32] package/x11r7/xapp_xmodmap: bump version to 1.0.9, " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 28/32] package/x11r7/xlib_libXpresent: new package Bernd Kuhls
2015-04-18 12:59   ` Thomas Petazzoni
2015-07-11 13:12     ` Romain Naour
2015-04-18 12:40 ` [Buildroot] [PATCH 29/32] package/x11r7/xapp_xcompmgr: " Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 30/32] package/x11r7/xlib_libICE: Add host-pkgconf dependency Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 31/32] package/x11r7/xproto_xproxymanagementprotocol: new package Bernd Kuhls
2015-04-18 12:40 ` [Buildroot] [PATCH 32/32] package/x11r7/xapp_xfindproxy: " Bernd Kuhls
2015-04-18 13:49 ` [Buildroot] [PATCH 01/32] package/x11r7/xcb-util-renderutil: " Romain Naour

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox