From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 ACC46138359 for ; Sat, 3 Oct 2020 16:06:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC6AAE083D; Sat, 3 Oct 2020 16:06:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D6853E083D for ; Sat, 3 Oct 2020 16:06:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E1A40335D1F for ; Sat, 3 Oct 2020 16:06:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F591EC for ; Sat, 3 Oct 2020 16:06:42 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1601741198.82e52cbf00fe78cb530bf48ad489f3e0a79ba62e.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-extra/libgda/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-extra/libgda/libgda-5.2.9.ebuild X-VCS-Directories: gnome-extra/libgda/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 82e52cbf00fe78cb530bf48ad489f3e0a79ba62e X-VCS-Branch: master Date: Sat, 3 Oct 2020 16:06:42 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 402d1913-5ac3-4f84-99f6-b35ce3bba0ee X-Archives-Hash: 7ec57154a563e9ad970dfaa0a90157eb commit: 82e52cbf00fe78cb530bf48ad489f3e0a79ba62e Author: Pacho Ramos gentoo org> AuthorDate: Sat Oct 3 16:06:28 2020 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sat Oct 3 16:06:38 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82e52cbf gnome-extra/libgda: appdata files are only installed with USE gtk Closes: https://bugs.gentoo.org/743715 Thanks-to: Toralf Förster Thanks-to: Kent Fredric Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Pacho Ramos gentoo.org> gnome-extra/libgda/libgda-5.2.9.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnome-extra/libgda/libgda-5.2.9.ebuild b/gnome-extra/libgda/libgda-5.2.9.ebuild index 73305fd1f2f..3edc6cce0ca 100644 --- a/gnome-extra/libgda/libgda-5.2.9.ebuild +++ b/gnome-extra/libgda/libgda-5.2.9.ebuild @@ -146,5 +146,7 @@ pkg_preinst() { src_install() { gnome2_src_install # Use new location - mv "${ED}"/usr/share/appdata "${ED}"/usr/share/metainfo || die + if use gtk; then + mv "${ED}"/usr/share/appdata "${ED}"/usr/share/metainfo || die + fi }