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 6156D138334 for ; Sat, 16 Jun 2018 07:04:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F0E1E07D8; Sat, 16 Jun 2018 07:04:13 +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 DE50BE07D8 for ; Sat, 16 Jun 2018 07:04:12 +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 66C35335C85 for ; Sat, 16 Jun 2018 07:04:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CF4592D7 for ; Sat, 16 Jun 2018 07:04:07 +0000 (UTC) From: "Andreas Sturmlechner" 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 Sturmlechner" Message-ID: <1529132630.7f90b764149db14424a605a4da709d0c945791d7.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/luminance-hdr/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/luminance-hdr/luminance-hdr-2.5.1-r1.ebuild X-VCS-Directories: media-gfx/luminance-hdr/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 7f90b764149db14424a605a4da709d0c945791d7 X-VCS-Branch: master Date: Sat, 16 Jun 2018 07:04:07 +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: b0e7a3a3-eca0-4626-92a8-3cbd174daba0 X-Archives-Hash: da0aeebeaf7804e6ff519ac31f1d9aed commit: 7f90b764149db14424a605a4da709d0c945791d7 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Jun 14 19:50:58 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jun 16 07:03:50 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f90b764 media-gfx/luminance-hdr: Drop unused eutils, add missing xdg-utils Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-gfx/luminance-hdr/luminance-hdr-2.5.1-r1.ebuild | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/media-gfx/luminance-hdr/luminance-hdr-2.5.1-r1.ebuild b/media-gfx/luminance-hdr/luminance-hdr-2.5.1-r1.ebuild index 1321f071b96..39c345486d1 100644 --- a/media-gfx/luminance-hdr/luminance-hdr-2.5.1-r1.ebuild +++ b/media-gfx/luminance-hdr/luminance-hdr-2.5.1-r1.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit cmake-utils toolchain-funcs eutils flag-o-matic +inherit cmake-utils toolchain-funcs flag-o-matic xdg-utils MY_P=${P/_/.} DESCRIPTION="Graphical user interface that provides a workflow for HDR imaging" @@ -66,7 +66,7 @@ pkg_pretend() { } src_configure() { - mycmakeargs=( + local mycmakeargs=( -DUSE_OPENMP="$(usex openmp)" -DUSE_FITS="$(usex fits)" ) @@ -82,3 +82,13 @@ src_install() { fi done } + +pkg_postinst() { + xdg_desktop_database_update + xdg_mimeinfo_database_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_mimeinfo_database_update +}