blob: 0498b91b22a8f9ba98e6e575712d07015b55c78e (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/xcompmgr/xcompmgr-1.1.3.ebuild,v 1.5 2007/07/22 03:25:08 dberkholz Exp $
inherit eutils
IUSE=""
DESCRIPTION="X Compositing manager"
HOMEPAGE="http://freedesktop.org/Software/xapps"
SRC_URI="http://xapps.freedesktop.org/release/${P}.tar.gz"
SLOT="0"
LICENSE="BSD"
KEYWORDS="amd64 ppc ~sparc x86"
RDEPEND="x11-libs/libXrender
x11-libs/libXfixes
x11-libs/libXdamage
x11-libs/libXcomposite"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_install() {
make DESTDIR=${D} install || die
dodoc ChangeLog
}
|