blob: e61a146ae1602e9c8f48074a4d8afe49abc4d696 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xcut/xcut-0.2-r1.ebuild,v 1.8 2007/08/31 01:04:12 omp Exp $
inherit eutils
DESCRIPTION="Commandline tool to manipulate the X11 cut and paste buffers"
HOMEPAGE="http://xcut.sourceforge.net"
SRC_URI="mirror://sourceforge/xcut/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ppc ~sparc x86"
IUSE=""
RDEPEND="x11-libs/libX11"
DEPEND="${RDEPEND}
x11-misc/imake
app-text/rman"
src_unpack() {
unpack ${A}
cd "${S}"
# Install to /usr
sed -i -e 's,/local/bin,/bin,g' \
-e 's,/local/man,/share/man,g' \
Imakefile
}
src_compile() {
xmkmf || die "xmkmf failed"
emake || die "emake failed"
}
src_install () {
make DESTDIR="${D}" install || die "make install failed"
make DESTDIR="${D}" install.man || die "make install.man failed"
rm -f "${D}/usr/lib/X11/doc/html/xcut.1.html"
find "${D}" -type d -depth | xargs -n1 rmdir 2>/dev/null
dodoc README || die "dodoc failed"
}
|