#
# spec file for package libvisio
#
# Copyright (c) 2012 SUSE LINUX Products 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 libvisio-0_0-0

Name:           libvisio
Version:        0.0.26
Release:        0
License:        MPL-1.1 or GPL-2.0+ or LGPL-2.1+
Summary:        Library for parsing the MS Visio file format structure
Url:            http://www.freedesktop.org/wiki/Software/libvisio
Group:          Productivity/Publishing/Word
Source0:        http://dev-www.libreoffice.org/src/%{name}-%{version}.tar.xz
BuildRequires:  boost-devel
%if 0%{?suse_version} > 1020
%define build_doc       1
BuildRequires:  doxygen
%else
%define build_doc       0
%endif
BuildRequires:  fdupes
BuildRequires:  gcc-c++
BuildRequires:  libicu-devel
BuildRequires:  libwpd-devel >= 0.9.0
BuildRequires:  libwpg-devel >= 0.2.0
BuildRequires:  libxml2-devel
BuildRequires:  zlib-devel
BuildRequires:  gperf
BuildRequires:  pkgconfig
BuildRequires:  xz
BuildRoot:      %{_tmppath}/%{name}-%{version}-build

%description
libvisio is a library for parsing the MS Visio file format structure. It is
cross-platform, at the moment it can be build on Microsoft Windows and Linux.

%package -n %{libname}
Summary:        Library for parsing the MS Visio file format structure
Group:          System/Libraries

%description -n %{libname}
libvisio is a library for parsing the MS Visio file format structure. It is
cross-platform, at the moment it can be build on Microsoft Windows and Linux.

%package devel
Summary:        Files for Developing with libvisio
Group:          Development/Libraries/C and C++
Requires:       %{libname} = %{version}
Requires:       libwpd-devel
Requires:       libwpg-devel

%description devel
libvisio is a library for parsing the MS Visio file format structure. It is
cross-platform, at the moment it can be build on Microsoft Windows and Linux.

This package contains the libvisio development files.

%if %build_doc
%package devel-doc
Summary:        Documentation for the libvisio API
Group:          Documentation/HTML

%description devel-doc
This package contains documentation for the libvisio API.
%endif

%package tools
Summary:        Tools to work with documents in MS Visio file-format
Group:          Productivity/Publishing/Word

%description tools
This package contains tools to work with documents in MS Visio file-format.

%prep
%setup -q

%build
%configure \
	--disable-werror \
	--disable-static \
	--docdir=%{_docdir}/%{name}-devel/html
make %{?_smp_mflags}

%install
make DESTDIR=%{buildroot} install

rm %{buildroot}%{_libdir}/*.la

cp -p AUTHORS COPYING.* ChangeLog %{buildroot}%{_docdir}/%{name}-devel/

%fdupes -s %{buildroot}

%post -n %{libname} -p /sbin/ldconfig

%postun -n %{libname} -p /sbin/ldconfig

%files -n %{libname}
%defattr(-,root,root)
%{_libdir}/*.so.0*

%files devel
%defattr(-,root,root)
%doc %dir %{_docdir}/%{name}-devel/
%doc %{_docdir}/%{name}-devel/[A-Z]*
%{_libdir}/*.so
%{_libdir}/pkgconfig/libvisio*.pc
%{_includedir}/libvisio-*

%if %build_doc != 0
%files devel-doc
%defattr(-,root,root,-)
%doc %{_docdir}/%{name}-devel/html/
%endif

%files tools
%defattr(-,root,root)
%doc AUTHORS COPYING.* ChangeLog
%{_bindir}/*

%changelog