commit:     c69e673bc017d9d8654d1d622b24c4a7be5bc159
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 14 12:03:43 2020 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Wed Oct 14 12:03:49 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c69e673b

media-video/mediainfo: bump to 20.09

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 media-video/mediainfo/Manifest               |  1 +
 media-video/mediainfo/mediainfo-20.09.ebuild | 80 ++++++++++++++++++++++++++++
 2 files changed, 81 insertions(+)

diff --git a/media-video/mediainfo/Manifest b/media-video/mediainfo/Manifest
index 0970e4e62a2..cb7ea6aee62 100644
--- a/media-video/mediainfo/Manifest
+++ b/media-video/mediainfo/Manifest
@@ -1,2 +1,3 @@
 DIST mediainfo_20.03.tar.xz 1983420 BLAKE2B 
d0f7557c231bc1cca261e8f002d060b0df4c2063cc32185c315ccc08a94e00fe9f5c0116f8ea65ce1a9df9f159d119264046a9bb607bd25a3b6231092c541799
 SHA512 
608b86f50139b0cbb21331922447b85dc2012b133915696ca9fceb7f524895f779c8cbfaccfa351c5b79c330587bc48d0f419f4908977fdc3eb4cd0490580399
 DIST mediainfo_20.08.tar.xz 1994480 BLAKE2B 
bab189f1cd667977c744744bb272f8010c4aec98df62d6517750f8168389fcd20cc237eee2488e27d20e434f8d139b4674f252ca791741053a32ba27893bdf18
 SHA512 
0d2c2a9987cf5b64093f9492f3c83f5aee0f372375f86511d46d30adcecddbc2e15f8d6c8888abde63a621f05e2fc1d358480bd3eba786d332fbacc868832895
+DIST mediainfo_20.09.tar.xz 1984148 BLAKE2B 
6926d9ce787b9f9e5c07fe0ddf98e186139ea25c7ab6b3573dc1732850a7f98aeefdeca2157fdcad83d652332705028df12a1cf1e6377f9c1e23b7865578cfd8
 SHA512 
b6c8bf661585fa6b8e82c7f4bafacae8505078c5c57bc1c703ed16ac237dad0829569dd33fdaaadccd394bdd93088d9b71e5ad2c2294f75aa641004ec91feca9

diff --git a/media-video/mediainfo/mediainfo-20.09.ebuild 
b/media-video/mediainfo/mediainfo-20.09.ebuild
new file mode 100644
index 00000000000..dec60a2ece9
--- /dev/null
+++ b/media-video/mediainfo/mediainfo-20.09.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+WX_GTK_VER="3.0"
+
+inherit xdg-utils autotools wxwidgets
+
+DESCRIPTION="MediaInfo supplies technical and tag information about media 
files"
+HOMEPAGE="https://mediaarea.net/mediainfo/ 
https://github.com/MediaArea/MediaInfo";
+SRC_URI="https://mediaarea.net/download/source/${PN}/${PV}/${P/-/_}.tar.xz";
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="curl mms wxwidgets"
+
+RDEPEND="sys-libs/zlib
+       >=media-libs/libzen-0.4.37
+       ~media-libs/lib${P}[curl=,mms=]
+       wxwidgets? ( x11-libs/wxGTK:${WX_GTK_VER}[X] )"
+DEPEND="${RDEPEND}
+       virtual/pkgconfig"
+
+S=${WORKDIR}/MediaInfo
+
+pkg_setup() {
+       TARGETS="CLI"
+       if use wxwidgets; then
+               TARGETS+=" GUI"
+               setup-wxwidgets
+       fi
+}
+
+src_prepare() {
+       default
+
+       local target
+       for target in ${TARGETS}; do
+               cd "${S}"/Project/GNU/${target} || die
+               sed -i -e "s:-O2::" configure.ac || die
+               eautoreconf
+       done
+}
+
+src_configure() {
+       local target
+       for target in ${TARGETS}; do
+               cd "${S}"/Project/GNU/${target} || die
+               local args=""
+               [[ ${target} == "GUI" ]] && args="--with-wxwidgets 
--with-wx-gui"
+               econf ${args}
+       done
+}
+
+src_compile() {
+       local target
+       for target in ${TARGETS}; do
+               cd "${S}"/Project/GNU/${target} || die
+               default
+       done
+}
+src_install() {
+       local target
+       for target in ${TARGETS}; do
+               cd "${S}"/Project/GNU/${target} || die
+               default
+               dodoc "${S}"/History_${target}.txt
+       done
+}
+
+pkg_postinst() {
+       xdg_icon_cache_update
+       xdg_desktop_database_update
+}
+
+pkg_postrm() {
+       xdg_icon_cache_update
+       xdg_desktop_database_update
+}

Reply via email to