You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
166 lines
4.1 KiB
166 lines
4.1 KiB
# Default version for this component
|
|
%define tde_pkg libkdcraw
|
|
%define tde_version 3.5.13.2
|
|
|
|
# TDE specific building variables
|
|
%define tde_bindir %{tde_prefix}/bin
|
|
%define tde_datadir %{tde_prefix}/share
|
|
%define tde_docdir %{tde_datadir}/doc
|
|
%define tde_includedir %{tde_prefix}/include
|
|
%define tde_libdir %{tde_prefix}/%{_lib}
|
|
%define tde_mandir %{tde_datadir}/man
|
|
|
|
%define tde_tdeappdir %{tde_datadir}/applications/kde
|
|
%define tde_tdedocdir %{tde_docdir}/tde
|
|
%define tde_tdeincludedir %{tde_includedir}/tde
|
|
%define tde_tdelibdir %{tde_libdir}/trinity
|
|
|
|
%define _docdir %{tde_docdir}
|
|
|
|
|
|
Name: trinity-%{tde_pkg}
|
|
Summary: Raw picture decoding C++ library (runtime) [Trinity]
|
|
|
|
Epoch: 1
|
|
Version: 0.1.9
|
|
Release: %{?!preversion:1}%{?preversion:0_%{preversion}}%{?dist}
|
|
|
|
License: GPLv2+
|
|
Group: Environment/Libraries
|
|
|
|
Vendor: Trinity Project
|
|
Packager: Francois Andriot <francois.andriot@free.fr>
|
|
URL: http://www.trinitydesktop.org/
|
|
|
|
Prefix: %{_prefix}
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
Source0: %{name}-%{tde_version}%{?preversion:~%{preversion}}.tar.gz
|
|
|
|
BuildRequires: trinity-tqtinterface-devel >= %{tde_version}
|
|
BuildRequires: trinity-arts-devel >= 1:1.5.10
|
|
BuildRequires: trinity-tdelibs-devel >= %{tde_version}
|
|
BuildRequires: desktop-file-utils
|
|
%if 0%{?suse_version}
|
|
BuildRequires: liblcms-devel
|
|
%else
|
|
BuildRequires: lcms-devel
|
|
%endif
|
|
BuildRequires: libjpeg-devel
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: gettext
|
|
|
|
# AUTOTOOLS
|
|
BuildRequires: automake autoconf libtool
|
|
%if 0%{?mgaversion} || 0%{?mdkversion}
|
|
BuildRequires: %{_lib}ltdl-devel
|
|
%endif
|
|
%if 0%{?fedora} || 0%{?rhel} >= 5 || 0%{?suse_version} >= 1220
|
|
BuildRequires: libtool-ltdl-devel
|
|
%endif
|
|
|
|
%description
|
|
C++ interface around dcraw binary program used to decode RAW
|
|
picture files.
|
|
This library is used by kipi-plugins, digiKam and others kipi host programs.
|
|
libkdcraw contains the library of libkdcraw.
|
|
|
|
%package devel
|
|
Group: Development/Libraries
|
|
Summary: RAW picture decoding C++ library (development) [Trinity]
|
|
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
%description devel
|
|
Libkdcraw is a C++ interface around dcraw binary program used to
|
|
decode Raw picture files.
|
|
libkdcraw-devel contains development files and documentation. The
|
|
library documentation is available on kdcraw.h header file.
|
|
|
|
|
|
%if 0%{?suse_version} || 0%{?pclinuxos}
|
|
%debug_package
|
|
%endif
|
|
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{tde_version}%{?preversion:~%{preversion}}
|
|
|
|
%__cp -f "/usr/share/aclocal/libtool.m4" "admin/libtool.m4.in"
|
|
%__cp -f "/usr/share/libtool/"*"/ltmain.sh" "admin/ltmain.sh" || %__cp -f "/usr/share/libtool/ltmain.sh" "admin/ltmain.sh"
|
|
%__make -f "admin/Makefile.common"
|
|
|
|
|
|
%build
|
|
unset QTDIR || : ; source /etc/profile.d/qt3.sh
|
|
export PATH="%{tde_bindir}:${PATH}"
|
|
|
|
%configure \
|
|
--prefix=%{tde_prefix} \
|
|
--exec-prefix=%{tde_prefix} \
|
|
--datadir=%{tde_datadir} \
|
|
--libdir=%{tde_libdir} \
|
|
--includedir=%{tde_tdeincludedir} \
|
|
\
|
|
--disable-dependency-tracking \
|
|
--disable-debug \
|
|
--enable-new-ldflags \
|
|
--enable-final \
|
|
--enable-closure \
|
|
--enable-rpath
|
|
|
|
%__make %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
export PATH="%{tde_bindir}:${PATH}"
|
|
%__rm -rf %{buildroot}
|
|
%__make install DESTDIR=%{buildroot}
|
|
|
|
%find_lang %{tde_pkg}
|
|
|
|
# RHEL4: pkgconfig files do not support 'URL' keyword .
|
|
%if 0%{?rhel} == 4
|
|
%__sed -i %{?buildroot}%{tde_libdir}/pkgconfig/*.pc -e "s/^URL: /#URL: /"
|
|
%endif
|
|
|
|
|
|
%clean
|
|
%__rm -rf %{buildroot}
|
|
|
|
|
|
%post
|
|
for f in hicolor ; do
|
|
touch --no-create %{tde_datadir}/icons/${f} 2> /dev/null ||:
|
|
gtk-update-icon-cache -q %{tde_datadir}/icons/${f} 2> /dev/null ||:
|
|
done
|
|
/sbin/ldconfig || :
|
|
|
|
%postun
|
|
for f in hicolor ; do
|
|
touch --no-create %{tde_datadir}/icons/${f} 2> /dev/null ||:
|
|
gtk-update-icon-cache -q %{tde_datadir}/icons/${f} 2> /dev/null ||:
|
|
done
|
|
/sbin/ldconfig || :
|
|
|
|
%post devel
|
|
/sbin/ldconfig || :
|
|
|
|
%postun devel
|
|
/sbin/ldconfig || :
|
|
|
|
|
|
%files -f %{tde_pkg}.lang
|
|
%defattr(-,root,root,-)
|
|
%{tde_libdir}/libkdcraw.so.4
|
|
%{tde_libdir}/libkdcraw.so.4.0.3
|
|
%{tde_datadir}/icons/hicolor/*/apps/kdcraw.png
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
%{tde_libdir}/libkdcraw.so
|
|
%{tde_libdir}/libkdcraw.la
|
|
%{tde_tdeincludedir}/libkdcraw/
|
|
%{tde_libdir}/pkgconfig/libkdcraw.pc
|
|
|
|
%changelog
|