Bug 38742 - tightvnc does not install manpages
Summary: tightvnc does not install manpages
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-05-30 17:40 UTC by Martijn Koster
Modified: 2002-06-01 02:18 UTC (History)
0 users

See Also:


Attachments
file.diff (175 bytes, patch)
2002-05-30 17:40 UTC, Martijn Koster
no flags Details | Diff
file.diff (370 bytes, patch)
2002-05-30 17:40 UTC, Martijn Koster
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Martijn Koster 2002-05-30 17:40:02 UTC
The net/tightvnc 1.2.4 port does not install man pages.
The Makefile provides no rationale, so I assume this is a bug.
The Makefile runs vncinstall with a single argument, instead of two.

A separate very minor Makefile issue is that the a "make fetch"
fails if you already have vnc installed, due to the "if exists".
It'd be nice if that check was delayed until the "make install".

Fix: do-install:
-       @(cd ${WRKSRC}; ./vncinstall ${PREFIX}/bin)
+       @(cd ${WRKSRC}; ./vncinstall ${PREFIX}/bin ${PREFIX}/man)
 .for file in Xvnc vncviewer vncpasswd vncconnect
        @strip ${PREFIX}/bin/${file}
 .endfor
How-To-Repeat:  # cd net/tightvnc; make install
 ...
 Warning: directory /man1 not found; not installing manual pages
 ...
Comment 1 dwcjr 2002-05-30 17:41:38 UTC
>  share/tightvnc/classes/shared.vnc
>  share/tightvnc/classes/tight.vnc
>  share/tightvnc/classes/zlib.vnc
> +man/man1/Xvnc.1
> +man/man1/vncviewer.1
> +man/man1/vncpasswd.1
> +man/man1/vncconnect.1
> +man/man1/vncserver.1
>  @dirrm share/tightvnc/classes
>  @dirrm share/tightvnc
I don't believe these go in pkg-plist, but MAN1= in the makefile.

-- 
David W. Chapman Jr.
dwcjr@inethouston.net	Raintree Network Services, Inc. <www.inethouston.net>
dwcjr@freebsd.org	FreeBSD Committer <www.FreeBSD.org>
Comment 2 Patrick Li freebsd_committer freebsd_triage 2002-06-01 02:18:22 UTC
State Changed
From-To: open->closed

Committed, Thanks!