123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- %global cache /var/cache/man
- # Basic Information
- Name: man-db
- Version: 2.6.6
- Release: 1%{?_dist_release}
- License: GPL
- Group: System Environment/Base
- Source0: http://download.savannah.gnu.org/releases/%{name}/%{name}-%{version}.tar.xz
- Source1: man-db.crondaily
- Source2: man-db.sysconfig
- #Patch0: man-db-2.5.9-config.patch
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: yasumichi
- Summary: the man-db manual pager suite
- Summary(ja): man-dbマニュアルページャスイート
- # Dependency
- Requires: groff >= 1.20.1
- BuildRequires: groff >= 1.20.1
- Requires: gdbm
- BuildRequires: gdbm-devel
- BuildRequires: libpipeline-devel >= 1.1.0
- BuildRequires: po4a
- Obsoletes: man
- Provides: man
- %description
- This package provides the man command. This utility is the primary way of
- examining the on-line help files (manual pages). Other utilities provided
- include the whatis and apropos commands for searching the manual page
- database, the manpath utility for determining the manual page search path,
- and the maintenance utilities mandb, catman, and zsoelim. This package uses
- the groff suite of programs to format and display the manual pages.
- %description -l ja
- このパッケージは、man コマンドを提供します。このユーティリティの主な用途は
- ヘルプファイル(マニュアルページ)を調べることです。他のユーティリティとして
- マニュアルページデータベースを検索するための whatis と apropos コマンド、
- マニュアルページの検索パスを決定する manpath ユーティリティ、および
- メンテナンスユーティリティである mandb、catman および zsoelim を提供します。
- このパッケージは、マニュアルページを整形および表示するために groff プログラム
- スイートを利用しています。
- %prep
- %setup -q
- #%%patch0 -p1 -b .conf
- %build
- %configure --disable-setuid
- %{__make} %{?_smp_mflags}
- %install
- %{__rm} -rf ${RPM_BUILD_ROOT}
- %{__make} install DESTDIR=${RPM_BUILD_ROOT}
- %find_lang %{name}
- %find_lang %{name}-gnulib
- %{__rm} ${RPM_BUILD_ROOT}%{_libdir}/man-db/libman.la
- %{__rm} ${RPM_BUILD_ROOT}%{_libdir}/man-db/libmandb.la
- # install cache directory
- install -d -m 0755 $RPM_BUILD_ROOT%{cache}
- # install cron script for man-db creation/update
- install -D -p -m 0755 %{SOURCE1} $RPM_BUILD_ROOT/etc/cron.daily/man-db.cron
- # config for cron script
- install -D -p -m 0644 %{SOURCE2} $RPM_BUILD_ROOT/etc/sysconfig/man-db
- %clean
- %{__rm} -rf ${RPM_BUILD_ROOT}
- %files -f %{name}.lang -f %{name}-gnulib.lang
- %defattr(-,root,root)
- %doc ChangeLog NEWS README
- %config(noreplace) %{_sysconfdir}/man_db.conf
- %config(noreplace) %{_sysconfdir}/sysconfig/man-db
- %{_sysconfdir}/cron.daily/man-db.cron
- %{_bindir}/apropos
- %{_bindir}/catman
- %{_bindir}/lexgrog
- %{_bindir}/man
- %{_bindir}/mandb
- %{_bindir}/manpath
- %{_bindir}/whatis
- %{_bindir}/zsoelim
- %{_libdir}/man-db
- %{_libexecdir}/man-db
- %{_sbindir}/accessdb
- %{_defaultdocdir}/man-db
- %attr(0755,root,root) %dir %{cache}
- %lang(da) %{_mandir}/da/man*/*
- %lang(de) %{_mandir}/de/man*/*
- %lang(es) %{_mandir}/es/man*/*
- %lang(fr) %{_mandir}/fr/man*/*
- %lang(id) %{_mandir}/id/man*/*
- %lang(it) %{_mandir}/it/man*/*
- %lang(ja) %{_mandir}/ja/man*/*
- %lang(nl) %{_mandir}/nl/man*/*
- %lang(pl) %{_mandir}/pl/man*/*
- %lang(ru) %{_mandir}/ru/man*/*
- %lang(zh_CN) %{_mandir}/zh_CN/man*/*
- %{_mandir}/man1/apropos.1.*
- %{_mandir}/man1/lexgrog.1.*
- %{_mandir}/man1/man.1.*
- %{_mandir}/man1/manconv.1.*
- %{_mandir}/man1/manpath.1.*
- %{_mandir}/man1/whatis.1.*
- %{_mandir}/man1/zsoelim.1.*
- %{_mandir}/man5/manpath.5.*
- %{_mandir}/man8/accessdb.8.*
- %{_mandir}/man8/catman.8.*
- %{_mandir}/man8/mandb.8.*
- %changelog
- * Sat Jan 25 2014 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.6.6-1
- - new upstream release
- * Thu Nov 29 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.3-1
- - new upstream release
- - add BR: libpipeline-devel instead of libpipeline
- - add BR: po4a
- * Fri Sep 23 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.6.0.2-1
- - new upstream release.
- - remove Patch0.
- * Wed Mar 30 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.5.9-1
- - new upstream release.
- - add Source1,Source2 and Patch0 from fedora.
- * Tue Nov 16 2010 Yasumichi Akahoshi <yasumichi@vinelinux.org> 2.5.8-1
- - initial build for Vine Linux
|