blob: 8bda1a04bbb90acf9bea7912ecffe91242bd21d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
XORG_MULTILIB=yes
inherit xorg-3
DESCRIPTION="X C-language Bindings sample implementations"
HOMEPAGE="https://xcb.freedesktop.org/"
SRC_URI="https://github.com/Airblader/${PN}/releases/download/v${PV}/${P}.tar.bz2"
KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv x86"
RDEPEND=">=x11-libs/libxcb-1.9.1:=[${MULTILIB_USEDEP}]
x11-libs/xcb-util[${MULTILIB_USEDEP}]"
DEPEND="${RDEPEND}
elibc_musl? ( sys-libs/queue-standalone )
x11-base/xorg-proto
x11-libs/libX11[${MULTILIB_USEDEP}]" # Only for tests, but configure.ac requires it
|