media-video/mediainfo: version bump to 19.09
authorTim Harder <radhermit@gentoo.org>
Fri, 13 Sep 2019 16:38:12 +0000 (10:38 -0600)
committerTim Harder <radhermit@gentoo.org>
Fri, 13 Sep 2019 16:44:44 +0000 (10:44 -0600)
Signed-off-by: Tim Harder <radhermit@gentoo.org>
media-video/mediainfo/Manifest
media-video/mediainfo/mediainfo-19.09.ebuild [new file with mode: 0644]

index 1e9505e027221cba34dfa27c862fa8b2247038e6..b119b1ec7e90748bf161f7636b9dd5bad0a3ed25 100644 (file)
@@ -1 +1,2 @@
 DIST mediainfo_19.07.tar.xz 1903620 BLAKE2B 68487713e0c540022d2a5ee8416cb8e1c87ed2a4479f8d7c247d75137a62d3ae2994d02cd8853080837a23d582ce4acab497646bf2307a0b2b4d398635738baa SHA512 ef543b2b3fa61347adaa510fc3b051ff148e24ef6461e25b9f1d158f3c4b57ce96826d0c0e8ae46996092e0eb84e99308ba87d95dd0392b99f05b704438c5983
+DIST mediainfo_19.09.tar.xz 1906920 BLAKE2B 926a13dd4b059eb613acf89b3b3e12918a86ad45c8551948be2d55478bbe94a93a3fdf7a49fbc087e44fd81232a9fa85cb6dfbd25efb11b9997b1f90b49090e4 SHA512 ddcfa92d822a28fa804d5bddc0d29bdb8cff3779b924c2caef0e59b0f79f857a4140dc94bd2ed9158954f6400778572975ac63f45ee2b87664e3e3b5ed9327a0
diff --git a/media-video/mediainfo/mediainfo-19.09.ebuild b/media-video/mediainfo/mediainfo-19.09.ebuild
new file mode 100644 (file)
index 0000000..255a301
--- /dev/null
@@ -0,0 +1,80 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+WX_GTK_VER="3.0"
+
+inherit gnome2-utils 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() {
+       gnome2_icon_cache_update
+       xdg_desktop_database_update
+}
+
+pkg_postrm() {
+       gnome2_icon_cache_update
+       xdg_desktop_database_update
+}