From 726a33a96b0c0f927e1453ecf96fb73df013b5b95df2895e0d67ceca9f634751 Mon Sep 17 00:00:00 2001 From: Michal Marek Date: Tue, 4 Oct 2011 05:01:34 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/Kernel:HEAD/kernel-source?expand=0&rev=7080 --- kernel-docs.spec.in | 101 -------------------------------------------- 1 file changed, 101 deletions(-) delete mode 100644 kernel-docs.spec.in diff --git a/kernel-docs.spec.in b/kernel-docs.spec.in deleted file mode 100644 index cffff3a7..00000000 --- a/kernel-docs.spec.in +++ /dev/null @@ -1,101 +0,0 @@ -# -# spec file for package kernel-docs@VARIANT@ (Version @RPMVERSION@) -# -# Copyright (c) 2009 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/ -# - -# norootforbuild - -%define patchversion @PATCHVERSION@ -%define variant @VARIANT@%{nil} - -%include %_sourcedir/kernel-spec-macros - -Name: kernel-docs@VARIANT@ -Summary: Kernel Documentation -Version: @RPMVERSION@ -%if %using_buildservice -Release: @RELEASE_PREFIX@ -%else -Release: @RELEASE_PREFIX@0 -%endif -BuildRequires: docbook-toys docbook-utils ghostscript_any libjpeg-devel texlive transfig xmlto xorg-x11-devel -BuildRequires: kernel-source%variant -Url: http://www.kernel.org/ -License: GPL v2 or later -Group: Documentation/Man -AutoReqProv: on -Provides: %name = %version-%source_rel -BuildArch: noarch -BuildRoot: %{_tmppath}/%{name}-%{version}-build -Source: kernel-spec-macros - -%description -These are the PDF documents and man pages (section 9) built from -thecurrent kernel sources. - - - -%prep -cp -av /etc/texmf/web2c/texmf.cnf . -cat << EOF >> texmf.cnf -main_memory.pdfjadetex = 2500000 -hash_extra.pdfjadetex = 70000 -max_strings.pdfjadetex = 120000 -save_size.pdfjadetex = 10000 -EOF -%setup -T -c - -%build -# use texmf.cnf from local source -export TEXMFCNF=$RPM_BUILD_DIR -export LANG=en_US -make -C /usr/src/linux%variant O=$PWD -k -i mandocs %{?jobs:-j%jobs} -make -C /usr/src/linux%variant O=$PWD -k -i pdfdocs %{?jobs:-j%jobs} - -%install -rm -rf $RPM_BUILD_ROOT -install -d $RPM_BUILD_ROOT/%{_mandir}/man9 -# filter out obscure device drivers - they clutter up the rpm and don't add any real value -find Documentation/DocBook/ -name '*.9.gz' | -egrep -v 'man/(sis[69]|rio|fsl|struct_rio|RIO|mpc85|set_rx_mode|mdio_(read|write)|mii_ioctl|mca_|z8530|nand|sppp|piix|(read|write)_zs)' | -while read i ; do - cp $i $RPM_BUILD_ROOT/%{_mandir}/man9 -done -install -d $RPM_BUILD_ROOT/usr/share/doc/kernel -cp -a Documentation/DocBook/*.pdf $RPM_BUILD_ROOT/usr/share/doc/kernel || true -if [ -d Documentation/kdb ] ; then - for i in Documentation/kdb/*.m* ; do - k=`basename $i` - k=${k/man/9} - k=${k/mm/9} - cp $i $RPM_BUILD_ROOT/%{_mandir}/man9/$k - done -fi - -ln -s /usr/share/man/man9/request_threaded_irq.9.gz $RPM_BUILD_ROOT/usr/share/man/man9/request_irq.9.gz - -cp -a /usr/src/linux%variant/{COPYING,CREDITS,MAINTAINERS,README,REPORTING-BUGS} . - -%clean -rm -rf $RPM_BUILD_ROOT - -%files -%defattr(-,root,root) -%doc COPYING CREDITS MAINTAINERS README REPORTING-BUGS -%{_mandir}/man9/* -%docdir /usr/share/doc/kernel -/usr/share/doc/kernel - -%changelog