diff options
author | 2024-07-05 19:28:33 +0200 | |
---|---|---|
committer | 2024-07-05 19:48:54 +0200 | |
commit | a9fcf0343f57dc4217642142c84335e8d78963ea (patch) | |
tree | 48560585809e1981a73f99f9fe53e6f4a98e1e50 /media-video/mediainfo/mediainfo-22.09.ebuild | |
parent | media-video/dvdstyler: drop 3.2.1 (diff) | |
download | gentoo-a9fcf0343f57dc4217642142c84335e8d78963ea.tar.gz gentoo-a9fcf0343f57dc4217642142c84335e8d78963ea.tar.bz2 gentoo-a9fcf0343f57dc4217642142c84335e8d78963ea.zip |
media-video/mediainfo: drop 22.09, 23.03, 23.04
Bug: https://bugs.gentoo.org/917612
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'media-video/mediainfo/mediainfo-22.09.ebuild')
-rw-r--r-- | media-video/mediainfo/mediainfo-22.09.ebuild | 89 |
1 files changed, 0 insertions, 89 deletions
diff --git a/media-video/mediainfo/mediainfo-22.09.ebuild b/media-video/mediainfo/mediainfo-22.09.ebuild deleted file mode 100644 index 68f70427ddc8..000000000000 --- a/media-video/mediainfo/mediainfo-22.09.ebuild +++ /dev/null @@ -1,89 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -# These must be bumped together: -# - media-libs/libzen (if a release is available) -# - media-libs/libmediainfo -# - media-video/mediainfo - -WX_GTK_VER="3.0-gtk3" -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" -S="${WORKDIR}/MediaInfo" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86" -IUSE="curl mms wxwidgets" - -RDEPEND="~media-libs/libmediainfo-${PV}[curl=,mms=] - >=media-libs/libzen-0.4.37 - sys-libs/zlib - wxwidgets? ( x11-libs/wxGTK:${WX_GTK_VER}[X] )" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -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 -} |