2006-12-18 23:16:39 +00:00
|
|
|
#
|
2011-04-19 11:50:39 +00:00
|
|
|
# spec file for package gmp
|
2006-12-18 23:16:39 +00:00
|
|
|
#
|
2013-02-13 09:26:00 +00:00
|
|
|
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2006-12-18 23:16:39 +00:00
|
|
|
#
|
2008-08-21 15:46:27 +00:00
|
|
|
# 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.
|
|
|
|
|
2006-12-18 23:16:39 +00:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
2012-05-07 09:12:04 +00:00
|
|
|
|
2006-12-18 23:16:39 +00:00
|
|
|
Name: gmp
|
|
|
|
BuildRequires: gcc-c++
|
2008-11-28 14:01:57 +00:00
|
|
|
# bug437293
|
|
|
|
%ifarch ppc64
|
|
|
|
Obsoletes: gmp-64bit
|
|
|
|
%endif
|
2013-02-13 09:26:00 +00:00
|
|
|
Version: 5.1.1
|
2012-01-30 09:16:08 +00:00
|
|
|
Release: 0
|
2006-12-18 23:16:39 +00:00
|
|
|
Summary: The GNU MP Library
|
2012-09-13 14:33:07 +00:00
|
|
|
License: GPL-3.0+ and LGPL-3.0+
|
2012-01-30 09:16:08 +00:00
|
|
|
Group: System/Libraries
|
2007-12-12 19:13:54 +00:00
|
|
|
Url: http://gmplib.org/
|
2013-03-27 10:44:49 +00:00
|
|
|
Source: ftp://ftp.gmplib.org/pub/%{name}/%{name}-%{version}.tar.bz2
|
2010-01-14 14:21:37 +00:00
|
|
|
Source2: baselibs.conf
|
2007-12-12 19:13:54 +00:00
|
|
|
Patch0: gmp-noexec.diff
|
2006-12-18 23:16:39 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
|
|
|
%description
|
|
|
|
A library for calculating huge numbers (integer and floating point).
|
|
|
|
|
|
|
|
|
2010-09-20 14:31:58 +00:00
|
|
|
%package -n libgmp10
|
2009-04-23 12:59:42 +00:00
|
|
|
Summary: Shared library for the GNU MP Library
|
|
|
|
Group: System/Libraries
|
|
|
|
|
2010-09-20 14:31:58 +00:00
|
|
|
%description -n libgmp10
|
2009-04-23 12:59:42 +00:00
|
|
|
Shared library for the GNU MP Library.
|
|
|
|
|
|
|
|
|
|
|
|
%package -n libgmpxx4
|
|
|
|
Summary: C++ bindings for the GNU MP Library
|
|
|
|
Group: System/Libraries
|
2012-12-19 10:11:52 +00:00
|
|
|
Requires: libgmp10 >= %{version}
|
2009-04-23 12:59:42 +00:00
|
|
|
|
|
|
|
%description -n libgmpxx4
|
|
|
|
C++ bindings for the GNU MP Library.
|
|
|
|
|
|
|
|
|
2006-12-18 23:16:39 +00:00
|
|
|
%package devel
|
|
|
|
Summary: Include Files and Libraries for Development with the GNU MP Library
|
|
|
|
Group: Development/Languages/C and C++
|
2010-09-20 14:31:58 +00:00
|
|
|
Requires: libgmp10 = %{version}
|
2009-04-23 12:59:42 +00:00
|
|
|
Requires: libgmpxx4 = %{version}
|
2008-11-28 14:01:57 +00:00
|
|
|
# bug437293
|
|
|
|
%ifarch ppc64
|
|
|
|
Obsoletes: gmp-devel-64bit
|
|
|
|
%endif
|
2006-12-18 23:16:39 +00:00
|
|
|
PreReq: %install_info_prereq
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
These libraries are needed to develop programs which calculate with
|
|
|
|
huge numbers (integer and floating point).
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
2011-09-27 22:04:53 +00:00
|
|
|
%ifnarch %arm
|
2006-12-18 23:16:39 +00:00
|
|
|
%patch0
|
2011-09-27 22:04:53 +00:00
|
|
|
%endif
|
2006-12-18 23:16:39 +00:00
|
|
|
|
|
|
|
%build
|
2012-02-04 17:32:54 +00:00
|
|
|
export CFLAGS="$RPM_OPT_FLAGS -fexceptions";
|
|
|
|
%configure \
|
2011-06-20 09:28:16 +00:00
|
|
|
--enable-cxx \
|
|
|
|
--enable-fat \
|
|
|
|
--enable-mpbsd
|
2012-02-04 17:32:54 +00:00
|
|
|
make %{?_smp_mflags}
|
2007-12-12 19:13:54 +00:00
|
|
|
|
|
|
|
%check
|
2007-01-14 23:48:10 +00:00
|
|
|
# do not disable "make check", FIX THE BUGS!
|
|
|
|
make check
|
2006-12-18 23:16:39 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
make install DESTDIR=${RPM_BUILD_ROOT}
|
2007-12-12 19:13:54 +00:00
|
|
|
rm $RPM_BUILD_ROOT%{_libdir}/libgmp.la
|
|
|
|
rm $RPM_BUILD_ROOT%{_libdir}/libgmpxx.la
|
|
|
|
rm $RPM_BUILD_ROOT%{_libdir}/libgmpxx.a
|
2006-12-18 23:16:39 +00:00
|
|
|
|
2010-09-20 14:31:58 +00:00
|
|
|
%post -n libgmp10 -p /sbin/ldconfig
|
2009-04-23 12:59:42 +00:00
|
|
|
|
|
|
|
%post -n libgmpxx4 -p /sbin/ldconfig
|
2008-01-03 16:36:34 +00:00
|
|
|
|
|
|
|
%post devel
|
2006-12-18 23:16:39 +00:00
|
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
|
2010-09-20 14:31:58 +00:00
|
|
|
%postun -n libgmp10 -p /sbin/ldconfig
|
2009-04-23 12:59:42 +00:00
|
|
|
|
|
|
|
%postun -n libgmpxx4 -p /sbin/ldconfig
|
2006-12-18 23:16:39 +00:00
|
|
|
|
|
|
|
%postun devel
|
|
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
|
2010-09-20 14:31:58 +00:00
|
|
|
%files -n libgmp10
|
2009-04-23 12:59:42 +00:00
|
|
|
%defattr(-,root,root)
|
2010-09-20 14:31:58 +00:00
|
|
|
%{_libdir}/libgmp.so.10*
|
2009-04-23 12:59:42 +00:00
|
|
|
|
|
|
|
%files -n libgmpxx4
|
|
|
|
%defattr(-,root,root)
|
|
|
|
%{_libdir}/libgmpxx.so.4*
|
2006-12-18 23:16:39 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root)
|
2009-04-23 12:59:42 +00:00
|
|
|
%doc AUTHORS README NEWS
|
2006-12-18 23:16:39 +00:00
|
|
|
%doc demos
|
|
|
|
%doc %{_infodir}/gmp.info*.gz
|
2007-12-12 19:13:54 +00:00
|
|
|
%{_libdir}/libgmp.a
|
|
|
|
%{_libdir}/libgmp.so
|
|
|
|
%{_libdir}/libgmpxx.so
|
|
|
|
/usr/include/gmp.h
|
|
|
|
/usr/include/gmpxx.h
|
2006-12-18 23:16:39 +00:00
|
|
|
|
2007-05-23 14:19:37 +00:00
|
|
|
%changelog
|