Gentoo Archives: gentoo-commits

From: Thomas Beierlein <tomjbe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-electronics/gerbv/
Date: Thu, 28 Dec 2017 12:51:43
Message-Id: 1514465468.7d275ecc851e8c16075546754a6d1d54daf2d6cd.tomjbe@gentoo
1 commit: 7d275ecc851e8c16075546754a6d1d54daf2d6cd
2 Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 28 12:49:15 2017 +0000
4 Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 28 12:51:08 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d275ecc
7
8 sci-electronics/gerbv: Add missing gnome2_icon_cache_update
9
10 Additional migrate to xdg-utils
11 Thanks for reporting jstein.
12
13 CLoses: https://bugs.gentoo.org/642468
14 Package-Manager: Portage-2.3.19, Repoman-2.3.6
15
16 sci-electronics/gerbv/gerbv-2.6.1.ebuild | 10 ++++++----
17 1 file changed, 6 insertions(+), 4 deletions(-)
18
19 diff --git a/sci-electronics/gerbv/gerbv-2.6.1.ebuild b/sci-electronics/gerbv/gerbv-2.6.1.ebuild
20 index 533305d55d4..87f4879d834 100644
21 --- a/sci-electronics/gerbv/gerbv-2.6.1.ebuild
22 +++ b/sci-electronics/gerbv/gerbv-2.6.1.ebuild
23 @@ -1,8 +1,8 @@
24 -# Copyright 1999-2016 Gentoo Foundation
25 +# Copyright 1999-2017 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27
28 EAPI="6"
29 -inherit autotools eutils fdo-mime
30 +inherit autotools eutils gnome2-utils xdg-utils
31
32 DESCRIPTION="A RS-274X (Gerber) and NC drill (Excellon) file viewer"
33 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
34 @@ -57,9 +57,11 @@ src_install () {
35 }
36
37 pkg_postinst() {
38 - fdo-mime_desktop_database_update
39 + xdg_desktop_database_update
40 + gnome2_icon_cache_update
41 }
42
43 pkg_postrm() {
44 - fdo-mime_desktop_database_update
45 + xdg_desktop_database_update
46 + gnome2_icon_cache_update
47 }