diff options
author | Thomas Sachau <tommy@gentoo.org> | 2013-11-12 18:32:58 +0000 |
---|---|---|
committer | Thomas Sachau <tommy@gentoo.org> | 2013-11-12 18:32:58 +0000 |
commit | 94a47fc60ae8889bc39a87d60b9282c17fc27c8e (patch) | |
tree | 54a113b1d0716bc6ac370c4e119759cfbb991f13 | |
parent | Bump make dep to 3.81 since 3.80 was reported non-working by okias. (diff) | |
download | gentoo-2-94a47fc60ae8889bc39a87d60b9282c17fc27c8e.tar.gz gentoo-2-94a47fc60ae8889bc39a87d60b9282c17fc27c8e.tar.bz2 gentoo-2-94a47fc60ae8889bc39a87d60b9282c17fc27c8e.zip |
Version bump
(Portage version: 2.2.6-r1/cvs/Linux x86_64, signed Manifest commit with key 0x35899067)
-rw-r--r-- | app-benchmarks/expedite/ChangeLog | 11 | ||||
-rw-r--r-- | app-benchmarks/expedite/expedite-1.7.9.ebuild | 50 |
2 files changed, 58 insertions, 3 deletions
diff --git a/app-benchmarks/expedite/ChangeLog b/app-benchmarks/expedite/ChangeLog index e31478b2ac9f..88dd53c152f3 100644 --- a/app-benchmarks/expedite/ChangeLog +++ b/app-benchmarks/expedite/ChangeLog @@ -1,10 +1,15 @@ # ChangeLog for app-benchmarks/expedite -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/expedite/ChangeLog,v 1.1 2012/12/21 21:08:52 tommy Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/expedite/ChangeLog,v 1.2 2013/11/12 18:32:58 tommy Exp $ + +*expedite-1.7.9 (12 Nov 2013) + + 12 Nov 2013; Thomas Sachau (Tommy[D]) <tommy@gentoo.org> + +expedite-1.7.9.ebuild: + Version bump *expedite-1.7.4 (21 Dec 2012) 21 Dec 2012; Thomas Sachau (Tommy[D]) <tommy@gentoo.org> +expedite-1.7.4.ebuild, +metadata.xml: Initial commit - diff --git a/app-benchmarks/expedite/expedite-1.7.9.ebuild b/app-benchmarks/expedite/expedite-1.7.9.ebuild new file mode 100644 index 000000000000..ae57761d2d9a --- /dev/null +++ b/app-benchmarks/expedite/expedite-1.7.9.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/expedite/expedite-1.7.9.ebuild,v 1.1 2013/11/12 18:32:58 tommy Exp $ + +EAPI=3 + +inherit enlightenment + +DESCRIPTION="Performance and correctness test suite for Evas" +SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2" + +LICENSE="BSD-2" +KEYWORDS="~amd64 ~x86" +IUSE="directfb fbcon opengl X xcb" + +RDEPEND=">=dev-libs/eina-1.7.9 + >=media-libs/evas-1.7.9[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 + MY_ECONF=" + --disable-xrender-xcb + $(use_enable opengl opengl-x11) + " + elif use xcb ; then + MY_ECONF=" + --enable-xrender-xcb + " + else + MY_ECONF=" + --disable-gl-xlib + --disable-software-xcb + --disable-gl-xcb + " + fi + MY_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 +} |