blob: 43f4e819b11e78c9c7c8783fd7ce7ce1cf137192 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
XORG_BASE_INDIVIDUAL_URI=""
XORG_DOC=doc
XORG_MULTILIB=yes
inherit xorg-2
DESCRIPTION="X C-language Bindings sample implementations"
HOMEPAGE="http://xcb.freedesktop.org/"
SRC_URI="https://github.com/Airblader/${PN}/releases/download/v${PV}/${P}.tar.bz2"
KEYWORDS="amd64 ~arm x86"
IUSE="test"
RDEPEND=">=x11-libs/libxcb-1.9.1[${MULTILIB_USEDEP}]
x11-libs/xcb-util[${MULTILIB_USEDEP}]"
DEPEND="${RDEPEND}
test? ( x11-libs/libX11[${MULTILIB_USEDEP}] )"
src_configure() {
xorg-2_src_configure
}
|