mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
9db723e6b9
the road to obliterating tcl/tk 8.0 from the tree. Note 1: the patches have been extensively re-worked from the original submission, to make this port PREFIX-safe, and also to deal with multiple patchfiles updating the same source file. Note 2: I've left the MAINTAINER as jseger. Justin, you may want to cast your TCL-expert eye over this one, it seems to do the right thing. PR: 16970 Submitted by: Mikhail Teterin <mi@aldan.algebra.com>
49 lines
1.6 KiB
Makefile
49 lines
1.6 KiB
Makefile
# New ports collection makefile for: tclX
|
|
# Date created: 6 February 1996
|
|
# Whom: jkh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tclX
|
|
PORTVERSION= 8.2.0
|
|
CATEGORIES= lang tcl82 tk82
|
|
MASTER_SITES= ftp://ftp.neosoft.com/pub/tcl/tclx-distrib/
|
|
DISTNAME= tclX8.2.0
|
|
|
|
MAINTAINER= jseger@FreeBSD.org
|
|
|
|
LIB_DEPENDS= tk82.1:${PORTSDIR}/x11-toolkits/tk82
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/unix
|
|
INSTALLS_SHLIB= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-shared \
|
|
--with-tcl="${LOCALBASE}/lib/tcl8.2" \
|
|
--with-tk="${LOCALBASE}/lib/tk8.2"
|
|
PLIST_SUB= TCLX_LONG_VER=8.2 TCLX_SHORT_VER=82
|
|
|
|
MAN3= CmdWrite.3 Handles.3 Keylist.3 ObjCmdWrite.3 TclXInit.3 \
|
|
TclCommandWriting.3 \
|
|
TclX_KeyedListDelete.3 TclX_KeyedListGet.3 TclX_KeyedListGetKeys.3 \
|
|
TclX_KeyedListSet.3 TclX_Main.3 TclX_NewKeyedListObj.3 \
|
|
Tcl_HandleAlloc.3 Tcl_HandleFree.3 Tcl_HandleTblInit.3 \
|
|
Tcl_HandleTblRelease.3 Tcl_HandleTblUseCount.3 Tcl_HandleWalk.3 \
|
|
Tcl_HandleXlate.3 Tclx_Init.3 Tclxcmd_Init.3 TkX_Main.3 Tkx_Init.3
|
|
|
|
MANN= Memory.n TclX.n Tcl_DisplayMemory.n Tcl_InitMemory.n \
|
|
Tcl_ValidateAllMemory.n ckalloc.n ckfree.n memory.n
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/../doc/CmdWrite.3 ${PREFIX}/man/man3
|
|
${INSTALL_MAN} ${WRKSRC}/../doc/Handles.3 ${PREFIX}/man/man3
|
|
${INSTALL_MAN} ${WRKSRC}/../doc/Keylist.3 ${PREFIX}/man/man3
|
|
${INSTALL_MAN} ${WRKSRC}/../doc/ObjCmdWrite.3 ${PREFIX}/man/man3
|
|
${INSTALL_MAN} ${WRKSRC}/../doc/TclXInit.3 ${PREFIX}/man/man3
|
|
${INSTALL_MAN} ${WRKSRC}/../doc/Memory.n ${PREFIX}/man/mann
|
|
${INSTALL_MAN} ${WRKSRC}/../doc/TclX.n ${PREFIX}/man/mann
|
|
|
|
.include <bsd.port.post.mk>
|