diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-12-18 13:57:50 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-12-18 13:58:29 +0100 |
commit | 14f33668f77134e9d2a4121bcbab3bdd8a15d303 (patch) | |
tree | 0908182155d3a0b97ffcd46e57c931b13de8ecab /dev-qt/qtimageformats | |
parent | media-gfx/digikam: 6.4.0 version bump (diff) | |
download | gentoo-14f33668f77134e9d2a4121bcbab3bdd8a15d303.tar.gz gentoo-14f33668f77134e9d2a4121bcbab3bdd8a15d303.tar.bz2 gentoo-14f33668f77134e9d2a4121bcbab3bdd8a15d303.zip |
dev-qt: Add Qt 5.14.0
Package-Manager: Portage-2.3.82, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-qt/qtimageformats')
-rw-r--r-- | dev-qt/qtimageformats/Manifest | 1 | ||||
-rw-r--r-- | dev-qt/qtimageformats/qtimageformats-5.14.0.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-qt/qtimageformats/Manifest b/dev-qt/qtimageformats/Manifest index 3c807e740041..b96bc9b55720 100644 --- a/dev-qt/qtimageformats/Manifest +++ b/dev-qt/qtimageformats/Manifest @@ -1,3 +1,4 @@ DIST qtimageformats-everywhere-src-5.12.3.tar.xz 1793076 BLAKE2B 59dced7576a50441c704c8debf4a86bb4db7cfb752922020d2932ee2295805b27ece866f3f86e3f89b308e28cfb720fb9c6fa782f29f45e1c3b14fd733096c87 SHA512 59cc9df597e6ac31b10ff7440b0793af13ee84a1b363db631a7aeea7413e650a99a42e8c3f4633926ec93d4ac4c2532674ea27df325ba98132bea83c81d6e6cc DIST qtimageformats-everywhere-src-5.12.5.tar.xz 1795824 BLAKE2B 3b5d3a4be8933d1af7d0fb6feb1cd37318cbc69840cc82de50fb81f63156251f768347bf5ae31b6f255dc9e02a53d64ab98aef8a27749331071482d729ac811d SHA512 9fa76b7eec083596c45f68642b49dc88c2759a28cb9359935c3a64604082acea9adecee49bb0828cc587b86d469aec7169f8f72f83a15194c4fc10f0ca25fae0 DIST qtimageformats-everywhere-src-5.13.2.tar.xz 1803796 BLAKE2B 771b883f8b415a7eb7562beaacf28cc6acfd7ce7828e4bdb4c7fe12bc283bbdb79742e15152b0baf0fd8cb0d46bfe88577bace6b13162396f1211aaf79c0e727 SHA512 e76d7efaeab81c4eaf0f41dad150ae6b36ef2246993d344e4611ed865d62a8ac93cca5f62a2c94a97bf16333344490b5a51ca8de1c7eeb460c9ae321f759f4e6 +DIST qtimageformats-everywhere-src-5.14.0.tar.xz 1809880 BLAKE2B 0aca299ebfeb7e70bb7815a204628b874ed2f06f1aae48c2a223e6604f7e20bc809753833573c86905df1a65327a5e0bb50ae3f7a93d6dde9441ef9f5c2ad10b SHA512 e674c461b5880a2df17f06726c647dc89837c7746dbd0278a6de8f6291e92ef63ae2ccb3a3288951196e03156ae112e4d8d55ae692a8b6a608c7441fb624d28b diff --git a/dev-qt/qtimageformats/qtimageformats-5.14.0.ebuild b/dev-qt/qtimageformats/qtimageformats-5.14.0.ebuild new file mode 100644 index 000000000000..a7eace7d6d78 --- /dev/null +++ b/dev-qt/qtimageformats/qtimageformats-5.14.0.ebuild @@ -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 +} |