This is the mail archive of the
cygwin
mailing list for the Cygwin project.
Re: No manual entry for tar?
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Eric Blake wrote:
> Normal. The upstream tar maintainer doesn't go to the efforts of creating
> one in his tarball, so I don't put forth any additional effort to make one
> myself. The GNU Coding Standards recommend the info format ('info tar')
> over the man format, and although many GNU packages provide both, there is
> no obligation that they must. Also try using 'tar --help'.
Is this becoming a FAQ wrt tar?
http://www.cygwin.com/ml/cygwin/2002-02/msg01247.html
http://www.cygwin.com/ml/cygwin/2003-05/msg00359.html
http://www.cygwin.com/ml/cygwin/2003-05/msg00363.html
http://www.cygwin.com/ml/cygwin/2005-06/msg01166.html
http://www.cygwin.com/ml/cygwin/2006-05/msg00919.html
http://www.cygwin.com/ml/cygwin/2006-10/msg00022.html
BTW the following should give you tar manpages (requires help2man):
help2man -s 1 -o /usr/share/man/man1/tar.1 tar
for l in $(find /usr/share/locale -name tar.mo | sed -e
's#/usr/share/locale/\(.*\)/LC_MESSAGES/tar.mo#\1#'); do
mkdir -p /usr/share/man/$l/man1;
help2man -s 1 -L $l -o /usr/share/man/$l/man1/tar.1 tar;
if diff -u /usr/share/man/man1/tar.1 /usr/share/man/$l/man1/tar.1
&>/dev/null; then
# no localized help after all
rm /usr/share/man/$l/man1/tar.1;
fi
done
(Exercise: this could be adapted and used in the .cygport file.)
Yaakov
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Cygwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iD8DBQFFy/JypiWmPGlmQSMRCHT6AKD3FYIAUE1JyVmWORl84mWo/QIVugCg/Ik/
y/wnH/11Dcwkqt4ThqbbeVU=
=/Qab
-----END PGP SIGNATURE-----
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/