mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 20:13:01 -04:00
Package-Manager: Portage-3.0.4, Repoman-2.3.23 Signed-off-by: Daniel Novomesky <dnovomesky@gmail.com>
31 lines
734 B
Bash
31 lines
734 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="~amd64"
|
|
fi
|
|
|
|
LICENSE="BSD-2"
|
|
SLOT="0"
|
|
IUSE=""
|
|
|
|
DEPEND=">=dev-qt/qtgui-5.12.3:5
|
|
>=media-libs/libavif-0.8.1
|
|
>=x11-misc/shared-mime-info-2.0-r1
|
|
"
|
|
|
|
BDEPEND=">=kde-frameworks/extra-cmake-modules-5.70:5"
|
|
|
|
RDEPEND="${DEPEND}"
|