Tcl 8.0.5. Fenner's MLINK PR TBA RSN

This commit is contained in:
Chris Timmons 1999-04-30 16:09:55 +00:00
parent bdb0f6273c
commit eedf643194
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=18222
4 changed files with 18 additions and 23 deletions

View File

@ -3,11 +3,11 @@
# Date created: 19 August 1997
# Whom: jkh
#
# $Id: Makefile,v 1.14 1999/04/08 19:05:47 billf Exp $
# $Id: Makefile,v 1.15 1999/04/22 00:17:05 scrappy Exp $
#
DISTNAME= tcl8.0.4
PKGNAME= tcl-8.0.4
DISTNAME= tcl8.0.5
PKGNAME= tcl-8.0.5
CATEGORIES= lang tcl80
MASTER_SITES= ftp://ftp.scriptics.com/pub/tcl/tcl8_0/
@ -15,14 +15,14 @@ MAINTAINER= cwt@freebsd.org
Y2K= http://www.scriptics.com/Y2K.html
WRKSRC= ${WRKDIR}/tcl8.0.4/unix
WRKSRC= ${WRKDIR}/tcl8.0.5/unix
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-shared
CONFIGURE_ENV= PORTSDIR=${PORTSDIR}
PKGINSTALL= ${PKGDIR}/INSTALL.tclsh
SHLIB_MAJOR= 1
SHLIB_MINOR= 4
SHLIB_MINOR= 5
MAKEFILE= makefile
TCL_LIB= libtcl80.so

View File

@ -1 +1 @@
MD5 (tcl8.0.4.tar.gz) = 62e1fcb1c000e12e33909f830670e360
MD5 (tcl8.0.5.tar.gz) = 4247975c801510fb378b76237b2abaaf

View File

@ -1,5 +1,5 @@
--- Makefile.in.orig Tue Nov 25 10:31:41 1997
+++ Makefile.in Mon Nov 30 16:28:20 1998
--- Makefile.in.orig Thu Apr 29 10:26:03 1999
+++ Makefile.in Thu Apr 29 10:33:07 1999
@@ -55,7 +55,9 @@
BIN_INSTALL_DIR = $(INSTALL_ROOT)$(exec_prefix)/bin
@ -11,7 +11,7 @@
# Top-level directory in which to install manual entries:
MAN_INSTALL_DIR = $(INSTALL_ROOT)$(prefix)/man
@@ -133,7 +135,7 @@
@@ -146,7 +148,7 @@
# "install" around; better to use the install-sh script that comes
# with the distribution, which is slower but guaranteed to work.
@ -20,7 +20,7 @@
INSTALL_PROGRAM = ${INSTALL}
INSTALL_DATA = ${INSTALL} -m 644
@@ -310,15 +312,21 @@
@@ -331,15 +333,21 @@
SRCS = $(GENERIC_SRCS) $(UNIX_SRCS)
@ -43,7 +43,7 @@
# Make target which outputs the list of the .o contained in the Tcl lib
# usefull to build a single big shared library containing Tcl and other
# extensions. used for the Tcl Plugin. -- dl
@@ -410,7 +418,7 @@
@@ -433,7 +441,7 @@
# some ranlibs write to current directory, and this might not always be
# possible (e.g. if installing as root).
@ -52,7 +52,7 @@
@for i in $(LIB_INSTALL_DIR) $(BIN_INSTALL_DIR) ; \
do \
if [ ! -d $$i ] ; then \
@@ -424,18 +432,23 @@
@@ -447,14 +455,19 @@
@$(INSTALL_DATA) $(TCL_LIB_FILE) $(LIB_INSTALL_DIR)/$(TCL_LIB_FILE)
@(cd $(LIB_INSTALL_DIR); $(RANLIB) $(TCL_LIB_FILE))
@chmod 555 $(LIB_INSTALL_DIR)/$(TCL_LIB_FILE)
@ -75,12 +75,7 @@
do \
if [ ! -d $$i ] ; then \
echo "Making directory $$i"; \
- mkdir $$i; \
+ mkdir -p $$i; \
chmod 755 $$i; \
else true; \
fi; \
@@ -449,8 +462,15 @@
@@ -472,8 +485,15 @@
else true; \
fi; \
done;
@ -98,7 +93,7 @@
@for i in $(TOP_DIR)/library/*.tcl $(TOP_DIR)/library/tclIndex $(UNIX_DIR)/tclAppInit.c $(UNIX_DIR)/ldAix; \
do \
echo "Installing $$i"; \
@@ -478,30 +498,37 @@
@@ -501,30 +521,37 @@
@cd $(TOP_DIR)/doc; for i in *.1; \
do \
echo "Installing doc/$$i"; \

View File

@ -1,6 +1,6 @@
--- configure Wed Nov 18 14:54:26 1998
+++ configure Mon Nov 30 15:05:10 1998
@@ -4065,15 +4065,23 @@
--- configure.orig Mon Mar 8 22:51:26 1999
+++ configure Thu Apr 29 11:13:56 1999
@@ -4097,15 +4097,23 @@
echo "$ac_t""yes" 1>&6
SHLIB_CFLAGS="-fpic"
@ -21,7 +21,7 @@
+ if [ "$PORTOBJFORMAT" = "elf" ]; then
+ TCL_SHARED_LIB_SUFFIX='`echo ${VERSION} | tr -d .`.so.1'
+ else
+ TCL_SHARED_LIB_SUFFIX='`echo ${VERSION} | tr -d .`.so.1.4'
+ TCL_SHARED_LIB_SUFFIX='`echo ${VERSION} | tr -d .`.so.1.5'
+ fi
+
else