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 B237A1396D0 for ; Thu, 28 Sep 2017 17:18:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 25EA82BC011; Thu, 28 Sep 2017 17:18:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 0858D2BC00F for ; Thu, 28 Sep 2017 17:18:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 ADFB9341706 for ; Thu, 28 Sep 2017 17:18:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF0F09096 for ; Thu, 28 Sep 2017 17:18:50 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1506618660.729f17f718d0d3abb9eb2b702215d6b44ccc74b2.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/xdvik/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/xdvik/xdvik-22.87.03.ebuild X-VCS-Directories: app-text/xdvik/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 729f17f718d0d3abb9eb2b702215d6b44ccc74b2 X-VCS-Branch: master Date: Thu, 28 Sep 2017 17:18:50 +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: c0644dfd-7f45-4abc-a6e6-8f5e28918825 X-Archives-Hash: 2a32e6c222aef9da79cc2ae75b9c011b commit: 729f17f718d0d3abb9eb2b702215d6b44ccc74b2 Author: Arfrever Frehtes Taifersar Arahesis Apache Org> AuthorDate: Thu Sep 28 16:37:52 2017 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Thu Sep 28 17:11:00 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=729f17f7 app-text/xdvik: Call xdg_desktop_database_update() (bug #628826). app-text/xdvik/xdvik-22.87.03.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app-text/xdvik/xdvik-22.87.03.ebuild b/app-text/xdvik/xdvik-22.87.03.ebuild index 534a820e633..76037612857 100644 --- a/app-text/xdvik/xdvik-22.87.03.ebuild +++ b/app-text/xdvik/xdvik-22.87.03.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=5 -inherit eutils flag-o-matic elisp-common toolchain-funcs multilib +inherit elisp-common eutils flag-o-matic multilib toolchain-funcs xdg-utils DESCRIPTION="DVI previewer for X Window System" HOMEPAGE="http://xdvi.sourceforge.net/" @@ -92,6 +92,8 @@ src_install() { } pkg_postinst() { + xdg_desktop_database_update + if use emacs; then elog "Add" elog " (add-to-list 'load-path \"${EPREFIX}${SITELISP}/tex-utils\")" @@ -99,3 +101,7 @@ pkg_postinst() { elog "to your ~/.emacs file" fi } + +pkg_postrm() { + xdg_desktop_database_update +}