source: projects/specs/trunk/h/help2man/help2man-vl.spec @ 8793

Revision 8793, 5.3 KB checked in by Takemikaduchi, 10 years ago (diff)

libXi, libcdio, libusb1, qt4: new upstream release
others: rebuild

RevLine 
[521]1Name:           help2man
2Summary:        Create simple man pages from --help output
3Summary(ja):    --help の出力から簡単なマニュアルページを生成するツール
[7711]4Version:        1.43.2
[8793]5Release:        2%{?_dist_release}
[521]6Group:          Development/Tools
7License:        GPLv2+
8URL:            http://www.gnu.org/software/help2man
9Source:         ftp://ftp.gnu.org/gnu/help2man/help2man-%{version}.tar.gz
[4005]10Source1:        help2man-%{version}.ja.po
[521]11BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
12
13Requires(post): /sbin/install-info
14Requires(preun): /sbin/install-info
[3709]15Requires:       perl-gettext
16BuildRequires:  perl-gettext
17Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
[521]18
[3709]19Vendor: Project Vine
20Distribution: Vine Linux
21Packager: daisuke, yasumichi
22
[521]23%description
24help2man is a script to create simple man pages from the --help and
25--version output of programs.
26
27Since most GNU documentation is now in info format, this provides a
28way to generate a placeholder man page pointing to that resource while
29still providing some useful information.
30
[4005]31%description -l ja
32help2man は、プログラムの --help および --version オプションの出力から
33簡単なマニュアルページを生成するスクリプトです。
34
35ほとんどの GNU 文書は現在 info 形式であるため、有益な情報が info で提供
36されていることを指し示すセクションをマニュアルページに生成する方法も
37提供しています。
38
[521]39%prep
40%setup -q -n help2man-%{version}
41iconv -f ISO-8859-1 -t utf-8 THANKS > THANKS~
42mv THANKS~ THANKS
[3709]43%{__cp} %{SOURCE1} po/ja.po
[521]44
45%build
46
[3709]47%configure
[521]48make %{?_smp_mflags}
49
50# Fix up manpage encoding
[3709]51#for f in help2man.*.h2m; do
52#  b=$(basename $f .h2m);
53#  c=$(grep 'charset: ISO-*' $f | sed -e 's,^.*: ,,')
54#  iconv -f $c -t UTF-8 -o $b.1~ $b.1
55#  mv $b.1~ $b.1
56#done
[521]57
58%install
59rm -fr $RPM_BUILD_ROOT
60make install DESTDIR=$RPM_BUILD_ROOT
61make install_l10n DESTDIR=$RPM_BUILD_ROOT
62
63%clean
64rm -fr $RPM_BUILD_ROOT
65
66%post
67/sbin/install-info %{_infodir}/help2man.info %{_infodir}/dir 2>/dev/null || :
68
69%preun
70if [ $1 -eq 0 ]; then
71  /sbin/install-info --delete %{_infodir}/help2man.info \
72    %{_infodir}/dir 2>/dev/null || :
73fi
74
75%files
76%defattr(-, root, root,-)
77%doc README NEWS THANKS
78%{_bindir}/help2man
79%{_infodir}/*
80%{_mandir}/man1/*
[3709]81%{_libdir}/help2man
82%lang(de) %{_datadir}/locale/de/LC_MESSAGES/help2man.mo
83%lang(el) %{_datadir}/locale/el/LC_MESSAGES/help2man.mo
84%lang(eo) %{_datadir}/locale/eo/LC_MESSAGES/help2man.mo
[521]85%lang(fi) %{_datadir}/locale/fi/LC_MESSAGES/help2man.mo
86%lang(fr) %{_datadir}/locale/fr/LC_MESSAGES/help2man.mo
[7711]87%lang(hr) %{_datadir}/locale/hr/LC_MESSAGES/help2man.mo
[3709]88%lang(it) %{_datadir}/locale/it/LC_MESSAGES/help2man.mo
89%lang(ja) %{_datadir}/locale/ja/LC_MESSAGES/help2man.mo
90%lang(pl) %{_datadir}/locale/pl/LC_MESSAGES/help2man.mo
91%lang(pt_BR) %{_datadir}/locale/pt_BR/LC_MESSAGES/help2man.mo
92%lang(ru) %{_datadir}/locale/ru/LC_MESSAGES/help2man.mo
[7711]93%lang(sr) %{_datadir}/locale/sr/LC_MESSAGES/help2man.mo
[521]94%lang(sv) %{_datadir}/locale/sv/LC_MESSAGES/help2man.mo
[3709]95%lang(uk) %{_datadir}/locale/uk/LC_MESSAGES/help2man.mo
96%lang(vi) %{_datadir}/locale/vi/LC_MESSAGES/help2man.mo
97%lang(de) %{_mandir}/de/man1/*
98%lang(el) %{_mandir}/el/man1/*
99%lang(eo) %{_mandir}/eo/man1/*
[521]100%lang(fi) %{_mandir}/fi/man1/*
101%lang(fr) %{_mandir}/fr/man1/*
[7711]102%lang(hr) %{_mandir}/hr/man1/*
[3709]103%lang(it) %{_mandir}/it/man1/*
104%lang(ja) %{_mandir}/ja/man1/*
105%lang(pl) %{_mandir}/pl/man1/*
106%lang(pt_BR) %{_mandir}/pt_BR/man1/*
107%lang(ru) %{_mandir}/ru/man1/*
[7711]108%lang(sr) %{_mandir}/sr/man1/*
[521]109%lang(sv) %{_mandir}/sv/man1/*
[3709]110%lang(uk) %{_mandir}/uk/man1/*
111%lang(vi) %{_mandir}/vi/man1/*
[521]112
113%changelog
[8793]114* Sat Jul 12 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.43.2-2
115- rebuild with VineSeed environment
116
[7711]117* Fri Jun 07 2013 Yasumichi Akahoshi <yasumichi@vinelinux.org> 1.43.2-1
118- new upstream release.
119
[4005]120* Tue May 31 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 1.40.1-1
121- new upstream release.(include Japanese locale)
122- delete Patch0. (fixed upstream)
123- translate description.
124
[3802]125* Fri May 06 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 1.39.2-3
126- add Patch0. (use gettext for format of strftime.)
127- update translation.
128
129* Tue May 03 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 1.39.2-3
130- update translation.(Fixed [JM:00259])
131
[3718]132* Wed Apr 27 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 1.39.2-2
133- update translation.(Fixed [VineSeed:23244])
134
[3709]135* Wed Apr 27 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 1.39.2-1
136- new upstream release.
137- add languages(de, el, eo, it, pt_BR, ru, uk, vi)
138- add Japanese translation.
139- stop to change encoding of manpages.
140- enable nls.
141- add Vendor, Distribution and Packager tag.
142
[2529]143* Tue Jan 18 2011 Shu KONNO <owa@bg.wakwak.com> 1.36.4-2
144- rebuilt with new environment
145
[521]146* Sat Sep 06 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.36.4-1
147- initial build for Vine Linux
148
149* Sun Feb 10 2008 Ralf Corsépius <rc040203@freenet.de> - 1.36.4-2
150- Update license tag.
151- Convert THANKS to utf-8.
152
153* Tue Sep 05 2006 Ralf Corsépius <rc040203@freenet.de> - 1.36.4-1
154- Upstream update.
155- utf-8 encode l10n'd man pages.
156
157* Fri Dec 23 2005 Ralf Corsépius <rc04203@freenet.de> - 1.36.3-1
158- Upstream update.
159- Add build option --with nls.
160
161* Fri Dec 23 2005 Ralf Corsépius <rc04203@freenet.de> - 1.35.1-2
162- Fix disttag (#176473).
163- Cleanup spec.
164
165* Fri Apr 29 2005 Ralf Corsepius <ralf[AT]links2linux.de> - 1.35.1-1
166- Update to 1.35.1
167- Minor spec fixes.
Note: See TracBrowser for help on using the repository browser.