29d1f554c2
- Change License as described in bnc#818958. OBS-URL: https://build.opensuse.org/package/show/Base:System/libtool?expand=0&rev=50
131 lines
3.5 KiB
RPMSpec
131 lines
3.5 KiB
RPMSpec
#
|
|
# spec file for package libtool-testsuite
|
|
#
|
|
# Copyright (c) 2013 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/
|
|
#
|
|
|
|
|
|
###################################################################
|
|
# NOTE: PLease run pre_checkin.sh before checking in the package! #
|
|
###################################################################
|
|
|
|
Name: libtool-testsuite
|
|
BuildRequires: automake
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: gcc-fortran
|
|
BuildRequires: gcc-objc
|
|
BuildRequires: lzma
|
|
BuildRequires: makeinfo
|
|
BuildRequires: zlib-devel
|
|
Requires: automake > 1.4
|
|
Requires: tar
|
|
Summary: A Tool to Build Shared Libraries
|
|
License: GPL-2.0+ and LGPL-2.1+ and GFDL
|
|
Group: Development/Tools/Building
|
|
Version: 2.4.2
|
|
Release: 0
|
|
# bug437293
|
|
%ifarch ppc64
|
|
Obsoletes: libtool-64bit
|
|
%endif
|
|
#
|
|
PreReq: %{install_info_prereq}
|
|
Requires: libltdl7 = %{version}
|
|
Url: http://www.gnu.org/software/libtool/
|
|
Source: http://ftp.gnu.org/gnu/libtool/libtool-%{version}.tar.gz
|
|
Source2: baselibs.conf
|
|
Source3: libtool-rpmlintrc
|
|
#Patch: libtool-%%{version}.diff
|
|
Patch1: config-guess-sub-update.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
Provides: libltdl-devel
|
|
# fedora name
|
|
Provides: libtool-ltdl-devel
|
|
|
|
%description
|
|
GNU libtool is a set of shell scripts to automatically configure UNIX
|
|
architectures to build shared libraries in a generic fashion.
|
|
|
|
%package -n libltdl7
|
|
Summary: Libtool Runtime Library
|
|
License: LGPL-2.1+
|
|
Group: Development/Libraries/C and C++
|
|
|
|
%description -n libltdl7
|
|
Library needed by programs that use the ltdl interface of GNU libtool.
|
|
|
|
%prep
|
|
%setup -q -n libtool-%{version}
|
|
%patch1
|
|
|
|
%build
|
|
./configure CFLAGS="$RPM_OPT_FLAGS" \
|
|
--prefix=/usr --infodir=%{_infodir} --libdir=%{_libdir}
|
|
# force rebuild with non-broken makeinfo
|
|
rm -f doc/libtool.info
|
|
make %{?_smp_mflags}
|
|
|
|
%if "%{name}" == "libtool-testsuite"
|
|
|
|
%check
|
|
trap 'test $? -ne 0 && cat tests/testsuite.log' EXIT
|
|
# Avoid spurious testsuite failures due to messages from icecream
|
|
PATH=/usr/bin:$PATH
|
|
make check
|
|
|
|
%install
|
|
%else
|
|
|
|
%install
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
%endif
|
|
|
|
%post
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/libtool.info.gz
|
|
|
|
%postun
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/libtool.info.gz
|
|
|
|
%post -n libltdl7 -p /sbin/ldconfig
|
|
|
|
%postun -n libltdl7 -p /sbin/ldconfig
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%if "%{name}" == "libtool"
|
|
|
|
%files
|
|
%defattr(-, root, root)
|
|
%doc AUTHORS NEWS README THANKS ChangeLog
|
|
/usr/bin/libtool
|
|
/usr/bin/libtoolize
|
|
/usr/include/libltdl
|
|
/usr/include/ltdl.h
|
|
%{_libdir}/libltdl.a
|
|
%attr(644, root, root) %{_libdir}/libltdl.la
|
|
%{_libdir}/libltdl.so
|
|
/usr/share/aclocal/*.m4
|
|
%doc %{_infodir}/libtool.info*
|
|
%doc %{_mandir}/man1/libtool.1.gz
|
|
%doc %{_mandir}/man1/libtoolize.1.gz
|
|
/usr/share/libtool
|
|
|
|
%files -n libltdl7
|
|
%defattr(-, root, root)
|
|
%{_libdir}/libltdl.so.*
|
|
%endif
|
|
|
|
%changelog
|