diff options
Diffstat (limited to 'x11-libs/glamor/glamor-0.6.0-r1.ebuild')
-rw-r--r-- | x11-libs/glamor/glamor-0.6.0-r1.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/x11-libs/glamor/glamor-0.6.0-r1.ebuild b/x11-libs/glamor/glamor-0.6.0-r1.ebuild new file mode 100644 index 000000000000..453e142ff70c --- /dev/null +++ b/x11-libs/glamor/glamor-0.6.0-r1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +XORG_DRI=always +XORG_EAUTORECONF=yes +XORG_MODULE=driver/ +XORG_MODULE_REBUILD=yes +S=${WORKDIR}/${PN}-egl-${PV} + +inherit xorg-2 autotools-utils toolchain-funcs + +DESCRIPTION="OpenGL based 2D rendering acceleration library" +SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/${XORG_MODULE}${PN}-egl-${PV}.tar.bz2" + +KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86" +IUSE="gles xv" + +RDEPEND=">=x11-base/xorg-server-1.10 + >=media-libs/mesa-10[egl,gbm] + gles? ( + || ( media-libs/mesa[gles2] media-libs/mesa[gles] ) + ) + >=x11-libs/pixman-0.21.8" +DEPEND="${RDEPEND}" + +PATCHES=( + "${FILESDIR}"/${P}-xv-add-missing-include.patch + "${FILESDIR}"/${P}-glamor_egl_create_argb8888.patch +) + +src_configure() { + XORG_CONFIGURE_OPTIONS=( + $(use_enable gles glamor-gles2) + $(use_enable xv) + ) + xorg-2_src_configure +} + +src_prepare() { + sed -i 's/inst_LTLIBRARIES/lib_LTLIBRARIES/' src/Makefile.am || die + xorg-2_src_prepare + # fail to load grafic driver with hardened compiler #488906 + if gcc-specs-now ; then + append-ldflags -Wl,-z,lazy + fi +} + +src_install() { + # workaround parallel install failure, bug #488124. + autotools-utils_src_install -j1 +} |