File dcmtk.spec of Package dcmtk
#
# spec file for package dcmtk
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/
#
%define libname libdcmtk3_6
Name: dcmtk
Version: 3.6.2
Release: 0
Summary: DICOM Toolkit
License: BSD-3-Clause and Apache-2.0
Group: Productivity/Scientific/Other
Url: http://dicom.offis.de/dcmtk.php.en
Source0: ftp://dicom.offis.de/pub/dicom/offis/software/dcmtk/dcmtk362/%{name}-%{version}.tar.gz
# PATCH-FIX-OPENSUSE dcmtk-3.6.0-0002-Install-libs-in-the-correct-arch-dir.patch asterios.dramis@gmail.com -- Install libs in the correct arch dir
Patch1: dcmtk-3.6.0-0002-Install-libs-in-the-correct-arch-dir.patch
# PATCH-FIX-OPENSUSE dcmtk-fix-DCMTKTargets.cmake.patch -- Do not track executables to be able to use dcmtk-devel without dcmtk package
Patch2: dcmtk-fix-DCMTKTargets.cmake.patch
BuildRequires: cmake
BuildRequires: doxygen
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: libjpeg-devel
BuildRequires: libopenssl-devel
BuildRequires: libpng-devel
BuildRequires: libsndfile-devel
BuildRequires: libtiff-devel
BuildRequires: tcpd-devel
BuildRequires: zlib-devel
BuildRequires: pkgconfig(libxml-2.0)
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
DCMTK is a collection of libraries and applications implementing large
parts the DICOM standard.
%package devel
Summary: Development files for dcmtk
Group: Development/Libraries/C and C++
Requires: %{libname} = %{version}
%description devel
This package provides development libraries and headers needed to build
software using dcmtk.
%package -n %{libname}
Summary: DICOM Toolkit
Group: System/Libraries
%description -n %{libname}
DCMTK is a collection of libraries and applications implementing large
parts the DICOM standard.
%prep
%setup -q
%patch1 -p1
%patch2 -p1
%build
mkdir build
cd build
export CFLAGS="%{optflags}"
export CXXFLAGS="%{optflags}"
cmake \
-DCMAKE_INSTALL_PREFIX=%{_prefix} \
-DINSTALL_DOCDIR=%{_docdir}/dcmtk \
-DINSTALL_HTMDIR=%{_docdir}/dcmtk/html \
-DBUILD_SHARED_LIBS=ON \
%if "%{_lib}" == "lib64"
-DLIB_SUFFIX=64 \
%endif
-DDCMTK_WITH_XML=ON \
-DDCMTK_WITH_OPENSSL=ON \
-DDCMTK_WITH_SNDFILE=ON \
-DDCMTK_WITH_ZLIB=ON \
-DDCMTK_WITH_CHARLS=ON \
-DCMAKE_BUILD_TYPE=release ..
make %{?_smp_mflags} VERBOSE=1
cd ..
%install
cd build
%make_install
cd ..
# Remove zero-length file (fix rpmlint warning)
rm -f %{buildroot}%{_datadir}/dcmtk/wlistdb/OFFIS/lockfile
# Move configuration files from /usr/etc to /etc/
mv %{buildroot}%{_prefix}/etc %{buildroot}
# Move doc files from /usr/share/doc/dcmtk to /usr/share/doc/packages/dcmtk/
mkdir %{buildroot}%{_docdir}
mv %{buildroot}%{_datadir}/doc/%{name} %{buildroot}%{_docdir}
# Install README file to documentation
install -pm 0644 README %{buildroot}%{_docdir}/dcmtk/
%fdupes -s %{buildroot}
%post -n %{libname} -p /sbin/ldconfig
%postun -n %{libname} -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%dir %{_sysconfdir}/dcmtk
%config(noreplace) %{_sysconfdir}/dcmtk/*.cfg
%{_bindir}/*
%{_datadir}/dcmtk/
%doc %{_docdir}/dcmtk/
%doc %{_mandir}/man1/*
%files devel
%defattr(-,root,root,-)
%{_includedir}/dcmtk/
%{_libdir}/*.so
%{_libdir}/cmake/dcmtk/
%files -n %{libname}
%defattr(-,root,root,-)
%{_libdir}/*.so.3.6*
%{_libdir}/*.so.12
%changelog