Reimport xcb-util as xcb-util036 for those packages not yet converted
for the 0.3.8+ changes.
This commit is contained in:
parent
1654a367ff
commit
977df7fc4a
5 changed files with 109 additions and 0 deletions
20
x11/xcb-util036/DESCR
Normal file
20
x11/xcb-util036/DESCR
Normal file
|
@ -0,0 +1,20 @@
|
|||
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.
|
||||
|
||||
This package contains the old 0.3.6 release.
|
36
x11/xcb-util036/Makefile
Normal file
36
x11/xcb-util036/Makefile
Normal file
|
@ -0,0 +1,36 @@
|
|||
# $NetBSD: Makefile,v 1.1 2012/07/13 14:19:47 wiz Exp $
|
||||
#
|
||||
|
||||
DISTNAME= xcb-util-0.3.6
|
||||
PKGNAME= xcb-util036-0.3.6
|
||||
CATEGORIES= x11
|
||||
MASTER_SITES= http://xcb.freedesktop.org/dist/
|
||||
EXTRACT_SUFX= .tar.bz2
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
HOMEPAGE= http://xcb.freedesktop.org/
|
||||
COMMENT= XCB Utilities (old 0.3.6 release)
|
||||
|
||||
PKG_DESTDIR_SUPPORT= user-destdir
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
GNU_CONFIGURE_PREFIX= ${PREFIX}/xcb-util036
|
||||
USE_TOOLS+= pkg-config gmake gm4
|
||||
USE_LIBTOOL= yes
|
||||
LDFLAGS+= ${COMPILER_RPATH_FLAG}${PREFIX}/xcb-util036/lib
|
||||
#LIBS+= ${COMPILER_RPATH_FLAG}${PREFIX}/xcb-util036/lib
|
||||
BUILDLINK_PASSTHRU_RPATHDIRS= ${PREFIX}/xcb-util036/lib
|
||||
|
||||
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
|
||||
|
||||
.include "../../devel/gperf/buildlink3.mk"
|
||||
.include "../../x11/libxcb/buildlink3.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
30
x11/xcb-util036/PLIST
Normal file
30
x11/xcb-util036/PLIST
Normal file
|
@ -0,0 +1,30 @@
|
|||
@comment $NetBSD: PLIST,v 1.1 2012/07/13 14:19:47 wiz Exp $
|
||||
xcb-util036/include/xcb/xcb_atom.h
|
||||
xcb-util036/include/xcb/xcb_aux.h
|
||||
xcb-util036/include/xcb/xcb_bitops.h
|
||||
xcb-util036/include/xcb/xcb_event.h
|
||||
xcb-util036/include/xcb/xcb_icccm.h
|
||||
xcb-util036/include/xcb/xcb_image.h
|
||||
xcb-util036/include/xcb/xcb_keysyms.h
|
||||
xcb-util036/include/xcb/xcb_pixel.h
|
||||
xcb-util036/include/xcb/xcb_property.h
|
||||
xcb-util036/include/xcb/xcb_renderutil.h
|
||||
xcb-util036/include/xcb/xcb_reply.h
|
||||
xcb-util036/lib/libxcb-atom.la
|
||||
xcb-util036/lib/libxcb-aux.la
|
||||
xcb-util036/lib/libxcb-event.la
|
||||
xcb-util036/lib/libxcb-icccm.la
|
||||
xcb-util036/lib/libxcb-image.la
|
||||
xcb-util036/lib/libxcb-keysyms.la
|
||||
xcb-util036/lib/libxcb-property.la
|
||||
xcb-util036/lib/libxcb-render-util.la
|
||||
xcb-util036/lib/libxcb-reply.la
|
||||
xcb-util036/lib/pkgconfig/xcb-atom.pc
|
||||
xcb-util036/lib/pkgconfig/xcb-aux.pc
|
||||
xcb-util036/lib/pkgconfig/xcb-event.pc
|
||||
xcb-util036/lib/pkgconfig/xcb-icccm.pc
|
||||
xcb-util036/lib/pkgconfig/xcb-image.pc
|
||||
xcb-util036/lib/pkgconfig/xcb-keysyms.pc
|
||||
xcb-util036/lib/pkgconfig/xcb-property.pc
|
||||
xcb-util036/lib/pkgconfig/xcb-renderutil.pc
|
||||
xcb-util036/lib/pkgconfig/xcb-reply.pc
|
18
x11/xcb-util036/buildlink3.mk
Normal file
18
x11/xcb-util036/buildlink3.mk
Normal file
|
@ -0,0 +1,18 @@
|
|||
# $NetBSD: buildlink3.mk,v 1.1 2012/07/13 14:19:47 wiz Exp $
|
||||
|
||||
BUILDLINK_TREE+= xcb-util036
|
||||
|
||||
.if !defined(XCB_UTIL036_BUILDLINK3_MK)
|
||||
XCB_UTIL036_BUILDLINK3_MK:=
|
||||
|
||||
BUILDLINK_API_DEPENDS.xcb-util036+= xcb-util036>=0.3.6
|
||||
BUILDLINK_PKGSRCDIR.xcb-util036?= ../../x11/xcb-util036
|
||||
|
||||
BUILDLINK_PASSTHRU_DIRS+= ${BUILDLINK_PREFIX.xcb-util036}/lib
|
||||
BUILDLINK_PASSTHRU_RPATHDIRS+= ${PREFIX}/xcb-util036/lib
|
||||
_PKG_CONFIG_LIBDIR= ${BUILDLINK_DIR}/xcb-util036/lib/pkgconfig:${BUILDLINK_DIR}/lib/pkgconfig:${BUILDLINK_DIR}/share/pkgconfig
|
||||
|
||||
.include "../../x11/libxcb/buildlink3.mk"
|
||||
.endif # XCB_UTIL036_BUILDLINK3_MK
|
||||
|
||||
BUILDLINK_TREE+= -xcb-util036
|
5
x11/xcb-util036/distinfo
Normal file
5
x11/xcb-util036/distinfo
Normal file
|
@ -0,0 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1 2012/07/13 14:19:47 wiz Exp $
|
||||
|
||||
SHA1 (xcb-util-0.3.6.tar.bz2) = 8585a421c077382937d181b921263fac2e448d31
|
||||
RMD160 (xcb-util-0.3.6.tar.bz2) = 853e53493c67d56a4ce368cc6b9512c247fc840f
|
||||
Size (xcb-util-0.3.6.tar.bz2) = 293408 bytes
|
Loading…
Reference in a new issue