blob: 53df68c639558d3e60140047ab64db385e6b5138 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xse/xse-2.1.ebuild,v 1.8 2007/07/22 03:17:30 dberkholz Exp $
inherit eutils
DESCRIPTION="Command Line Interface to XSendEvent()"
HOMEPAGE="ftp://ftp.x.org/R5contrib/"
SRC_URI="ftp://ftp.x.org/R5contrib/xsendevent-${PV}.tar.Z"
LICENSE="X11"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
DEPEND="x11-misc/imake
x11-libs/libXt
x11-misc/gccmakedep
app-text/rman"
src_compile() {
xmkmf -a &> /dev/null || die
econf; emake CCOPTIONS="${CFLAGS}" LOCAL_LDFLAGS=${LDFLAGS} || die
}
src_install() {
dobin xse
newman xse.man xse.1
dodoc README
dodir /usr/X11R6/lib/X11/app-defaults
insinto /usr/X11R6/lib/X11/app-defaults
newins Xse.ad Xse
}
|