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

Revision 7711, 5.2 KB checked in by yasumichi, 11 years ago (diff)

new upstream release.

Line 
1Name:           help2man
2Summary:        Create simple man pages from --help output
3Summary(ja):    --help の出力から簡単なマニュアルページを生成するツール
4Version:        1.43.2
5Release:        1%{?_dist_release}
6Group:          Development/Tools
7License:        GPLv2+
8URL:            http://www.gnu.org/software/help2man
9Source:         ftp://ftp.gnu.org/gnu/help2man/help2man-%{version}.tar.gz
10Source1:        help2man-%{version}.ja.po
11BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
12
13Requires(post): /sbin/install-info
14Requires(preun): /sbin/install-info
15Requires:       perl-gettext
16BuildRequires:  perl-gettext
17Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
18
19Vendor: Project Vine
20Distribution: Vine Linux
21Packager: daisuke, yasumichi
22
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
31%description -l ja
32help2man は、プログラムの --help および --version オプションの出力から
33簡単なマニュアルページを生成するスクリプトです。
34
35ほとんどの GNU 文書は現在 info 形式であるため、有益な情報が info で提供
36されていることを指し示すセクションをマニュアルページに生成する方法も
37提供しています。
38
39%prep
40%setup -q -n help2man-%{version}
41iconv -f ISO-8859-1 -t utf-8 THANKS > THANKS~
42mv THANKS~ THANKS
43%{__cp} %{SOURCE1} po/ja.po
44
45%build
46
47%configure
48make %{?_smp_mflags}
49
50# Fix up manpage encoding
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
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/*
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
85%lang(fi) %{_datadir}/locale/fi/LC_MESSAGES/help2man.mo
86%lang(fr) %{_datadir}/locale/fr/LC_MESSAGES/help2man.mo
87%lang(hr) %{_datadir}/locale/hr/LC_MESSAGES/help2man.mo
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
93%lang(sr) %{_datadir}/locale/sr/LC_MESSAGES/help2man.mo
94%lang(sv) %{_datadir}/locale/sv/LC_MESSAGES/help2man.mo
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/*
100%lang(fi) %{_mandir}/fi/man1/*
101%lang(fr) %{_mandir}/fr/man1/*
102%lang(hr) %{_mandir}/hr/man1/*
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/*
108%lang(sr) %{_mandir}/sr/man1/*
109%lang(sv) %{_mandir}/sv/man1/*
110%lang(uk) %{_mandir}/uk/man1/*
111%lang(vi) %{_mandir}/vi/man1/*
112
113%changelog
114* Fri Jun 07 2013 Yasumichi Akahoshi <yasumichi@vinelinux.org> 1.43.2-1
115- new upstream release.
116
117* Tue May 31 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 1.40.1-1
118- new upstream release.(include Japanese locale)
119- delete Patch0. (fixed upstream)
120- translate description.
121
122* Fri May 06 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 1.39.2-3
123- add Patch0. (use gettext for format of strftime.)
124- update translation.
125
126* Tue May 03 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 1.39.2-3
127- update translation.(Fixed [JM:00259])
128
129* Wed Apr 27 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 1.39.2-2
130- update translation.(Fixed [VineSeed:23244])
131
132* Wed Apr 27 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 1.39.2-1
133- new upstream release.
134- add languages(de, el, eo, it, pt_BR, ru, uk, vi)
135- add Japanese translation.
136- stop to change encoding of manpages.
137- enable nls.
138- add Vendor, Distribution and Packager tag.
139
140* Tue Jan 18 2011 Shu KONNO <owa@bg.wakwak.com> 1.36.4-2
141- rebuilt with new environment
142
143* Sat Sep 06 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.36.4-1
144- initial build for Vine Linux
145
146* Sun Feb 10 2008 Ralf Corsépius <rc040203@freenet.de> - 1.36.4-2
147- Update license tag.
148- Convert THANKS to utf-8.
149
150* Tue Sep 05 2006 Ralf Corsépius <rc040203@freenet.de> - 1.36.4-1
151- Upstream update.
152- utf-8 encode l10n'd man pages.
153
154* Fri Dec 23 2005 Ralf Corsépius <rc04203@freenet.de> - 1.36.3-1
155- Upstream update.
156- Add build option --with nls.
157
158* Fri Dec 23 2005 Ralf Corsépius <rc04203@freenet.de> - 1.35.1-2
159- Fix disttag (#176473).
160- Cleanup spec.
161
162* Fri Apr 29 2005 Ralf Corsepius <ralf[AT]links2linux.de> - 1.35.1-1
163- Update to 1.35.1
164- Minor spec fixes.
Note: See TracBrowser for help on using the repository browser.