man-pages/man-pages.spec
Petr Gajdos 76cd73e109 - update to 4.02:
- new and rewritten pages
    * dladdr.3
    * dlerror.3
    * dlinfo.3
    * dlopen.3
    * dlsysm.3
  - newly documented interfaces in existing pages
    * dlopen.3
        Document dlmopen(3)
    * nl_langinfo.3
        Add documentation for nl_langinfo_l(3)
    * __ppc_set_ppr_med.3
        Document PPC functions providing access to PPR
    * __ppc_yield.3
        Document PPC performance-hint functions

OBS-URL: https://build.opensuse.org/package/show/Documentation/man-pages?expand=0&rev=156
2015-08-10 07:04:25 +00:00

100 lines
3.1 KiB
RPMSpec

#
# spec file for package man-pages
#
# Copyright (c) 2015 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/
#
Name: man-pages
Version: 4.02
Release: 0
Summary: Linux Manual Pages
License: BSD-3-Clause and GPL-2.0+ and MIT
Group: Documentation/Man
Url: http://www.kernel.org/doc/man-pages/download.html
#Git-Clone: git://git.kernel.org/pub/scm/docs/man-pages/man-pages
#Git-Web: http://git.kernel.org/cgit/docs/man-pages/man-pages.git/
Source: https://www.kernel.org/pub/linux/docs/man-pages/man-pages-%{version}.tar.xz
Patch0: %{name}.eal3.diff
Patch1: %{name}-remove-ioctl_list-reference.patch
Patch2: %{name}-adjtimex.2.patch
Patch3: %{name}_gai.conf-reference.patch
Patch5: %{name}-tty_ioctl.patch
BuildRequires: fdupes
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%description
A large collection of man pages (documentation) from the Linux
Documentation Project (LDP). The man pages are organized into the
following sections: Section 1, user commands (intro only); Section 2,
system calls; Section 3, libc calls; Section 4, devices (e.g., hd, sd);
Section 5, file formats and protocols (e.g., wtmp, %{_sysconfdir}/passwd, nfs);
Section 6, games (intro only); Section 7, conventions, macro packages,
etc. (e.g., nroff, ascii); and Section 8, system administration (intro
only).
%prep
%setup -q
%patch0 -p2
%patch1
%patch2 -p1
%patch3
%patch5 -p1
find -name "*.orig" | xargs rm -fv
%build
# not current anymore (list of ioctl calls in Linux/i386 kernel 1.3.27)
# remove-ioctl_list-reference.patch removes references from ioctl.2
rm man2/ioctl_list.2
# glibc
rm man3/{getifaddrs.3,freeifaddrs.3,crypt.3,crypt_r.3}
%install
for i in man? ; do
mkdir -p "%{buildroot}/%{_mandir}/$i"
cp -p "$i"/* "%{buildroot}/%{_mandir}/$i/"
done
cd "%{buildroot}/%{_mandir}/"
RETVAL=0
ARE_MISSING=""
for i in */* ; do
FOUND=0
grep "^.so man" "$i" && FOUND=1
if [ "$FOUND" == 1 ] ; then
if [ ! -f `grep "^.so man" "$i" | awk '{print $2}'` ]; then
ARE_MISSING="$i $ARE_MISSING"
RETVAL=1
fi
fi
done
echo ""
echo "The following manual pages are now missing (for .so reference):"
echo "$ARE_MISSING"
echo ""
if [ "$RETVAL" -ne 0 ] ; then
exit "$RETVAL"
fi
%fdupes -s %{buildroot}/%{_prefix}
%files
%defattr(644,root,root,755)
%doc %{_mandir}/man*/*.gz
%doc README Changes Changes.old
%doc man-pages-*.Announce
%doc man-pages-*.lsm
%doc Changes
%changelog