|
|
|
@ -3,10 +3,10 @@ Priority: optional
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Maintainer: XCB Developers <xcb@lists.freedesktop.org>
|
|
|
|
|
Uploaders: Jamey Sharp <sharpone@debian.org>, Josh Triplett <josh@freedesktop.org>
|
|
|
|
|
Build-Depends: libxau-dev, libxdmcp-dev, xcb-proto, cdbs, debhelper (>= 5.0.0), pkg-config, xsltproc, check, binutils (>= 2.12.90.0.9)
|
|
|
|
|
Standards-Version: 3.6.1
|
|
|
|
|
Build-Depends: libxau-dev, libxdmcp-dev, xcb-proto (>= 0.9.92), cdbs (>= 0.4.40), debhelper (>= 5.0.0), pkg-config, xsltproc, check, binutils (>= 2.12.90.0.9)
|
|
|
|
|
Standards-Version: 3.7.2
|
|
|
|
|
|
|
|
|
|
Package: libxcb0
|
|
|
|
|
Package: libxcb1
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -27,11 +27,10 @@ Description: X C Binding
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcb0-dev
|
|
|
|
|
Package: libxcb1-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcb0 (= ${Source-Version})
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb1 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb, the X C Binding.
|
|
|
|
@ -49,10 +48,11 @@ Description: X C Binding, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcb0-dbg
|
|
|
|
|
Package: libxcb1-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcb0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb1 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with libxcb, the X C
|
|
|
|
|
Binding. gdb will automatically use these symbols when debugging libxcb.
|
|
|
|
@ -70,7 +70,78 @@ Description: X C Binding, debugging symbols
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbcomposite0
|
|
|
|
|
Package: libxcb-xlib0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
|
Description: X C Binding, Xlib/XCB interface library
|
|
|
|
|
This package contains the library files needed to run software using
|
|
|
|
|
libxcb-xlib, the Xlib/XCB interface for the X C Binding. libxcb-xlib contains
|
|
|
|
|
portions of XCB used only by the Xlib/XCB compatibility layer; nothing other
|
|
|
|
|
than Xlib should ever link to it.
|
|
|
|
|
.
|
|
|
|
|
The XCB library provides an interface to the X Window System protocol,
|
|
|
|
|
designed to replace the Xlib interface. XCB provides several advantages over
|
|
|
|
|
Xlib:
|
|
|
|
|
.
|
|
|
|
|
* Size: small library and lower memory footprint
|
|
|
|
|
* Latency hiding: batch several requests and wait for the replies later
|
|
|
|
|
* Direct protocol access: one-to-one mapping between interface and protocol
|
|
|
|
|
* Thread support: access XCB from multiple threads, with no explicit locking
|
|
|
|
|
* Easy creation of new extensions: automatically generates interface from
|
|
|
|
|
machine-parsable protocol descriptions
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcb-xlib0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcb-xlib0 (= ${Source-Version}), libxcb1-dev
|
|
|
|
|
Description: X C Binding, Xlib/XCB interface library, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-xlib, the Xlib/XCB interface for the X C Binding. libxcb-xlib
|
|
|
|
|
contains portions of XCB used only by the Xlib/XCB compatibility layer;
|
|
|
|
|
nothing other than Xlib should ever link to it.
|
|
|
|
|
.
|
|
|
|
|
The XCB library provides an interface to the X Window System protocol,
|
|
|
|
|
designed to replace the Xlib interface. XCB provides several advantages over
|
|
|
|
|
Xlib:
|
|
|
|
|
.
|
|
|
|
|
* Size: small library and lower memory footprint
|
|
|
|
|
* Latency hiding: batch several requests and wait for the replies later
|
|
|
|
|
* Direct protocol access: one-to-one mapping between interface and protocol
|
|
|
|
|
* Thread support: access XCB from multiple threads, with no explicit locking
|
|
|
|
|
* Easy creation of new extensions: automatically generates interface from
|
|
|
|
|
machine-parsable protocol descriptions
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcb-xlib0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcb-xlib0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, Xlib/XCB interface library, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with libxcb-xlib, the
|
|
|
|
|
Xlib/XCB interface for the X C Binding. gdb will automatically use these
|
|
|
|
|
symbols when debugging libxcb-xlib. libxcb-xlib contains portions of XCB used
|
|
|
|
|
only by the Xlib/XCB compatibility layer; nothing other than Xlib should ever
|
|
|
|
|
link to it.
|
|
|
|
|
.
|
|
|
|
|
The XCB library provides an interface to the X Window System protocol,
|
|
|
|
|
designed to replace the Xlib interface. XCB provides several advantages over
|
|
|
|
|
Xlib:
|
|
|
|
|
.
|
|
|
|
|
* Size: small library and lower memory footprint
|
|
|
|
|
* Latency hiding: batch several requests and wait for the replies later
|
|
|
|
|
* Direct protocol access: one-to-one mapping between interface and protocol
|
|
|
|
|
* Thread support: access XCB from multiple threads, with no explicit locking
|
|
|
|
|
* Easy creation of new extensions: automatically generates interface from
|
|
|
|
|
machine-parsable protocol descriptions
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcb-composite0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -91,11 +162,10 @@ Description: X C Binding, composite extension
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbcomposite0-dev
|
|
|
|
|
Package: libxcb-composite0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbcomposite0 (= ${Source-Version}), libxcb0-dev, libxcbxfixes0-dev
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb-composite0 (= ${Source-Version}), libxcb1-dev, libxcb-xfixes0-dev
|
|
|
|
|
Description: X C Binding, composite extension, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-composite, the composite extension for the X C Binding.
|
|
|
|
@ -113,10 +183,11 @@ Description: X C Binding, composite extension, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbcomposite0-dbg
|
|
|
|
|
Package: libxcb-composite0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbcomposite0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb-composite0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, composite extension, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with
|
|
|
|
|
libxcb-composite, the composite extension for the X C Binding. gdb will
|
|
|
|
@ -135,7 +206,7 @@ Description: X C Binding, composite extension, debugging symbols
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbdamage0
|
|
|
|
|
Package: libxcb-damage0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -156,11 +227,10 @@ Description: X C Binding, damage extension
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbdamage0-dev
|
|
|
|
|
Package: libxcb-damage0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbdamage0 (= ${Source-Version}), libxcb0-dev, libxcbxfixes0-dev
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb-damage0 (= ${Source-Version}), libxcb1-dev, libxcb-xfixes0-dev
|
|
|
|
|
Description: X C Binding, damage extension, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-damage, the damage extension for the X C Binding.
|
|
|
|
@ -178,10 +248,11 @@ Description: X C Binding, damage extension, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbdamage0-dbg
|
|
|
|
|
Package: libxcb-damage0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbdamage0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb-damage0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, damage extension, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with
|
|
|
|
|
libxcb-damage, the damage extension for the X C Binding. gdb will
|
|
|
|
@ -200,7 +271,7 @@ Description: X C Binding, damage extension, debugging symbols
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbdpms0
|
|
|
|
|
Package: libxcb-dpms0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -221,11 +292,10 @@ Description: X C Binding, dpms extension
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbdpms0-dev
|
|
|
|
|
Package: libxcb-dpms0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbdpms0 (= ${Source-Version}), libxcb0-dev
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb-dpms0 (= ${Source-Version}), libxcb1-dev
|
|
|
|
|
Description: X C Binding, dpms extension, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-dpms, the dpms extension for the X C Binding.
|
|
|
|
@ -243,10 +313,11 @@ Description: X C Binding, dpms extension, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbdpms0-dbg
|
|
|
|
|
Package: libxcb-dpms0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbdpms0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb-dpms0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, dpms extension, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with
|
|
|
|
|
libxcb-dpms, the dpms extension for the X C Binding. gdb will
|
|
|
|
@ -265,7 +336,7 @@ Description: X C Binding, dpms extension, debugging symbols
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbglx0
|
|
|
|
|
Package: libxcb-glx0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -286,11 +357,10 @@ Description: X C Binding, glx extension
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbglx0-dev
|
|
|
|
|
Package: libxcb-glx0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbglx0 (= ${Source-Version}), libxcb0-dev
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb-glx0 (= ${Source-Version}), libxcb1-dev
|
|
|
|
|
Description: X C Binding, glx extension, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-glx, the glx extension for the X C Binding.
|
|
|
|
@ -308,10 +378,11 @@ Description: X C Binding, glx extension, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbglx0-dbg
|
|
|
|
|
Package: libxcb-glx0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbglx0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb-glx0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, glx extension, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with
|
|
|
|
|
libxcb-glx, the glx extension for the X C Binding. gdb will
|
|
|
|
@ -330,7 +401,7 @@ Description: X C Binding, glx extension, debugging symbols
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbrandr0
|
|
|
|
|
Package: libxcb-randr0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -351,11 +422,10 @@ Description: X C Binding, randr extension
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbrandr0-dev
|
|
|
|
|
Package: libxcb-randr0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbrandr0 (= ${Source-Version}), libxcb0-dev
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb-randr0 (= ${Source-Version}), libxcb1-dev
|
|
|
|
|
Description: X C Binding, randr extension, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-randr, the randr extension for the X C Binding.
|
|
|
|
@ -373,10 +443,11 @@ Description: X C Binding, randr extension, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbrandr0-dbg
|
|
|
|
|
Package: libxcb-randr0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbrandr0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb-randr0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, randr extension, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with
|
|
|
|
|
libxcb-randr, the randr extension for the X C Binding. gdb will
|
|
|
|
@ -395,7 +466,7 @@ Description: X C Binding, randr extension, debugging symbols
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbrecord0
|
|
|
|
|
Package: libxcb-record0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -416,11 +487,10 @@ Description: X C Binding, record extension
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbrecord0-dev
|
|
|
|
|
Package: libxcb-record0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbrecord0 (= ${Source-Version}), libxcb0-dev
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb-record0 (= ${Source-Version}), libxcb1-dev
|
|
|
|
|
Description: X C Binding, record extension, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-record, the record extension for the X C Binding.
|
|
|
|
@ -438,10 +508,11 @@ Description: X C Binding, record extension, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbrecord0-dbg
|
|
|
|
|
Package: libxcb-record0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbrecord0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb-record0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, record extension, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with
|
|
|
|
|
libxcb-record, the record extension for the X C Binding. gdb will
|
|
|
|
@ -460,7 +531,7 @@ Description: X C Binding, record extension, debugging symbols
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbrender0
|
|
|
|
|
Package: libxcb-render0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -481,11 +552,10 @@ Description: X C Binding, render extension
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbrender0-dev
|
|
|
|
|
Package: libxcb-render0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbrender0 (= ${Source-Version}), libxcb0-dev
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb-render0 (= ${Source-Version}), libxcb1-dev
|
|
|
|
|
Description: X C Binding, render extension, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-render, the render extension for the X C Binding.
|
|
|
|
@ -503,10 +573,11 @@ Description: X C Binding, render extension, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbrender0-dbg
|
|
|
|
|
Package: libxcb-render0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbrender0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb-render0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, render extension, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with
|
|
|
|
|
libxcb-render, the render extension for the X C Binding. gdb will
|
|
|
|
@ -525,7 +596,7 @@ Description: X C Binding, render extension, debugging symbols
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbres0
|
|
|
|
|
Package: libxcb-res0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -546,11 +617,10 @@ Description: X C Binding, res extension
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbres0-dev
|
|
|
|
|
Package: libxcb-res0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbres0 (= ${Source-Version}), libxcb0-dev
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb-res0 (= ${Source-Version}), libxcb1-dev
|
|
|
|
|
Description: X C Binding, res extension, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-res, the res extension for the X C Binding.
|
|
|
|
@ -568,10 +638,11 @@ Description: X C Binding, res extension, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbres0-dbg
|
|
|
|
|
Package: libxcb-res0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbres0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb-res0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, res extension, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with
|
|
|
|
|
libxcb-res, the res extension for the X C Binding. gdb will
|
|
|
|
@ -590,7 +661,7 @@ Description: X C Binding, res extension, debugging symbols
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbscreensaver0
|
|
|
|
|
Package: libxcb-screensaver0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -611,11 +682,10 @@ Description: X C Binding, screensaver extension
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbscreensaver0-dev
|
|
|
|
|
Package: libxcb-screensaver0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbscreensaver0 (= ${Source-Version}), libxcb0-dev
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb-screensaver0 (= ${Source-Version}), libxcb1-dev
|
|
|
|
|
Description: X C Binding, screensaver extension, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-screensaver, the screensaver extension for the X C Binding.
|
|
|
|
@ -633,10 +703,11 @@ Description: X C Binding, screensaver extension, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbscreensaver0-dbg
|
|
|
|
|
Package: libxcb-screensaver0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbscreensaver0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb-screensaver0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, screensaver extension, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with
|
|
|
|
|
libxcb-screensaver, the screensaver extension for the X C Binding. gdb will
|
|
|
|
@ -655,7 +726,7 @@ Description: X C Binding, screensaver extension, debugging symbols
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbshape0
|
|
|
|
|
Package: libxcb-shape0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -676,11 +747,10 @@ Description: X C Binding, shape extension
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbshape0-dev
|
|
|
|
|
Package: libxcb-shape0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbshape0 (= ${Source-Version}), libxcb0-dev
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb-shape0 (= ${Source-Version}), libxcb1-dev
|
|
|
|
|
Description: X C Binding, shape extension, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-shape, the shape extension for the X C Binding.
|
|
|
|
@ -698,10 +768,11 @@ Description: X C Binding, shape extension, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbshape0-dbg
|
|
|
|
|
Package: libxcb-shape0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbshape0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb-shape0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, shape extension, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with
|
|
|
|
|
libxcb-shape, the shape extension for the X C Binding. gdb will
|
|
|
|
@ -720,7 +791,7 @@ Description: X C Binding, shape extension, debugging symbols
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbshm0
|
|
|
|
|
Package: libxcb-shm0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -741,11 +812,10 @@ Description: X C Binding, shm extension
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbshm0-dev
|
|
|
|
|
Package: libxcb-shm0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbshm0 (= ${Source-Version}), libxcb0-dev
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb-shm0 (= ${Source-Version}), libxcb1-dev
|
|
|
|
|
Description: X C Binding, shm extension, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-shm, the shm extension for the X C Binding.
|
|
|
|
@ -763,10 +833,11 @@ Description: X C Binding, shm extension, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbshm0-dbg
|
|
|
|
|
Package: libxcb-shm0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbshm0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb-shm0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, shm extension, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with
|
|
|
|
|
libxcb-shm, the shm extension for the X C Binding. gdb will
|
|
|
|
@ -785,7 +856,7 @@ Description: X C Binding, shm extension, debugging symbols
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbsync0
|
|
|
|
|
Package: libxcb-sync0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -806,11 +877,10 @@ Description: X C Binding, sync extension
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbsync0-dev
|
|
|
|
|
Package: libxcb-sync0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbsync0 (= ${Source-Version}), libxcb0-dev
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb-sync0 (= ${Source-Version}), libxcb1-dev
|
|
|
|
|
Description: X C Binding, sync extension, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-sync, the sync extension for the X C Binding.
|
|
|
|
@ -828,10 +898,11 @@ Description: X C Binding, sync extension, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbsync0-dbg
|
|
|
|
|
Package: libxcb-sync0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbsync0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb-sync0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, sync extension, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with
|
|
|
|
|
libxcb-sync, the sync extension for the X C Binding. gdb will
|
|
|
|
@ -850,7 +921,7 @@ Description: X C Binding, sync extension, debugging symbols
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxevie0
|
|
|
|
|
Package: libxcb-xevie0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -871,11 +942,10 @@ Description: X C Binding, xevie extension
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxevie0-dev
|
|
|
|
|
Package: libxcb-xevie0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbxevie0 (= ${Source-Version}), libxcb0-dev
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb-xevie0 (= ${Source-Version}), libxcb1-dev
|
|
|
|
|
Description: X C Binding, xevie extension, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-xevie, the xevie extension for the X C Binding.
|
|
|
|
@ -893,10 +963,11 @@ Description: X C Binding, xevie extension, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxevie0-dbg
|
|
|
|
|
Package: libxcb-xevie0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbxevie0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb-xevie0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, xevie extension, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with
|
|
|
|
|
libxcb-xevie, the xevie extension for the X C Binding. gdb will
|
|
|
|
@ -915,7 +986,7 @@ Description: X C Binding, xevie extension, debugging symbols
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxf86dri0
|
|
|
|
|
Package: libxcb-xf86dri0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -936,11 +1007,10 @@ Description: X C Binding, xf86dri extension
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxf86dri0-dev
|
|
|
|
|
Package: libxcb-xf86dri0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbxf86dri0 (= ${Source-Version}), libxcb0-dev
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb-xf86dri0 (= ${Source-Version}), libxcb1-dev
|
|
|
|
|
Description: X C Binding, xf86dri extension, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-xf86dri, the xf86dri extension for the X C Binding.
|
|
|
|
@ -958,10 +1028,11 @@ Description: X C Binding, xf86dri extension, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxf86dri0-dbg
|
|
|
|
|
Package: libxcb-xf86dri0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbxf86dri0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb-xf86dri0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, xf86dri extension, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with
|
|
|
|
|
libxcb-xf86dri, the xf86dri extension for the X C Binding. gdb will
|
|
|
|
@ -980,7 +1051,7 @@ Description: X C Binding, xf86dri extension, debugging symbols
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxfixes0
|
|
|
|
|
Package: libxcb-xfixes0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -1001,11 +1072,10 @@ Description: X C Binding, xfixes extension
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxfixes0-dev
|
|
|
|
|
Package: libxcb-xfixes0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbxfixes0 (= ${Source-Version}), libxcb0-dev, libxcbrender0-dev, libxcbshape0-dev
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb-xfixes0 (= ${Source-Version}), libxcb1-dev, libxcb-render0-dev, libxcb-shape0-dev
|
|
|
|
|
Description: X C Binding, xfixes extension, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-xfixes, the xfixes extension for the X C Binding.
|
|
|
|
@ -1023,10 +1093,11 @@ Description: X C Binding, xfixes extension, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxfixes0-dbg
|
|
|
|
|
Package: libxcb-xfixes0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbxfixes0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb-xfixes0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, xfixes extension, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with
|
|
|
|
|
libxcb-xfixes, the xfixes extension for the X C Binding. gdb will
|
|
|
|
@ -1045,7 +1116,7 @@ Description: X C Binding, xfixes extension, debugging symbols
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxprint0
|
|
|
|
|
Package: libxcb-xprint0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -1066,11 +1137,10 @@ Description: X C Binding, xprint extension
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxprint0-dev
|
|
|
|
|
Package: libxcb-xprint0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbxprint0 (= ${Source-Version}), libxcb0-dev
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb-xprint0 (= ${Source-Version}), libxcb1-dev
|
|
|
|
|
Description: X C Binding, xprint extension, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-xprint, the xprint extension for the X C Binding.
|
|
|
|
@ -1088,10 +1158,11 @@ Description: X C Binding, xprint extension, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxprint0-dbg
|
|
|
|
|
Package: libxcb-xprint0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbxprint0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb-xprint0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, xprint extension, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with
|
|
|
|
|
libxcb-xprint, the xprint extension for the X C Binding. gdb will
|
|
|
|
@ -1110,7 +1181,7 @@ Description: X C Binding, xprint extension, debugging symbols
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxtest0
|
|
|
|
|
Package: libxcb-xtest0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -1131,11 +1202,10 @@ Description: X C Binding, xtest extension
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxtest0-dev
|
|
|
|
|
Package: libxcb-xtest0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbxtest0 (= ${Source-Version}), libxcb0-dev
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb-xtest0 (= ${Source-Version}), libxcb1-dev
|
|
|
|
|
Description: X C Binding, xtest extension, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-xtest, the xtest extension for the X C Binding.
|
|
|
|
@ -1153,10 +1223,11 @@ Description: X C Binding, xtest extension, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxtest0-dbg
|
|
|
|
|
Package: libxcb-xtest0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbxtest0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb-xtest0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, xtest extension, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with
|
|
|
|
|
libxcb-xtest, the xtest extension for the X C Binding. gdb will
|
|
|
|
@ -1175,7 +1246,7 @@ Description: X C Binding, xtest extension, debugging symbols
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxv0
|
|
|
|
|
Package: libxcb-xv0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -1196,11 +1267,10 @@ Description: X C Binding, xv extension
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxv0-dev
|
|
|
|
|
Package: libxcb-xv0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbxv0 (= ${Source-Version}), libxcb0-dev, libxcbshm0-dev
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb-xv0 (= ${Source-Version}), libxcb1-dev, libxcb-shm0-dev
|
|
|
|
|
Description: X C Binding, xv extension, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-xv, the xv extension for the X C Binding.
|
|
|
|
@ -1218,10 +1288,11 @@ Description: X C Binding, xv extension, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxv0-dbg
|
|
|
|
|
Package: libxcb-xv0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbxv0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb-xv0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, xv extension, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with
|
|
|
|
|
libxcb-xv, the xv extension for the X C Binding. gdb will
|
|
|
|
@ -1240,7 +1311,7 @@ Description: X C Binding, xv extension, debugging symbols
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxvmc0
|
|
|
|
|
Package: libxcb-xvmc0
|
|
|
|
|
Section: libs
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
|
|
@ -1261,11 +1332,10 @@ Description: X C Binding, xvmc extension
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxvmc0-dev
|
|
|
|
|
Package: libxcb-xvmc0-dev
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbxvmc0 (= ${Source-Version}), libxcb0-dev, libxcbxv0-dev
|
|
|
|
|
Pre-Depends: x11-common (>= 1:1.09)
|
|
|
|
|
Depends: libxcb-xvmc0 (= ${Source-Version}), libxcb1-dev, libxcb-xv0-dev
|
|
|
|
|
Description: X C Binding, xvmc extension, development files
|
|
|
|
|
This package contains the header and library files needed to build software
|
|
|
|
|
using libxcb-xvmc, the xvmc extension for the X C Binding.
|
|
|
|
@ -1283,10 +1353,11 @@ Description: X C Binding, xvmc extension, development files
|
|
|
|
|
.
|
|
|
|
|
Homepage: http://xcb.freedesktop.org
|
|
|
|
|
|
|
|
|
|
Package: libxcbxvmc0-dbg
|
|
|
|
|
Package: libxcb-xvmc0-dbg
|
|
|
|
|
Priority: extra
|
|
|
|
|
Section: libdevel
|
|
|
|
|
Architecture: any
|
|
|
|
|
Depends: libxcbxvmc0 (= ${Source-Version})
|
|
|
|
|
Depends: libxcb-xvmc0 (= ${Source-Version})
|
|
|
|
|
Description: X C Binding, xvmc extension, debugging symbols
|
|
|
|
|
This package contains the debugging symbols associated with
|
|
|
|
|
libxcb-xvmc, the xvmc extension for the X C Binding. gdb will
|
|
|
|
|