blob: c982eb9cc89c8dff436bfb7c056b5e9efd77a707 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.5.ebuild,v 1.7 2012/12/28 11:33:15 ago Exp $
EAPI=4
XORG_DRI=always
XORG_EAUTORECONF=yes
inherit xorg-2
DESCRIPTION="OpenGL based 2D rendering acceleration library"
SRC_URI="mirror://gentoo/${P}.tar.gz"
KEYWORDS="amd64 ia64 ppc ppc64 x86"
IUSE="gles"
RDEPEND=">=x11-base/xorg-server-1.10
media-libs/mesa[egl,gbm]
gles? (
|| ( media-libs/mesa[gles2] media-libs/mesa[gles] )
)
>=x11-libs/pixman-0.21.8"
DEPEND="${RDEPEND}"
pkg_setup() {
xorg-2_pkg_setup
XORG_CONFIGURE_OPTIONS=(
$(use_enable gles glamor-gles2)
)
}
src_prepare() {
sed -i 's/inst_LTLIBRARIES/lib_LTLIBRARIES/' src/Makefile.am || die
xorg-2_src_prepare
}
|