mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
d1abe30ad1
Tcl Thread extension, script-level access to Tcl threading capabilities. Approved by: garga (mentor)
62 lines
1.4 KiB
Makefile
62 lines
1.4 KiB
Makefile
# New ports collection makefile for: tclthread
|
|
# Date created: Mon Apr 23 10:55:00 CET 2007
|
|
# Whom: Martin Matuska <mm@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= thread
|
|
PORTVERSION= 2.6.5
|
|
CATEGORIES= devel tcl84
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= tcl
|
|
PKGNAMEPREFIX= tcl
|
|
DISTNAME= ${PORTNAME}${PORTVERSION}
|
|
|
|
MAINTAINER= mm@FreeBSD.org
|
|
COMMENT= Thread extension for Tcl
|
|
|
|
USE_TCL= 84+
|
|
USE_TCL_THREADS= yes
|
|
|
|
DOCSDIR= ${TARGETDIR}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= ${PREFIX}/lib/thread${PORTVERSION}
|
|
|
|
PLIST_SUB+= VERSION="${PORTVERSION}"
|
|
|
|
INSTALL_TARGET= install-binaries install-libraries
|
|
.if !defined(NO_INSTALL_MANPAGES)
|
|
MANN= thread.n tpool.n tsv.n ttrace.n
|
|
INSTALL_TARGET+= install-doc
|
|
.endif
|
|
|
|
OPTIONS= GDBM "include GDBM support" on
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
CONFIGURE_ARGS+= --with-tcl="${TCL_LIBDIR}"
|
|
|
|
.if defined(WITH_GDBM)
|
|
LIB_DEPENDS+= gdbm.3:${PORTSDIR}/databases/gdbm
|
|
CONFIGURE_ARGS+= --with-gdbm
|
|
CONFIGURE_ENV+= gincdir="${LOCALBASE}/include" glibdir="${LOCALBASE}/lib"
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
|
|
${WRKSRC}/configure
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}/html
|
|
.for FILE in ChangeLog README license.terms
|
|
${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
|
|
.endfor
|
|
.for FILE in thread.html tpool.html tsv.html ttrace.html
|
|
${INSTALL_DATA} ${WRKSRC}/doc/html/${FILE} ${DOCSDIR}/html
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|