blob: f6d054fdf6be2df80a06a8fc76b499085e9cae35 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit toolchain-funcs
DESCRIPTION="Marc Lehmann's improved X Cut Buffers"
HOMEPAGE="http://oldhome.schmorp.de/marc/xcb.html"
SRC_URI="http://oldhome.schmorp.de/marc/data/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 ~ppc x86"
IUSE="motif"
RDEPEND="
x11-libs/libX11
x11-libs/libXaw
x11-libs/libXext
x11-libs/libXt
"
DEPEND="
${RDEPEND}
x11-proto/xproto
motif? ( >=x11-libs/motif-2.3:0 )
"
src_compile() {
local gui libs
if use motif; then
gui="-DMOTIF"
libs="-lXm -lXt -lX11"
else
gui="-DATHENA"
libs="-lXaw -lXt -lXext -lX11"
fi
emake \
-f Makefile.std xcb Xcb.ad \
CC="$(tc-getCC)" \
CPP="$(tc-getCPP)" \
CFLAGS="${CFLAGS} ${gui}" \
GUI="${gui}" \
LIBS="${libs}" \
LDFLAGS="${LDFLAGS}"
}
src_install() {
dobin xcb
newman xcb.man xcb.1
insinto /usr/share/X11/app-defaults
newins Xcb.ad Xcb
}
|