mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 08:03:16 -04:00
I no longer install AVIF mimetypes because they were added to shared-mime-info-2.0 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Daniel Novomesky <dnovomesky@gmail.com>
31 lines
728 B
Bash
31 lines
728 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="7"
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="Qt plug-in to allow Qt and KDE based applications to read/write AVIF images."
|
|
HOMEPAGE="https://github.com/novomesk/qt-avif-image-plugin"
|
|
|
|
if [[ "${PV}" == *9999* ]]; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/novomesk/qt-avif-image-plugin.git"
|
|
else
|
|
SRC_URI="https://github.com/novomesk/qt-avif-image-plugin/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS=""
|
|
fi
|
|
|
|
LICENSE="BSD-2"
|
|
SLOT="0"
|
|
IUSE=""
|
|
|
|
DEPEND=">=dev-qt/qtgui-5.12.3:5
|
|
>=media-libs/libavif-0.8.0
|
|
>=x11-misc/shared-mime-info-2.0-r1
|
|
"
|
|
|
|
BDEPEND=">=kde-frameworks/extra-cmake-modules-5.70:5"
|
|
|
|
RDEPEND="${DEPEND}"
|