Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/mediainfo/
Date: Sat, 31 Aug 2019 10:41:22
Message-Id: 1567248027.937a9b6636d76ee5791ded94363d3dd843e99810.radhermit@gentoo
1 commit: 937a9b6636d76ee5791ded94363d3dd843e99810
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 31 10:40:27 2019 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 31 10:40:27 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=937a9b66
7
8 media-video/mediainfo: remove old
9
10 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
11
12 media-video/mediainfo/Manifest | 1 -
13 media-video/mediainfo/mediainfo-19.04.ebuild | 80 ----------------------------
14 2 files changed, 81 deletions(-)
15
16 diff --git a/media-video/mediainfo/Manifest b/media-video/mediainfo/Manifest
17 index 20c33ab9fdf..1e9505e0272 100644
18 --- a/media-video/mediainfo/Manifest
19 +++ b/media-video/mediainfo/Manifest
20 @@ -1,2 +1 @@
21 -DIST mediainfo_19.04.tar.xz 1732860 BLAKE2B d4bded273b8dce2be2c578d263f2d442ad5b4a37f5d8b292d34dd80ed7fe83fbacce69a4ce740f9527f2fdb9a304b6dd91c96bfe747c023ce0dddac2244eb7f4 SHA512 cb6cb3c4bc3a037267684bd850babe3ca5998954f93e86d5b25aad7c4641918546a012cf7c6df4ef8d6017c85ab159dc5ae0b18f166385f8c5cc940a6fb0b3ce
22 DIST mediainfo_19.07.tar.xz 1903620 BLAKE2B 68487713e0c540022d2a5ee8416cb8e1c87ed2a4479f8d7c247d75137a62d3ae2994d02cd8853080837a23d582ce4acab497646bf2307a0b2b4d398635738baa SHA512 ef543b2b3fa61347adaa510fc3b051ff148e24ef6461e25b9f1d158f3c4b57ce96826d0c0e8ae46996092e0eb84e99308ba87d95dd0392b99f05b704438c5983
23
24 diff --git a/media-video/mediainfo/mediainfo-19.04.ebuild b/media-video/mediainfo/mediainfo-19.04.ebuild
25 deleted file mode 100644
26 index 37cd73d53ba..00000000000
27 --- a/media-video/mediainfo/mediainfo-19.04.ebuild
28 +++ /dev/null
29 @@ -1,80 +0,0 @@
30 -# Copyright 1999-2019 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -WX_GTK_VER="3.0"
35 -
36 -inherit gnome2-utils xdg-utils autotools wxwidgets
37 -
38 -DESCRIPTION="MediaInfo supplies technical and tag information about media files"
39 -HOMEPAGE="https://mediaarea.net/mediainfo/ https://github.com/MediaArea/MediaInfo"
40 -SRC_URI="https://mediaarea.net/download/source/${PN}/${PV}/${P/-/_}.tar.xz"
41 -
42 -LICENSE="BSD-2"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86"
45 -IUSE="curl mms wxwidgets"
46 -
47 -RDEPEND="sys-libs/zlib
48 - >=media-libs/libzen-0.4.37
49 - ~media-libs/lib${P}[curl=,mms=]
50 - wxwidgets? ( x11-libs/wxGTK:${WX_GTK_VER}[X] )"
51 -DEPEND="${RDEPEND}
52 - virtual/pkgconfig"
53 -
54 -S=${WORKDIR}/MediaInfo
55 -
56 -pkg_setup() {
57 - TARGETS="CLI"
58 - if use wxwidgets; then
59 - TARGETS+=" GUI"
60 - setup-wxwidgets
61 - fi
62 -}
63 -
64 -src_prepare() {
65 - default
66 -
67 - local target
68 - for target in ${TARGETS}; do
69 - cd "${S}"/Project/GNU/${target} || die
70 - sed -i -e "s:-O2::" configure.ac || die
71 - eautoreconf
72 - done
73 -}
74 -
75 -src_configure() {
76 - local target
77 - for target in ${TARGETS}; do
78 - cd "${S}"/Project/GNU/${target} || die
79 - local args=""
80 - [[ ${target} == "GUI" ]] && args="--with-wxwidgets --with-wx-gui"
81 - econf ${args}
82 - done
83 -}
84 -
85 -src_compile() {
86 - local target
87 - for target in ${TARGETS}; do
88 - cd "${S}"/Project/GNU/${target} || die
89 - default
90 - done
91 -}
92 -src_install() {
93 - local target
94 - for target in ${TARGETS}; do
95 - cd "${S}"/Project/GNU/${target} || die
96 - default
97 - dodoc "${S}"/History_${target}.txt
98 - done
99 -}
100 -
101 -pkg_postinst() {
102 - gnome2_icon_cache_update
103 - xdg_desktop_database_update
104 -}
105 -
106 -pkg_postrm() {
107 - gnome2_icon_cache_update
108 - xdg_desktop_database_update
109 -}