blob: ace1a3036345824829fd2b8a97fa00a826ef1ff2 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xclip/xclip-0.08.ebuild,v 1.9 2006/01/24 10:07:16 tove Exp $
S=${WORKDIR}/xclip
DESCRIPTION="Command-line utility to read data from standard in and place it in an X selection for pasting into X applications."
SRC_URI="http://people.debian.org/~kims/xclip/${P}.tar.gz"
HOMEPAGE="http://people.debian.org/~kims/xclip/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 ia64 ppc x86"
IUSE=""
RDEPEND="|| ( (
x11-libs/libX11
x11-libs/libXmu
x11-libs/libXt
x11-libs/libXext )
virtual/x11 )"
DEPEND="${RDEPEND}
|| ( ( x11-proto/xproto
app-text/rman
x11-misc/imake )
virtual/x11 )"
src_compile() {
xmkmf || die
make || die
}
src_install () {
make DESTDIR=${D} install || die
make DESTDIR=${D} install.man || die
dodoc README CHANGES
}
|