man-pages/man-pages.spec

109 lines
3.3 KiB
RPMSpec
Raw Normal View History

#
# spec file for package man-pages
#
# Copyright (c) 2014 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/
#
Name: man-pages
Url: http://www.kernel.org/doc/man-pages/download.html
Version: 3.61
Release: 0
Summary: Linux Manual Pages
License: BSD-3-Clause and GPL-2.0+ and MIT
Group: Documentation/Man
#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
Source1: man-pages-addons.tar.bz2
Patch: man-pages.eal3.diff
Patch3: %{name}_gai.conf-reference.patch
Patch5: %name-tty_ioctl.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: fdupes
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).
Authors:
--------
"Michael Kerrisk" <mtk.manpages@googlemail.com>
%prep
%setup -q -a1
%patch -p2
%patch3
%patch5 -p1
find -name "*.orig" | xargs rm -fv
%build
# not current anymore
rm -f man2/ioctl_list.2
# nfs-utils
rm -f man5/exports.5
# coreutils, diffutils
rm -f man1/vdir.1 man1/touch.1 man1/rmdir.1 man1/rm.1 man1/mv.1 man1/mknod.1 man1/mkfifo.1 man1/mkdir.1 man1/ls.1 man1/ln.1 man1/install.1 man1/du.1 man1/dircolors.1 man1/dir.1 man1/diff.1 man1/df.1 man1/dd.1 man1/cp.1 man1/chown.1 man1/chmod.1 man1/chgrp.1 man1/getent.1 man3/getaddrinfo.3.orig man3/{getifaddrs.3,freeifaddrs.3}
# glibc
rm -f man3/crypt.3 man3/crypt_r.3
# time
rm -f man1/time.1
%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