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 94FEE1396D0 for ; Thu, 31 Aug 2017 12:02:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B781E0DF9; Thu, 31 Aug 2017 12:02:08 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 48812E0DF9 for ; Thu, 31 Aug 2017 12:02:08 +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 1FADF34105A for ; Thu, 31 Aug 2017 12:02:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 98D0288FB for ; Thu, 31 Aug 2017 12:02:04 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1504180652.fb94d19ef38174bcac207a539021602d56fbad0b.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/viewnior/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/viewnior/viewnior-1.6.ebuild X-VCS-Directories: media-gfx/viewnior/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: fb94d19ef38174bcac207a539021602d56fbad0b X-VCS-Branch: master Date: Thu, 31 Aug 2017 12:02:04 +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: 97f9a14a-21e5-4211-adda-3809a0e1441a X-Archives-Hash: 5f699bcdbf9bae19f019a170f60c1a69 commit: fb94d19ef38174bcac207a539021602d56fbad0b Author: Tim Harder gentoo org> AuthorDate: Thu Aug 31 11:57:32 2017 +0000 Commit: Tim Harder gentoo org> CommitDate: Thu Aug 31 11:57:32 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb94d19e media-gfx/viewnior: update from fdo-mime to xdg-utils eclass media-gfx/viewnior/viewnior-1.6.ebuild | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/media-gfx/viewnior/viewnior-1.6.ebuild b/media-gfx/viewnior/viewnior-1.6.ebuild index 6ae74e2e0ee..b98ebe15bea 100644 --- a/media-gfx/viewnior/viewnior-1.6.ebuild +++ b/media-gfx/viewnior/viewnior-1.6.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit fdo-mime gnome2-utils autotools +inherit xdg-utils gnome2-utils autotools MY_PN=Viewnior DESCRIPTION="Fast and simple image viewer" @@ -23,11 +23,12 @@ RDEPEND="${DEPEND}" S=${WORKDIR}/${MY_PN}-${P} src_prepare() { + default + # fix for bug #454230 sed -r -i "s:(PKG_CHECK_MODULES):AC_CHECK_LIB([m],[cos])\n\n\1:" configure.ac eautoreconf - default } pkg_preinst() { @@ -35,11 +36,11 @@ pkg_preinst() { } pkg_postinst() { - fdo-mime_desktop_database_update + xdg_desktop_database_update gnome2_icon_cache_update } pkg_postrm() { - fdo-mime_desktop_database_update + xdg_desktop_database_update gnome2_icon_cache_update }