blob: c66a08b9f8b6d53c919113f8b1220e2d67c629a6 (
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.2.ebuild,v 1.3 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="~x86 ~ppc ~amd64"
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
}
|