From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-890470-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 871631382EE for <garchives@archives.gentoo.org>; Tue, 5 Jul 2016 22:46:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ADBE8E0A69; Tue, 5 Jul 2016 22:46:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 44A92E0A69 for <gentoo-commits@lists.gentoo.org>; Tue, 5 Jul 2016 22:46:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 00827340D4D for <gentoo-commits@lists.gentoo.org>; Tue, 5 Jul 2016 22:46:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 447062433 for <gentoo-commits@lists.gentoo.org>; Tue, 5 Jul 2016 22:46:20 +0000 (UTC) From: "Andreas Hüttel" <dilfridge@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Hüttel" <dilfridge@gentoo.org> Message-ID: <1467758755.5542859cc01ca3d9dfb0c0c7a68024ed1b6df971.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/libreoffice/libreoffice-5.1.4.2.ebuild X-VCS-Directories: app-office/libreoffice/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas Hüttel X-VCS-Revision: 5542859cc01ca3d9dfb0c0c7a68024ed1b6df971 X-VCS-Branch: master Date: Tue, 5 Jul 2016 22:46:20 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b8d8f864-0eab-4939-9c13-e5eb28bef928 X-Archives-Hash: 733451d2ffbbefc95117399ed8656164 commit: 5542859cc01ca3d9dfb0c0c7a68024ed1b6df971 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org> AuthorDate: Tue Jul 5 22:44:15 2016 +0000 Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org> CommitDate: Tue Jul 5 22:45:55 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5542859c app-office/libreoffice: Optionally enable quickstarter in 5.1.4.2 already Package-Manager: portage-2.3.0 app-office/libreoffice/libreoffice-5.1.4.2.ebuild | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/app-office/libreoffice/libreoffice-5.1.4.2.ebuild b/app-office/libreoffice/libreoffice-5.1.4.2.ebuild index ca9fc14..52653526 100644 --- a/app-office/libreoffice/libreoffice-5.1.4.2.ebuild +++ b/app-office/libreoffice/libreoffice-5.1.4.2.ebuild @@ -79,7 +79,7 @@ unset ADDONS_SRC LO_EXTS="nlpsolver scripting-beanshell scripting-javascript wiki-publisher" IUSE="bluetooth +branding coinmp collada +cups dbus debug eds firebird gltf gnome google -gstreamer +gtk gtk3 jemalloc kde libressl mysql odk postgres telepathy test vlc +gstreamer +gtk gtk3 jemalloc kde libressl mysql odk postgres quickstarter telepathy test vlc $(printf 'libreoffice_extensions_%s ' ${LO_EXTS})" LICENSE="|| ( LGPL-3 MPL-1.1 )" @@ -414,8 +414,6 @@ src_configure() { # --enable-*-link: link to the library rather than just dlopen on runtime # --enable-release-build: build the libreoffice as release # --disable-fetch-external: prevent dowloading during compile phase - # --disable-systray: quickstarter does not actually work at all so do not - # promote it # --enable-extension-integration: enable any extension integration support # --without-{fonts,myspell-dicts,ppsd}: prevent install of sys pkgs # --disable-report-builder: too much java packages pulled in without pkgs @@ -443,7 +441,6 @@ src_configure() { --disable-gstreamer-0-10 \ --disable-report-builder \ --disable-online-update \ - --disable-systray \ --with-alloc=$(use jemalloc && echo "jemalloc" || echo "system") \ --with-build-version="Gentoo official package" \ --enable-extension-integration \ @@ -479,6 +476,7 @@ src_configure() { $(use_enable mysql ext-mariadb-connector) \ $(use_enable odk) \ $(use_enable postgres postgresql-sdbc) \ + $(use_enable quickstarter systray) \ $(use_enable telepathy) \ $(use_enable vlc) \ $(use_with coinmp system-coinmp) \