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 F16CB138CA3 for ; Sun, 19 Apr 2015 12:50:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9F401E0819; Sun, 19 Apr 2015 12:50:12 +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 41DACE083D for ; Sun, 19 Apr 2015 12:50:12 +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 49BE6340C20 for ; Sun, 19 Apr 2015 12:50:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1129B16428 for ; Sun, 19 Apr 2015 12:50:09 +0000 (UTC) From: "Ole Reifschneider" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ole Reifschneider" Message-ID: <1429447794.8831491ad887a22795d27eea32d611083a1805de.tranquility@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: x11-themes/gnome-themes-standard/ X-VCS-Repository: proj/gnome X-VCS-Files: x11-themes/gnome-themes-standard/gnome-themes-standard-3.16.0.ebuild X-VCS-Directories: x11-themes/gnome-themes-standard/ X-VCS-Committer: tranquility X-VCS-Committer-Name: Ole Reifschneider X-VCS-Revision: 8831491ad887a22795d27eea32d611083a1805de X-VCS-Branch: master Date: Sun, 19 Apr 2015 12:50:09 +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: 792fadc2-cd37-4c0b-88f0-52f718fe4a48 X-Archives-Hash: c1dd4b5cb54db61764b185aaddfa2105 commit: 8831491ad887a22795d27eea32d611083a1805de Author: Ole Reifschneider gentoo org> AuthorDate: Sun Apr 19 12:49:54 2015 +0000 Commit: Ole Reifschneider gentoo org> CommitDate: Sun Apr 19 12:49:54 2015 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=8831491a Bump x11-themes/gnome-themes-standard version to 3.16.0 Package-Manager: portage-2.2.14 Manifest-Sign-Key: 7E8B4D42 .../gnome-themes-standard-3.16.0.ebuild | 85 ++++++++++++++++++++++ 1 file changed, 85 insertions(+) diff --git a/x11-themes/gnome-themes-standard/gnome-themes-standard-3.16.0.ebuild b/x11-themes/gnome-themes-standard/gnome-themes-standard-3.16.0.ebuild new file mode 100644 index 0000000..e82de3c --- /dev/null +++ b/x11-themes/gnome-themes-standard/gnome-themes-standard-3.16.0.ebuild @@ -0,0 +1,85 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/gnome-themes-standard/gnome-themes-standard-3.14.2.3-r2.ebuild,v 1.1 2015/03/28 04:44:34 tetromino Exp $ + +EAPI="5" +GCONF_DEBUG="no" +GNOME2_LA_PUNT="yes" + +inherit autotools eutils gnome2 multilib-minimal + +DESCRIPTION="Standard Themes for GNOME Applications" +HOMEPAGE="https://git.gnome.org/browse/gnome-themes-standard/" + +LICENSE="LGPL-2.1+" +SLOT="0" +IUSE="+gtk" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~x64-solaris ~x86-solaris" + +COMMON_DEPEND=" + gnome-base/librsvg:2[${MULTILIB_USEDEP}] + x11-libs/cairo[${MULTILIB_USEDEP}] + gtk? ( + >=x11-libs/gtk+-2.24.15:2[${MULTILIB_USEDEP}] + >=x11-libs/gtk+-3.12:3[${MULTILIB_USEDEP}] ) +" +DEPEND="${COMMON_DEPEND} + >=dev-util/intltool-0.40 + sys-devel/gettext + virtual/pkgconfig +" +# gnome-themes{,-extras} are OBSOLETE for GNOME 3 +# http://comments.gmane.org/gmane.comp.gnome.desktop/44130 +# Depend on gsettings-desktop-schemas-3.4 to make sure 3.2 users don't lose +# their default background image +RDEPEND="${COMMON_DEPEND} + >=gnome-base/gsettings-desktop-schemas-3.4 + ! /dev/null || die + if [[ $1 = install ]]; then + emake DESTDIR="${D}" install-engineLTLIBRARIES + else + emake libadwaita.la + fi + popd > /dev/null +} + +multilib_src_compile() { + # processing >3500 icons is slow on old hard drives, do it only for native ABI + if multilib_is_native_abi; then + gnome2_src_compile + elif use gtk; then + emake_engines_only + fi +} + +multilib_src_install() { + # processing >3500 icons is slow on old hard drives, do it only for native ABI + if multilib_is_native_abi; then + gnome2_src_install + elif use gtk; then + emake_engines_only install + prune_libtool_files --modules + fi +}