adolc/adolc.spec
Ismail Dönmez 9cc4f617d6 Accepting request 628194 from home:jengelh:branches:devel:libraries:c_c++
- Repair broken description ("the package ADOL-C [end of sentence]")
- Move main description to shared library subpackage since that
  will be installed most of the time (if and when some part of
  adolc is installed at all).

OBS-URL: https://build.opensuse.org/request/show/628194
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/adolc?expand=0&rev=62
2018-08-08 18:04:51 +00:00

126 lines
3.7 KiB
RPMSpec

#
# spec file for package adolc
#
# Copyright (c) 2018 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 lname libadolc2
Name: adolc
Version: 2.6.3
Release: 0
Summary: Algorithmic Differentiation Library for C/C++
License: GPL-2.0-or-later OR EPL-1.0
Group: Development/Libraries/C and C++
Url: http://projects.coin-or.org/ADOL-C
Source0: http://www.coin-or.org/download/source/ADOL-C/ADOL-C-%{version}.tgz
Source1: baselibs.conf
BuildRequires: ColPack-devel
%if 0%{?suse_version} > 1325
BuildRequires: libboost_headers-devel
BuildRequires: libboost_system-devel
%else
BuildRequires: boost-devel
%endif
BuildRequires: gcc-c++
BuildRequires: libstdc++-devel
BuildRequires: pkg-config
%description
ADOL-C (Automatic Differentiation by OverLoading in C++) facilitates
the evaluation of first and higher derivatives of vector functions
written in C or C++.
%package -n %{lname}
Summary: Algorithmic Differentiation Library for C/C++
Group: System/Libraries
%description -n %{lname}
ADOL-C (Automatic Differentiation by OverLoading in C++) facilitates
the evaluation of first and higher derivatives of vector functions
written in C or C++. The resulting derivative evaluation routines may
be called from C/C++, Fortran, or any other language that can be
linked with C.
The numerical values of derivative vectors are obtained free of
truncation errors at a small multiple of the run time and randomly
accessed memory of the given function evaluation program.
%package devel
Summary: Development files for the Algorithmic Differentiation Library
Group: Development/Libraries/C and C++
Requires: %{lname} = %{version}
%description devel
This package provides the development environment for ADOL-C
(Automatic Differentiation by OverLoading in C++).
%package doc
Summary: Algorithmic Differentiation Library for C/C++ -- documentation
Group: Documentation/Other
%if 0%{?suse_version}
BuildArch: noarch
%endif
%description doc
This package provides the user's manual for ADOL-C.
%prep
%setup -q -n ADOL-C-%{version}
%build
# autoreconf -v --install --force
%configure
make %{?_smp_mflags}
# pushd ADOL-C/doc
# for ((i=0; i < 3; i++)); do
# pdflatex adolc-manual.tex &>/dev/null
# done
%install
make DESTDIR=%{buildroot} install %{?_smp_mflags}
find %{buildroot} -type f "(" -name "*.a" -o -name "*.la" ")" -delete -print
%post -n %{lname} -p /sbin/ldconfig
%postun -n %{lname} -p /sbin/ldconfig
%files -n %{lname}
%license LICENSE
%{_libdir}/libadolc.so.*
%files devel
%dir %{_includedir}/adolc
%dir %{_includedir}/adolc/drivers
%dir %{_includedir}/adolc/internal
%dir %{_includedir}/adolc/lie
%dir %{_includedir}/adolc/sparse
%dir %{_includedir}/adolc/tapedoc
%{_includedir}/adolc/*.h
%{_includedir}/adolc/drivers/*.h
%{_includedir}/adolc/internal/*.h
%{_includedir}/adolc/lie/drivers.h
%{_includedir}/adolc/sparse/*.h
%{_includedir}/adolc/tapedoc/*.h
%{_libdir}/libadolc.so
%{_libdir}/pkgconfig/adolc.pc
%files doc
%doc README AUTHORS BUGS TODO
%doc ADOL-C/doc/adolc-manual.pdf
%doc ADOL-C/doc/short_ref.pdf
%license LICENSE
%changelog