diff options
Diffstat (limited to 'app-benchmarks/expedite/expedite-1.7.10.ebuild')
-rw-r--r-- | app-benchmarks/expedite/expedite-1.7.10.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/app-benchmarks/expedite/expedite-1.7.10.ebuild b/app-benchmarks/expedite/expedite-1.7.10.ebuild new file mode 100644 index 000000000000..bdd94549434e --- /dev/null +++ b/app-benchmarks/expedite/expedite-1.7.10.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +EKEY_STATE="snap" + +inherit enlightenment + +DESCRIPTION="Performance and correctness test suite for Evas" +SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2" + +LICENSE="BSD-2" +IUSE="directfb fbcon opengl X xcb" + +RDEPEND=">=dev-libs/eina-${PV} + >=media-libs/evas-${PV}[directfb?,fbcon?,opengl?,X?,xcb?]" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_configure() { + if use X ; then + if use xcb ; then + ewarn "You have enabled both 'X' and 'xcb', so we will use" + ewarn "X as it's considered the most stable for evas." + fi + E_ECONF+=( + --disable-xrender-xcb + $(use_enable opengl opengl-x11) + ) + elif use xcb ; then + E_ECONF+=( + --enable-xrender-xcb + ) + else + E_ECONF+=( + --disable-gl-xlib + --disable-software-xcb + --disable-gl-xcb + ) + fi + E_ECONF+=( + $(use_enable directfb) + $(use_enable fbcon fb) + $(use_enable X simple-x11) + $(use_enable X software-x11) + $(use_enable X xrender-x11) + ) + enlightenment_src_configure +} |