blob: 168cdcbf9a7562fa82a51f88c1bc1835ca932f62 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit autotools eutils gnome2
DESCRIPTION="A versatile and extensible compositing manager which uses cairo for rendering"
HOMEPAGE="http://cairo-compmgr.tuxfamily.org/"
SRC_URI="http://download.tuxfamily.org/ccm/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="x11-libs/gtk+:2
x11-libs/cairo
x11-libs/pixman"
DEPEND="${RDEPEND}
>=x11-proto/glproto-1.4.9"
G2CONF="--disable-glitz --disable-glitz-tfp --enable-shave"
src_prepare() {
epatch "${FILESDIR}/${P}-glitz-tfp-undef.patch"
epatch "${FILESDIR}/${P}-glitz-code.patch"
AT_M4DIR="." eautoreconf
}
|