blob: 91fddbe15322ab209926298d4c83ec0f8982b639 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xclip/xclip-0.11.ebuild,v 1.1 2009/01/18 23:09:50 nelchael Exp $
DESCRIPTION="Command-line utility to read data from standard in and place it in an X selection"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://sourceforge.net/projects/xclip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE=""
RDEPEND="x11-libs/libX11
x11-libs/libXmu
x11-libs/libXt
x11-libs/libXext"
DEPEND="${RDEPEND}"
src_install () {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc ChangeLog README
}
|