2024-01-06 00:50:30 +01:00
|
|
|
%define majver %(echo %version | cut -d. -f1-2)
|
|
|
|
Name: kconfig
|
2024-01-06 00:50:30 +01:00
|
|
|
Version: 5.9.0
|
|
|
|
Release: 3mamba
|
2024-01-06 00:50:30 +01:00
|
|
|
Summary: KDE Frameworks advanced configuration system
|
|
|
|
Group: Graphical Desktop/Applications/Configuration
|
|
|
|
Vendor: openmamba
|
|
|
|
Distribution: openmamba
|
|
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
|
|
URL: http://www.kde.org
|
2024-01-06 00:50:30 +01:00
|
|
|
Source: http://download.kde.org/stable/frameworks/%{majver}/kconfig-%{version}.tar.xz
|
|
|
|
Source1: macros.kde5
|
2024-01-06 00:50:30 +01:00
|
|
|
License: GPL
|
|
|
|
## AUTOBUILDREQ-BEGIN
|
|
|
|
BuildRequires: glibc-devel
|
|
|
|
BuildRequires: libgcc
|
|
|
|
BuildRequires: libqt5-devel
|
|
|
|
BuildRequires: libstdc++6-devel
|
|
|
|
## AUTOBUILDREQ-END
|
|
|
|
BuildRequires: automoc4
|
|
|
|
BuildRequires: cmake
|
|
|
|
BuildRequires: extra-cmake-modules
|
2024-01-06 00:50:30 +01:00
|
|
|
BuildRequires: rpm-macros-kde5
|
|
|
|
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
|
2024-01-06 00:50:30 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
|
|
|
|
|
|
%description
|
|
|
|
KConfig provides an advanced configuration system. It is made of two parts:
|
|
|
|
KConfigCore and KConfigGui.
|
|
|
|
|
|
|
|
KConfigCore provides access to the configuration files themselves. It features:
|
|
|
|
|
|
|
|
- Code generation: describe your configuration in an XML file, and use `kconfig_compiler to generate classes that read and write configuration entries.
|
|
|
|
- Cascading configuration files (global settings overridden by local settings).
|
|
|
|
- Optional shell expansion support
|
|
|
|
- The ability to lock down configuration options
|
|
|
|
|
|
|
|
KConfigGui provides a way to hook widgets to the configuration so that they are automatically initialized from the configuration and automatically propagate their changes to their respective configuration files.
|
|
|
|
|
2024-01-06 00:50:30 +01:00
|
|
|
%package -n lib%{name}
|
|
|
|
Group: System/Libraries
|
|
|
|
Summary: Shared libraries for %{name}
|
2024-01-06 00:50:30 +01:00
|
|
|
|
2024-01-06 00:50:30 +01:00
|
|
|
%description -n lib%{name}
|
|
|
|
This package contains shared libraries for %{name}.
|
|
|
|
|
|
|
|
%package -n lib%{name}-devel
|
2024-01-06 00:50:30 +01:00
|
|
|
Group: Development/Libraries
|
|
|
|
Summary: Development files for %{name}
|
2024-01-06 00:50:30 +01:00
|
|
|
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
|
|
|
|
Provides: %{name}-devel
|
|
|
|
Obsoletes: %{name}-devel
|
|
|
|
Requires: rpm-macros-kde5
|
2024-01-06 00:50:30 +01:00
|
|
|
|
2024-01-06 00:50:30 +01:00
|
|
|
%description -n lib%{name}-devel
|
2024-01-06 00:50:30 +01:00
|
|
|
This package contains libraries and header files for developing applications that use %{name}.
|
|
|
|
|
|
|
|
%debug_package
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
2024-01-06 00:50:30 +01:00
|
|
|
%cmake_kde5 -d build \
|
|
|
|
-DKDE_INSTALL_LIBEXECDIR:PATH=%{_libexecdir}
|
|
|
|
|
|
|
|
#-d build \
|
|
|
|
# -DCMAKE_BUILD_TYPE=Release \
|
|
|
|
# -DLIB_INSTALL_DIR=%{_lib} \
|
|
|
|
# -DLIBEXEC_INSTALL_DIR=%{_lib} \
|
|
|
|
# -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \
|
|
|
|
# -DBUILD_TESTING=OFF
|
2024-01-06 00:50:30 +01:00
|
|
|
|
|
|
|
%make
|
|
|
|
|
|
|
|
%install
|
|
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
%makeinstall -C build
|
|
|
|
|
2024-01-06 00:50:30 +01:00
|
|
|
#install -D -m0644 %{SOURCE1} %{buildroot}%{_sysconfdir}/rpm/macros.kde5
|
|
|
|
|
2024-01-06 00:50:30 +01:00
|
|
|
%find_lang kconfig5_qt --all-name --with-kde || touch %{name}.lang
|
|
|
|
|
|
|
|
%clean
|
|
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
|
2024-01-06 00:50:30 +01:00
|
|
|
%post -n lib%{name}
|
2024-01-06 00:50:30 +01:00
|
|
|
/sbin/ldconfig
|
|
|
|
exit 0
|
|
|
|
|
2024-01-06 00:50:30 +01:00
|
|
|
%postun -n lib%{name}
|
2024-01-06 00:50:30 +01:00
|
|
|
/sbin/ldconfig
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
%files -f %{name}.lang
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_bindir}/kconfig_compiler_kf5
|
|
|
|
%{_bindir}/kreadconfig5
|
|
|
|
%{_bindir}/kwriteconfig5
|
|
|
|
%{_datadir}/locale/*/LC_MESSAGES/kconfig5_qt.qm
|
|
|
|
%doc COPYING.LIB
|
|
|
|
|
2024-01-06 00:50:30 +01:00
|
|
|
%files -n lib%{name}
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_libdir}/libKF5ConfigCore.so.*
|
|
|
|
%{_libdir}/libKF5ConfigGui.so.*
|
|
|
|
%{_kde5_libexecdir}/kconf_update
|
|
|
|
|
|
|
|
%files -n lib%{name}-devel
|
2024-01-06 00:50:30 +01:00
|
|
|
%defattr(-,root,root)
|
|
|
|
%dir %{_includedir}/KF5/KConfigCore/
|
|
|
|
%{_includedir}/KF5/KConfigCore/*
|
|
|
|
%dir %{_includedir}/KF5/KConfigGui
|
|
|
|
%{_includedir}/KF5/KConfigGui/*
|
|
|
|
%{_includedir}/KF5/kconfig_version.h
|
|
|
|
%dir %{_libdir}/cmake/KF5Config
|
|
|
|
%{_libdir}/cmake/KF5Config/KF5Config*.cmake
|
|
|
|
%{_libdir}/libKF5ConfigCore.so
|
|
|
|
%{_libdir}/libKF5ConfigGui.so
|
|
|
|
%{_libdir}/qt5/mkspecs/modules/qt_KConfigCore.pri
|
|
|
|
%{_libdir}/qt5/mkspecs/modules/qt_KConfigGui.pri
|
|
|
|
|
|
|
|
%changelog
|
2024-01-06 00:50:30 +01:00
|
|
|
* Sat Apr 11 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 5.9.0-3mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Sat Apr 11 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 5.9.0-2mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Sat Apr 11 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 5.9.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Thu Apr 02 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 5.8.0-2mamba
|
|
|
|
- remove rpm macros.kde5 and require rpm-macros-kde5
|
|
|
|
|
|
|
|
* Thu Mar 19 2015 Automatic Build System <autodist@mambasoft.it> 5.8.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
* Thu Mar 12 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 5.7.0-2mamba
|
|
|
|
- add libkconfig subpackage
|
|
|
|
- provide /etc/rpm/macros.kde5
|
|
|
|
|
|
|
|
* Sun Feb 22 2015 Automatic Build System <autodist@mambasoft.it> 5.7.0-1mamba
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
2024-01-06 00:50:30 +01:00
|
|
|
* Fri Feb 06 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 5.6.0-1mamba
|
|
|
|
- package created using the webbuild interface
|