1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00

Resolve manpage naming conflict with the stock Tcl documentation

by using full function names in section 3.

PR:		ports/165141
Submitted by:	olgeni
Approved by:	maintainer
This commit is contained in:
Jimmy Olgeni 2012-02-14 20:09:12 +00:00
parent 9ab0db09f9
commit edd87fc55b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=291359

View File

@ -7,6 +7,7 @@
PORTNAME= itcl
PORTVERSION= 3.4b1
PORTREVISION= 1
CATEGORIES= lang tcl
MASTER_SITES= SF/incrtcl/%5BIncr%20Tcl_Tk%5D-source/3.4
DISTNAME= itcl${PORTVERSION}
@ -34,7 +35,7 @@ WRKSRC= ${WRKDIR}/itcl3.4
MANCOMPRESSED= no
MANN= body.n class.n code.n configbody.n delete.n ensemble.n find.n
MANN+= is.n itcl.n itclvars.n local.n scope.n
MAN3= RegisterC.3 Stack.3 Class.3 List.3 Object.3 Preserve.3
MAN3= Itcl_RegisterC.3 Itcl_Stack.3 Itcl_Class.3 Itcl_List.3 Itcl_Object.3 Itcl_Preserve.3
ITCL_LIB_FILE= ${ITCL_LIB}.${SHLIB_MAJOR}
@ -46,6 +47,8 @@ post-build test:
post-install:
${INSTALL_DATA} ${WRKSRC}/doc/*.n ${PREFIX}/man/mann/
${INSTALL_DATA} ${WRKSRC}/doc/*.3 ${PREFIX}/man/man3/
.for FILE in ${MAN3}
${INSTALL_DATA} ${WRKSRC}/doc/${FILE:S/Itcl_//} ${PREFIX}/man/man3/${FILE}
.endfor
.include <bsd.port.post.mk>