summaryrefslogtreecommitdiff
path: root/lang/tcl83/Makefile
diff options
context:
space:
mode:
authorminskim <minskim@pkgsrc.org>2004-03-08 19:22:26 +0000
committerminskim <minskim@pkgsrc.org>2004-03-08 19:22:26 +0000
commit95bbe1f3d66e4eb666e90ed126d318dfea48630c (patch)
tree576da7f5eacb1c0de8153e26a4787da116c80a19 /lang/tcl83/Makefile
parent3021d7f26f9db7457f684a9ad48cb837ce90b1a8 (diff)
downloadpkgsrc-95bbe1f3d66e4eb666e90ed126d318dfea48630c.tar.gz
Reimport tcl-8.3.4 into lang/tcl83 before updating Tcl/Tk to 8.4.5,
because many packages still need 8.3. OK'ed by the maintainer (jwise@).
Diffstat (limited to 'lang/tcl83/Makefile')
-rw-r--r--lang/tcl83/Makefile101
1 files changed, 101 insertions, 0 deletions
diff --git a/lang/tcl83/Makefile b/lang/tcl83/Makefile
new file mode 100644
index 00000000000..43b614a9594
--- /dev/null
+++ b/lang/tcl83/Makefile
@@ -0,0 +1,101 @@
+# $NetBSD: Makefile,v 1.1.1.1 2004/03/08 19:22:26 minskim Exp $
+#
+
+DISTNAME= tcl8.3.4
+PKGNAME= tcl-8.3.4
+CATEGORIES= lang
+MASTER_SITES= ftp://ftp.scriptics.com/pub/tcl/tcl8_3/ \
+ ftp://gd.tuwien.ac.at/languages/tcl/scriptics/tcl8_3/ \
+ ftp://ftp.funet.fi/pub/languages/tcl/tcl/tcl8_3/ \
+ ftp://ftp.mpi-sb.mpg.de/pub/tcl/mirror/ftp.scriptics.com/tcl8_3/
+
+MAINTAINER= jwise@NetBSD.org
+HOMEPAGE= http://www.tcltk.com/
+COMMENT= Ousterhout's Tool Command Language, a scripting language
+
+CONFLICTS+= tclman80-[0-9]*
+
+PKG_INSTALLATION_TYPES= overwrite pkgviews
+
+WRKSRC= ${WRKDIR}/${DISTNAME}/unix
+GNU_CONFIGURE= yes
+MAKE_ENV+= TOUCH="${TOUCH}"
+TEST_TARGET= test
+
+USE_BUILDLINK3= yes
+USE_LIBTOOL= yes
+
+INSTALL_TARGET= install
+
+PLIST_SUBST+= SHLIB_SUFX="${SHLIB_SUFX}"
+
+# Initially install the man pages into ${WRKDIR}/man, as we need a staged
+# install to avoid overwriting existing manpages in ${PREFIX}/man.
+#
+CONFIGURE_ARGS+= --mandir=${WRKDIR}/man
+
+# Add ${VIEWBASE}/lib/tcl to the list of locations for Tcl packages.
+CONFIGURE_ENV+= TCL_PACKAGE_PATH="${VIEWBASE}/lib/tcl"
+
+.include "../../mk/bsd.prefs.mk"
+
+.if ${OPSYS} == "Darwin"
+PLIST_SUBST+= SHLIB_CMT="@comment "
+SHLIB_SUFX= dylib
+.else
+PLIST_SUBST+= SHLIB_CMT=""
+SHLIB_SUFX= la
+.endif
+
+# NetBSD-1.5.x-m68k platforms apparently have a compiler optimization bug
+# tickled by the Tcl code that manifests in code generation problems.
+#
+.if (${MACHINE_PLATFORM:MNetBSD-1.5*-m68k} != "")
+CONFIGURE_ENV+= COMPILER_OPTIMIZATION_BUG=YES
+.endif
+
+# Modify mkLinks script to remove the short-filename manpage if it was
+# linked to a longer filename.
+#
+post-patch:
+ @cd ${WRKSRC}; \
+ ${MV} -f mkLinks mkLinks.tmp; \
+ ${GREP} -v "^exit 0" mkLinks.tmp > mkLinks; \
+ ${CAT} mkLinks.tmp \
+ | ${AWK} '/^ *ln / { print $$2 }' \
+ | ${SORT} -u \
+ | ${GREP} -v ".*\.n" \
+ | ${SED} -e "s,^,${RM} -f ," \
+ >> mkLinks; \
+ ${RM} -f mkLinks.tmp; \
+ ${CHMOD} +x mkLinks;
+
+pre-install:
+ cd ${WRKSRC}; for file in \
+ tclUnixInit.o libtcl83.so tclsh; \
+ do \
+ ${TOUCH} $${file}; \
+ done
+
+post-install:
+ cd ${WRKDIR} && ${PAX} -rwpm man ${PREFIX}
+ ${RM} -rf ${WRKDIR}/man
+ cd ${PREFIX}/bin && ${LN} -s tclsh8.3 tclsh
+ ${INSTALL_DATA_DIR} ${PREFIX}/include/tcl
+ ${INSTALL_DATA_DIR} ${PREFIX}/include/tcl/unix
+ ${INSTALL_DATA_DIR} ${PREFIX}/include/tcl/generic
+ ${INSTALL_DATA} ${WRKSRC}/tclUnixPort.h ${PREFIX}/include/tcl/unix
+ ${INSTALL_DATA} ${WRKSRC}/../generic/tcl.h ${PREFIX}/include/tcl/generic
+ ${INSTALL_DATA} ${WRKSRC}/../generic/tclCompile.h ${PREFIX}/include/tcl/generic
+ ${INSTALL_DATA} ${WRKSRC}/../generic/tclDecls.h ${PREFIX}/include/tcl/generic
+ ${INSTALL_DATA} ${WRKSRC}/../generic/tclIO.h ${PREFIX}/include/tcl/generic
+ ${INSTALL_DATA} ${WRKSRC}/../generic/tclInitScript.h ${PREFIX}/include/tcl/generic
+ ${INSTALL_DATA} ${WRKSRC}/../generic/tclInt.h ${PREFIX}/include/tcl/generic
+ ${INSTALL_DATA} ${WRKSRC}/../generic/tclIntDecls.h ${PREFIX}/include/tcl/generic
+ ${INSTALL_DATA} ${WRKSRC}/../generic/tclIntPlatDecls.h ${PREFIX}/include/tcl/generic
+ ${INSTALL_DATA} ${WRKSRC}/../generic/tclMath.h ${PREFIX}/include/tcl/generic
+ ${INSTALL_DATA} ${WRKSRC}/../generic/tclPlatDecls.h ${PREFIX}/include/tcl/generic
+ ${INSTALL_DATA} ${WRKSRC}/../generic/tclPort.h ${PREFIX}/include/tcl/generic
+ ${INSTALL_DATA} ${WRKSRC}/../generic/tclRegexp.h ${PREFIX}/include/tcl/generic
+
+.include "../../mk/bsd.pkg.mk"