From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id EAD9558973 for ; Sat, 30 Jan 2016 17:33:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51FD6E07E2; Sat, 30 Jan 2016 17:33:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E5C12E07E2 for ; Sat, 30 Jan 2016 17:33:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AACB2340CD7 for ; Sat, 30 Jan 2016 17:33:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F3B08ED for ; Sat, 30 Jan 2016 17:33:37 +0000 (UTC) From: "Priit Laes" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Priit Laes" Message-ID: <1454175159.ab86109235171cfbad54f0c74b1be6af268acaea.plaes@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: media-libs/clutter-gtk/ X-VCS-Repository: proj/gnome X-VCS-Files: media-libs/clutter-gtk/clutter-gtk-9999.ebuild X-VCS-Directories: media-libs/clutter-gtk/ X-VCS-Committer: plaes X-VCS-Committer-Name: Priit Laes X-VCS-Revision: ab86109235171cfbad54f0c74b1be6af268acaea X-VCS-Branch: master Date: Sat, 30 Jan 2016 17:33:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 42407673-d55e-4814-b4c9-a3546abdd388 X-Archives-Hash: 40f4b6e94208560178f78a912eba582b commit: ab86109235171cfbad54f0c74b1be6af268acaea Author: Priit Laes plaes org> AuthorDate: Sat Jan 30 17:32:39 2016 +0000 Commit: Priit Laes plaes org> CommitDate: Sat Jan 30 17:32:39 2016 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=ab861092 media-libs/clutter-gtk: Drop removed clutter eclass usage media-libs/clutter-gtk/clutter-gtk-9999.ebuild | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/media-libs/clutter-gtk/clutter-gtk-9999.ebuild b/media-libs/clutter-gtk/clutter-gtk-9999.ebuild index e284041..ca18131 100644 --- a/media-libs/clutter-gtk/clutter-gtk-9999.ebuild +++ b/media-libs/clutter-gtk/clutter-gtk-9999.ebuild @@ -4,32 +4,31 @@ EAPI="5" GCONF_DEBUG="yes" -CLUTTER_LA_PUNT="yes" +GNOME2_LA_PUNT="yes" -# inherit clutter after gnome2 so that defaults aren't overriden -inherit gnome2 clutter gnome.org +inherit gnome2 if [[ ${PV} = 9999 ]]; then inherit gnome2-live fi DESCRIPTION="Library for embedding a Clutter canvas (stage) in GTK+" HOMEPAGE="https://wiki.gnome.org/Projects/Clutter" +LICENSE="LGPL-2.1+" SLOT="1.0" -IUSE="examples +introspection" if [[ ${PV} = 9999 ]]; then KEYWORDS="" IUSE="${IUSE} doc" else KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" fi +IUSE="X examples gtk +introspection wayland" -# XXX: Needs gtk with X support (!directfb) RDEPEND=" - >=x11-libs/gtk+-3.6.0:3[introspection?] - >=media-libs/clutter-1.18:1.0[introspection?] + >=x11-libs/gtk+-3.8.0:3[X=,introspection?,wayland=] + >=media-libs/clutter-1.23.7:1.0[X=,gtk=,introspection?,wayland=] media-libs/cogl:1.0=[introspection?] - introspection? ( >=dev-libs/gobject-introspection-0.9.12 ) + introspection? ( >=dev-libs/gobject-introspection-0.9.12:= ) " DEPEND="${RDEPEND} dev-util/gtk-doc-am @@ -38,10 +37,17 @@ DEPEND="${RDEPEND} " src_configure() { - DOCS="NEWS README" - EXAMPLES="examples/{*.c,redhand.png}" gnome2_src_configure \ --disable-maintainer-flags \ --enable-deprecated \ $(use_enable introspection) } + +src_install() { + gnome2_src_install + + if use examples; then + insinto /usr/share/doc/${PF}/examples + doins examples/{*.c,redhand.png} + fi +}