diff options
author | Martin Matuska <mm@FreeBSD.org> | 2007-06-05 13:26:58 +0000 |
---|---|---|
committer | Martin Matuska <mm@FreeBSD.org> | 2007-06-05 13:26:58 +0000 |
commit | a5861b89dfd0ec35aa273902120726af21e3e5a3 (patch) | |
tree | a773b404fb002792e73a52e5a3189a5f21745315 /lang/tcl84/Makefile | |
parent | 9e2e41c927e52f4e17fb1fa915d1c12ef99c6b4d (diff) |
- fix shared build on -CURRENT
- change tr to ${TR}
lang/tcl84 only:
- sync MASTER_SITES with other tcl ports
- change sysctl to ${SYSCTL}
Suggested by: stas
Approved by: garga (mentor)
Notes
Notes:
svn path=/head/; revision=192839
Diffstat (limited to 'lang/tcl84/Makefile')
-rw-r--r-- | lang/tcl84/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lang/tcl84/Makefile b/lang/tcl84/Makefile index ff70ef95c854..272c3e9a1c61 100644 --- a/lang/tcl84/Makefile +++ b/lang/tcl84/Makefile @@ -7,9 +7,11 @@ PORTNAME= tcl PORTVERSION= 8.4.15 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= lang tcl84 -MASTER_SITES= SF +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= tcl PKGNAMESUFFIX?= ${THREADS_SUFFIX}${PKGNAMESUFFIX2} DISTNAME= ${PORTNAME}${PORTVERSION}-src @@ -619,9 +621,9 @@ post-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' \ -e 's|$${TCL_TRIM_DOTS}|$${TCL_TRIM_DOTS}${THREADS_SUFFIX}|g' \ -e 's|-ltcl$${TCL_VERSION}|-ltcl$${TCL_VERSION}${THREADS_SUFFIX}|g' \ - -e 's/-ltcl`echo $${TCL_VERSION} | tr -d .`/-ltcl`echo $${TCL_VERSION} | tr -d .`${THREADS_SUFFIX}/g' \ + -e 's/-ltcl`echo $${TCL_VERSION} | ${TR} -d .`/-ltcl`echo $${TCL_VERSION} | ${TR} -d .`${THREADS_SUFFIX}/g' \ -e 's|-ltclstub$${TCL_VERSION}|-ltclstub$${TCL_VERSION}${THREADS_SUFFIX}|g' \ - -e 's/-ltclstub`echo $${TCL_VERSION} | tr -d .`/-ltclstub`echo $${TCL_VERSION} | tr -d .`${THREADS_SUFFIX}/g' \ + -e 's/-ltclstub`echo $${TCL_VERSION} | ${TR} -d .`/-ltclstub`echo $${TCL_VERSION} | ${TR} -d .`${THREADS_SUFFIX}/g' \ ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|libtcl$${SHORT_TCL_VER}|libtcl$${SHORT_TCL_VER}${THREADS_SUFFIX}|g' \ -e 's|$$(BIN_INSTALL_DIR)/tclsh$$(VERSION)|$$(BIN_INSTALL_DIR)/tclsh$$(VERSION)${THREADS_SUFFIX}|g' \ @@ -630,7 +632,7 @@ post-patch: .endif # Where the below command fails, there is no need for concern: -BLACKHOLE!= /sbin/sysctl -n net.inet.tcp.blackhole || ${TRUE} +BLACKHOLE!= ${SYSCTL} -n net.inet.tcp.blackhole || ${TRUE} post-configure: ${REINPLACE_CMD} \ |