diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2023-06-12 18:57:43 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2023-06-12 19:44:50 +0200 |
commit | 016f88bd556c8726f9d3e72d3d9ba0e167e5b26a (patch) | |
tree | 10e2967664e745ac36a681c5487d036171b765b1 /media-gfx/qimgv | |
parent | media-gfx/qimgv: Fix build with >=exiv2-0.28, fix apng can't play (diff) | |
download | gentoo-016f88bd556c8726f9d3e72d3d9ba0e167e5b26a.tar.gz gentoo-016f88bd556c8726f9d3e72d3d9ba0e167e5b26a.tar.bz2 gentoo-016f88bd556c8726f9d3e72d3d9ba0e167e5b26a.zip |
media-gfx/qimgv: drop 1.0.2-r1
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-gfx/qimgv')
-rw-r--r-- | media-gfx/qimgv/qimgv-1.0.2-r1.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/media-gfx/qimgv/qimgv-1.0.2-r1.ebuild b/media-gfx/qimgv/qimgv-1.0.2-r1.ebuild deleted file mode 100644 index d988cd8f2de4..000000000000 --- a/media-gfx/qimgv/qimgv-1.0.2-r1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake xdg - -DESCRIPTION="A cross-platform image viewer with webm support, written in qt5" -HOMEPAGE="https://github.com/easymodo/qimgv" -SRC_URI="https://github.com/easymodo/qimgv/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3 BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="exif kde opencv video" - -BDEPEND=" - virtual/pkgconfig -" -DEPEND=" - dev-qt/qtconcurrent:5 - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtprintsupport:5 - dev-qt/qtsvg:5 - dev-qt/qtwidgets:5 - exif? ( media-gfx/exiv2:= ) - kde? ( kde-frameworks/kwindowsystem:5 ) - opencv? ( media-libs/opencv:= ) - video? ( media-video/mpv:=[libmpv] ) -" -RDEPEND=" - ${DEPEND} -" - -PATCHES=( - "${FILESDIR}"/${P}-libmpv-api2.patch -) - -src_configure() { - local mycmakeargs=( - -DEXIV2=$(usex exif) - -DKDE_SUPPORT=$(usex kde) - -DOPENCV_SUPPORT=$(usex opencv) - -DVIDEO_SUPPORT=$(usex video) - ) - cmake_src_configure -} |