Missing man pages: gnupg

2009-07-12 Thread Daniel Underwood
Coming from Linux, I'm accustomed to using gpg. I installed the gnupg
port (which I assume is virtually the same as Linux gpg).

Doing
$ man gnupg
returns nothing. Doing
$ which gnupg
reveals that the port (or at least the binary) is in fact installed.
But where are the gnupg man pages? If truly not installed, how can I
install them?

In general, how does one deal with missing man pages? One reason I
left Linux (*officially* yesterday) is fragmented documentation. So
this is extremely important to me.

TIA,
Daniel
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Missing man pages: gnupg

2009-07-12 Thread Pierre Guinoiseau
gnupg's binary is gpg2, and man gpg2 exists. :)

Daniel Underwood wrote:
 Coming from Linux, I'm accustomed to using gpg. I installed the gnupg
 port (which I assume is virtually the same as Linux gpg).
 
 Doing
 $ man gnupg
 returns nothing. Doing
 $ which gnupg
 reveals that the port (or at least the binary) is in fact installed.
 But where are the gnupg man pages? If truly not installed, how can I
 install them?
 
 In general, how does one deal with missing man pages? One reason I
 left Linux (*officially* yesterday) is fragmented documentation. So
 this is extremely important to me.
 
 TIA,
 Daniel
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org



signature.asc
Description: OpenPGP digital signature


Re: Missing man pages: gnupg

2009-07-12 Thread Manolis Kiagias
Daniel Underwood wrote:
 Coming from Linux, I'm accustomed to using gpg. I installed the gnupg
 port (which I assume is virtually the same as Linux gpg).

 Doing
 $ man gnupg
 returns nothing. Doing
 $ which gnupg
 reveals that the port (or at least the binary) is in fact installed.
 But where are the gnupg man pages? If truly not installed, how can I
 install them?

 In general, how does one deal with missing man pages? One reason I
 left Linux (*officially* yesterday) is fragmented documentation. So
 this is extremely important to me.

 TIA,
 Daniel
   

Though the port is named security/gnupg1 (or security/gnupg for gnupg
v2), the actual command to use is gpg. So please try man gpg. I am using
gnupg1 and the documentation is installed with the port. I assume the
same is true for gnupg v2.

$ whereis gpg

gpg: /usr/local/bin/gpg /usr/local/man/man1/gpg.1.gz


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Missing man pages: gnupg

2009-07-12 Thread Daniel Underwood
 gnupg's binary is gpg2, and man gpg2 exists. :)

I see. Thanks, that works.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Missing man pages: gnupg

2009-07-12 Thread Charlie Kester

On Sun 12 Jul 2009 at 08:23:59 PDT Daniel Underwood wrote:

gnupg's binary is gpg2, and man gpg2 exists. :)


I see. Thanks, that works.


For a list of all the files installed by a package, including manpages,
use

   pkg_list -L packagename

If you're not sure which version of the package you have installed, you
can use a shell glob pattern in the packagename.  E.g., 


   pkg_list -L gnupg*

(The quotes are needed to prevent the shell from expanding the pattern
rather than passing it to pkg_list.)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org