Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/mkvtoolnix/
Date: Sun, 30 Jun 2019 12:37:09
Message-Id: 1561898207.96409616430ab2063296de939c6c8d31d9664685.pacho@gentoo
1 commit: 96409616430ab2063296de939c6c8d31d9664685
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 30 12:30:12 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 30 12:36:47 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96409616
7
8 media-video/mkvtoolnix: Newer libfmt needed, use xdg.eclass
9
10 Closes: https://bugs.gentoo.org/688620
11 Package-Manager: Portage-2.3.67, Repoman-2.3.16
12 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
13
14 media-video/mkvtoolnix/mkvtoolnix-35.0.0.ebuild | 18 +++---------------
15 1 file changed, 3 insertions(+), 15 deletions(-)
16
17 diff --git a/media-video/mkvtoolnix/mkvtoolnix-35.0.0.ebuild b/media-video/mkvtoolnix/mkvtoolnix-35.0.0.ebuild
18 index 8837542e21d..67e541fbc01 100644
19 --- a/media-video/mkvtoolnix/mkvtoolnix-35.0.0.ebuild
20 +++ b/media-video/mkvtoolnix/mkvtoolnix-35.0.0.ebuild
21 @@ -2,7 +2,7 @@
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=6
25 -inherit toolchain-funcs versionator multiprocessing xdg-utils qmake-utils gnome2-utils
26 +inherit toolchain-funcs versionator multiprocessing qmake-utils xdg
27
28 if [[ ${PV} == "9999" ]] ; then
29 EGIT_REPO_URI="https://gitlab.com/mbunkus/mkvtoolnix.git"
30 @@ -22,7 +22,7 @@ IUSE="debug nls pch test qt5"
31 # check NEWS.md for build system changes entries for boost/libebml/libmatroska
32 # version requirement updates and other packaging info
33 RDEPEND="
34 - dev-libs/libfmt:=
35 + >=dev-libs/libfmt-5.3.0:=
36 >=dev-libs/boost-1.49.0:=
37 >=dev-libs/libebml-1.3.7:=
38 dev-libs/pugixml
39 @@ -70,7 +70,7 @@ pkg_pretend() {
40 }
41
42 src_prepare() {
43 - default
44 + xdg_src_prepare
45 [[ ${PV} == "9999" ]] && { ./autogen.sh || die; }
46 }
47
48 @@ -116,15 +116,3 @@ src_install() {
49 einstalldocs
50 doman doc/man/*.1
51 }
52 -
53 -pkg_postrm() {
54 - xdg_mimeinfo_database_update
55 - xdg_desktop_database_update
56 - gnome2_icon_cache_update
57 -}
58 -
59 -pkg_postinst() {
60 - xdg_mimeinfo_database_update
61 - xdg_desktop_database_update
62 - gnome2_icon_cache_update
63 -}