dev-qt/qtimageformats: Drop USE jpeg2k, fix USE mng
authorAndreas Sturmlechner <asturm@gentoo.org>
Sun, 25 Aug 2019 12:55:14 +0000 (14:55 +0200)
committerAndreas Sturmlechner <asturm@gentoo.org>
Sun, 25 Aug 2019 12:57:22 +0000 (14:57 +0200)
Package-Manager: Portage-2.3.73, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
dev-qt/qtimageformats/qtimageformats-5.12.4-r1.ebuild [new file with mode: 0644]

diff --git a/dev-qt/qtimageformats/qtimageformats-5.12.4-r1.ebuild b/dev-qt/qtimageformats/qtimageformats-5.12.4-r1.ebuild
new file mode 100644 (file)
index 0000000..a7eace7
--- /dev/null
@@ -0,0 +1,30 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit qt5-build
+
+DESCRIPTION="Additional format plugins for the Qt image I/O system"
+
+if [[ ${QT5_BUILD_TYPE} == release ]]; then
+       KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~sparc ~x86"
+fi
+
+IUSE="mng"
+
+DEPEND="
+       ~dev-qt/qtcore-${PV}
+       ~dev-qt/qtgui-${PV}
+       media-libs/libwebp:=
+       media-libs/tiff:0
+       mng? ( media-libs/libmng:= )
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+       sed -e 's/qtConfig(jasper)/false:/' \
+               -i src/plugins/imageformats/imageformats.pro || die
+       qt_use_disable_config mng mng src/plugins/imageformats/imageformats.pro
+
+       qt5-build_src_configure
+}