9c0104a86e
OBS-URL: https://build.opensuse.org/package/show/KDE:Frameworks/kf6-kimageformats?expand=0&rev=15
121 lines
3.9 KiB
RPMSpec
121 lines
3.9 KiB
RPMSpec
#
|
|
# spec file for package kf6-kimageformats
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define qt6_version 6.6.0
|
|
|
|
%define rname kimageformats
|
|
|
|
# Fails on Leap 15 with '/usr/include/OpenEXR/ImathVec.h:228:34: error: ISO C++17 does not allow dynamic exception specification'
|
|
%if 0%{?suse_version} > 1500
|
|
%define with_exr 1
|
|
%endif
|
|
# Full KF6 version (e.g. 6.6.0)
|
|
%{!?_kf6_version: %global _kf6_version %{version}}
|
|
# Last major and minor KF6 version (e.g. 6.0)
|
|
%{!?_kf6_bugfix_version: %define _kf6_bugfix_version %(echo %{_kf6_version} | awk -F. '{print $1"."$2}')}
|
|
%bcond_without released
|
|
Name: kf6-kimageformats
|
|
Version: 6.6.0
|
|
Release: 0
|
|
Summary: Image format plugins for Qt
|
|
License: LGPL-2.1-or-later
|
|
URL: https://www.kde.org
|
|
Source: %{rname}-%{version}.tar.xz
|
|
%if %{with released}
|
|
Source1: %{rname}-%{version}.tar.xz.sig
|
|
Source2: frameworks.keyring
|
|
%endif
|
|
BuildRequires: fdupes
|
|
BuildRequires: kf6-extra-cmake-modules >= %{_kf6_bugfix_version}
|
|
%if 0%{?with_exr}
|
|
BuildRequires: openexr-devel
|
|
%endif
|
|
BuildRequires: cmake(KF6Archive) >= %{_kf6_bugfix_version}
|
|
BuildRequires: cmake(Qt6Gui) >= %{qt6_version}
|
|
BuildRequires: cmake(Qt6PrintSupport) >= %{qt6_version}
|
|
BuildRequires: cmake(Qt6Test) >= %{qt6_version}
|
|
BuildRequires: cmake(libavif) >= 0.8.2
|
|
BuildRequires: cmake(libheif) >= 1.10.0
|
|
BuildRequires: pkgconfig(libjxl) >= 0.7.0
|
|
BuildRequires: pkgconfig(libjxl_threads) >= 0.7.0
|
|
BuildRequires: pkgconfig(libraw) >= 0.20.2
|
|
BuildRequires: pkgconfig(libraw_r) >= 0.20.2
|
|
%requires_eq libQt6Gui6
|
|
%requires_eq libQt6PrintSupport6
|
|
Recommends: qt6-qtimageformats >= %{qt6_version}
|
|
|
|
%description
|
|
This framework provides additional image format plugins for QtGui. As
|
|
such it is not required for the compilation of any other software, but
|
|
may be a runtime requirement for Qt-based software to support certain
|
|
image formats.
|
|
|
|
%package eps
|
|
Summary: EPS image format plugin for Qt
|
|
Requires: ghostscript
|
|
|
|
%description eps
|
|
This plugin provides support for the EPS document format for QtGui. As
|
|
it invokes ghostscript for conversion, it should only be used in trusted
|
|
environments.
|
|
|
|
%prep
|
|
%autosetup -p1 -n %{rname}-%{version}
|
|
|
|
%build
|
|
%cmake_kf6 -DKIMAGEFORMATS_HEIF:BOOL=TRUE
|
|
|
|
%kf6_build
|
|
|
|
%install
|
|
%kf6_install
|
|
|
|
%fdupes %{buildroot}
|
|
|
|
%files
|
|
%license LICENSES/*
|
|
%dir %{_kf6_plugindir}/imageformats
|
|
%{_kf6_plugindir}/imageformats/kimg_ani.so
|
|
%{_kf6_plugindir}/imageformats/kimg_avif.so
|
|
%if 0%{?with_exr}
|
|
%{_kf6_plugindir}/imageformats/kimg_exr.so
|
|
%endif
|
|
%{_kf6_plugindir}/imageformats/kimg_hdr.so
|
|
%{_kf6_plugindir}/imageformats/kimg_heif.so
|
|
%{_kf6_plugindir}/imageformats/kimg_jxl.so
|
|
%{_kf6_plugindir}/imageformats/kimg_kra.so
|
|
%{_kf6_plugindir}/imageformats/kimg_ora.so
|
|
%{_kf6_plugindir}/imageformats/kimg_pcx.so
|
|
%{_kf6_plugindir}/imageformats/kimg_pfm.so
|
|
%{_kf6_plugindir}/imageformats/kimg_pic.so
|
|
%{_kf6_plugindir}/imageformats/kimg_psd.so
|
|
%{_kf6_plugindir}/imageformats/kimg_pxr.so
|
|
%{_kf6_plugindir}/imageformats/kimg_qoi.so
|
|
%{_kf6_plugindir}/imageformats/kimg_ras.so
|
|
%{_kf6_plugindir}/imageformats/kimg_raw.so
|
|
%{_kf6_plugindir}/imageformats/kimg_rgb.so
|
|
%{_kf6_plugindir}/imageformats/kimg_tga.so
|
|
%{_kf6_plugindir}/imageformats/kimg_xcf.so
|
|
|
|
%files eps
|
|
%license LICENSES/*
|
|
%dir %{_kf6_plugindir}/imageformats
|
|
%{_kf6_plugindir}/imageformats/kimg_eps.so
|
|
|
|
%changelog
|