blob: 357b82203dd9ffbf0661ef594f89c84b467af02e (
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
55
56
57
58
59
60
61
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit toolchain-funcs eutils
DESCRIPTION="virtual keyboard for X window system"
HOMEPAGE="http://homepage3.nifty.com/tsato/xvkbd/"
SRC_URI="http://homepage3.nifty.com/tsato/xvkbd/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND="
x11-libs/libX11
x11-libs/libXaw
x11-libs/libXaw3d
x11-libs/libXmu
x11-libs/libXt
x11-libs/libXtst
"
DEPEND="
${RDEPEND}
app-text/rman
x11-misc/gccmakedep
x11-misc/imake
x11-proto/inputproto
x11-proto/xextproto
x11-proto/xproto
"
src_prepare() {
epatch_user
}
src_configure() {
xmkmf -a || die
}
src_compile() {
emake \
CC=$(tc-getCC) LD=$(tc-getCC) \
XAPPLOADDIR="/etc/X11/app-defaults" \
LOCAL_LDFLAGS="${LDFLAGS}" \
CDEBUGFLAGS="${CFLAGS}"
}
src_install() {
emake \
XAPPLOADDIR="/etc/X11/app-defaults" \
DESTDIR="${D}" \
install
rm -rf "${D}"/usr/lib "${D}"/etc
dodoc README
newman ${PN}.man ${PN}.1
}
|