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

Revision 3718, 4.2 KB checked in by yasumichi, 13 years ago (diff)

[VineSeed:23244]の指摘に対する翻訳の修正

Line 
1Name:           help2man
2Summary:        Create simple man pages from --help output
3Summary(ja):    --help の出力から簡単なマニュアルページを生成するツール
4Version:        1.39.2
5Release:        2%{?_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.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%prep
32%setup -q -n help2man-%{version}
33iconv -f ISO-8859-1 -t utf-8 THANKS > THANKS~
34mv THANKS~ THANKS
35%{__cp} %{SOURCE1} po/ja.po
36# add Japanese locale
37echo "ja        ja_JP.utf8" >> locales
38
39%build
40
41%configure
42make %{?_smp_mflags}
43
44# Fix up manpage encoding
45#for f in help2man.*.h2m; do
46#  b=$(basename $f .h2m);
47#  c=$(grep 'charset: ISO-*' $f | sed -e 's,^.*: ,,')
48#  iconv -f $c -t UTF-8 -o $b.1~ $b.1
49#  mv $b.1~ $b.1
50#done
51
52%install
53rm -fr $RPM_BUILD_ROOT
54make install DESTDIR=$RPM_BUILD_ROOT
55make install_l10n DESTDIR=$RPM_BUILD_ROOT
56
57%clean
58rm -fr $RPM_BUILD_ROOT
59
60%post
61/sbin/install-info %{_infodir}/help2man.info %{_infodir}/dir 2>/dev/null || :
62
63%preun
64if [ $1 -eq 0 ]; then
65  /sbin/install-info --delete %{_infodir}/help2man.info \
66    %{_infodir}/dir 2>/dev/null || :
67fi
68
69%files
70%defattr(-, root, root,-)
71%doc README NEWS THANKS
72%{_bindir}/help2man
73%{_infodir}/*
74%{_mandir}/man1/*
75%{_libdir}/help2man
76%lang(de) %{_datadir}/locale/de/LC_MESSAGES/help2man.mo
77%lang(el) %{_datadir}/locale/el/LC_MESSAGES/help2man.mo
78%lang(eo) %{_datadir}/locale/eo/LC_MESSAGES/help2man.mo
79%lang(fi) %{_datadir}/locale/fi/LC_MESSAGES/help2man.mo
80%lang(fr) %{_datadir}/locale/fr/LC_MESSAGES/help2man.mo
81%lang(it) %{_datadir}/locale/it/LC_MESSAGES/help2man.mo
82%lang(ja) %{_datadir}/locale/ja/LC_MESSAGES/help2man.mo
83%lang(pl) %{_datadir}/locale/pl/LC_MESSAGES/help2man.mo
84%lang(pt_BR) %{_datadir}/locale/pt_BR/LC_MESSAGES/help2man.mo
85%lang(ru) %{_datadir}/locale/ru/LC_MESSAGES/help2man.mo
86%lang(sv) %{_datadir}/locale/sv/LC_MESSAGES/help2man.mo
87%lang(uk) %{_datadir}/locale/uk/LC_MESSAGES/help2man.mo
88%lang(vi) %{_datadir}/locale/vi/LC_MESSAGES/help2man.mo
89%lang(de) %{_mandir}/de/man1/*
90%lang(el) %{_mandir}/el/man1/*
91%lang(eo) %{_mandir}/eo/man1/*
92%lang(fi) %{_mandir}/fi/man1/*
93%lang(fr) %{_mandir}/fr/man1/*
94%lang(it) %{_mandir}/it/man1/*
95%lang(ja) %{_mandir}/ja/man1/*
96%lang(pl) %{_mandir}/pl/man1/*
97%lang(pt_BR) %{_mandir}/pt_BR/man1/*
98%lang(ru) %{_mandir}/ru/man1/*
99%lang(sv) %{_mandir}/sv/man1/*
100%lang(uk) %{_mandir}/uk/man1/*
101%lang(vi) %{_mandir}/vi/man1/*
102
103%changelog
104* Wed Apr 27 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 1.39.2-2
105- update translation.(Fixed [VineSeed:23244])
106
107* Wed Apr 27 2011 Yasumichi Akahoshi <yasumichi@vinelinux.org> 1.39.2-1
108- new upstream release.
109- add languages(de, el, eo, it, pt_BR, ru, uk, vi)
110- add Japanese translation.
111- stop to change encoding of manpages.
112- enable nls.
113- add Vendor, Distribution and Packager tag.
114
115* Tue Jan 18 2011 Shu KONNO <owa@bg.wakwak.com> 1.36.4-2
116- rebuilt with new environment
117
118* Sat Sep 06 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.36.4-1
119- initial build for Vine Linux
120
121* Sun Feb 10 2008 Ralf Corsépius <rc040203@freenet.de> - 1.36.4-2
122- Update license tag.
123- Convert THANKS to utf-8.
124
125* Tue Sep 05 2006 Ralf Corsépius <rc040203@freenet.de> - 1.36.4-1
126- Upstream update.
127- utf-8 encode l10n'd man pages.
128
129* Fri Dec 23 2005 Ralf Corsépius <rc04203@freenet.de> - 1.36.3-1
130- Upstream update.
131- Add build option --with nls.
132
133* Fri Dec 23 2005 Ralf Corsépius <rc04203@freenet.de> - 1.35.1-2
134- Fix disttag (#176473).
135- Cleanup spec.
136
137* Fri Apr 29 2005 Ralf Corsepius <ralf[AT]links2linux.de> - 1.35.1-1
138- Update to 1.35.1
139- Minor spec fixes.
Note: See TracBrowser for help on using the repository browser.