From owner-freebsd-ports Mon Mar 11 16: 0:28 2002 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A74637B41B for ; Mon, 11 Mar 2002 16:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C001540148; Mon, 11 Mar 2002 16:00:01 -0800 (PST) (envelope-from gnats) Received: from mailman.packetdesign.com (dns.packetdesign.com [65.192.41.10]) by hub.freebsd.org (Postfix) with ESMTP id E226437B402 for ; Mon, 11 Mar 2002 15:54:56 -0800 (PST) Received: from nimitz.packetdesign.com (nimitz.packetdesign.com [192.168.0.184]) by mailman.packetdesign.com (8.11.0/8.11.0) with ESMTP id g2BNsup98440 for ; Mon, 11 Mar 2002 15:54:56 -0800 (PST) (envelope-from bmah@packetdesign.com) Received: (from bmah@localhost) by nimitz.packetdesign.com (8.11.6/8.11.6) id g2BNsuI16590; Mon, 11 Mar 2002 15:54:56 -0800 (PST) (envelope-from bmah) Message-Id: <200203112354.g2BNsuI16590@nimitz.packetdesign.com> Date: Mon, 11 Mar 2002 15:54:56 -0800 (PST) From: "Bruce A. Mah" Reply-To: "Bruce A. Mah" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/35804: [patch] Update of devel/tclcl port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 35804 >Category: ports >Synopsis: [patch] Update of devel/tclcl port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon Mar 11 16:00:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Bruce A. Mah >Release: FreeBSD 4.5-STABLE i386 >Organization: Packet Design >Environment: System: FreeBSD nimitz.packetdesign.com 4.5-STABLE FreeBSD 4.5-STABLE #23: Mon Mar 11 10:53:32 PST 2002 root@nimitz.packetdesign.com:/usr/obj/usr/src/sys/NIMITZ i386 >Description: The attached patch updates the devel/tclcl port to 1.0b11, makes it depend on Tcl/Tk 8.3 (rather than 8.2), and adds the tcl83 and tk83 pseudo-categories to the CATEGORIES= definition. Mail to the port maintainer bounced. >How-To-Repeat: >Fix: --- tclcl.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/tclcl/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- Makefile 16 Jan 2001 17:30:22 -0000 1.9 +++ Makefile 11 Mar 2002 23:35:39 -0000 @@ -6,18 +6,18 @@ # PORTNAME= tclcl -PORTVERSION= 1.0b10 -CATEGORIES= devel +PORTVERSION= 1.0b11 +CATEGORIES= devel tcl83 tk83 MASTER_SITES= http://www.isi.edu/nsnam/dist/ DISTFILES= tclcl-src-${PORTVERSION}.tar.gz MAINTAINER= obonilla@fisicc-ufm.edu -LIB_DEPENDS= tk82.1:${PORTSDIR}/x11-toolkits/tk82 \ +LIB_DEPENDS= tk83.1:${PORTSDIR}/x11-toolkits/tk83 \ otcl.1:${PORTSDIR}/lang/otcl GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-tcl-ver=8.2 --with-tk-ver=8.2 +CONFIGURE_ARGS= --with-tcl-ver=8.3 --with-tk-ver=8.3 do-install: ${INSTALL_PROGRAM} ${WRKSRC}/tcl2c++ ${PREFIX}/bin Index: distinfo =================================================================== RCS file: /home/ncvs/ports/devel/tclcl/distinfo,v retrieving revision 1.3 diff -u -r1.3 distinfo --- distinfo 9 Dec 2000 15:34:53 -0000 1.3 +++ distinfo 11 Mar 2002 23:35:39 -0000 @@ -1 +1 @@ -MD5 (tclcl-src-1.0b10.tar.gz) = be6bb472263a631ca12fbcdf873b008e +MD5 (tclcl-src-1.0b11.tar.gz) = 05c024761b57c8c9a41ec1b9487db3ca Index: files/patch-aa =================================================================== RCS file: /home/ncvs/ports/devel/tclcl/files/patch-aa,v retrieving revision 1.2 diff -u -r1.2 patch-aa --- files/patch-aa 28 Nov 1999 18:31:59 -0000 1.2 +++ files/patch-aa 11 Mar 2002 23:35:39 -0000 @@ -5,7 +5,7 @@ # the exec restarts using tclsh which in turn ignores # the command because of this backslash: \ -exec tclsh "$0" "$@" -+exec tclsh8.2 "$0" "$@" ++exec tclsh8.3 "$0" "$@" # # otcldoc - a simple script for translating otcl classes into Index: files/patch-ab =================================================================== RCS file: files/patch-ab diff -N files/patch-ab --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-ab 11 Mar 2002 23:35:39 -0000 @@ -0,0 +1,11 @@ +--- Makefile.in.orig Mon Mar 11 15:31:08 2002 ++++ Makefile.in Mon Mar 11 15:31:21 2002 +@@ -103,7 +103,7 @@ + $(LIBRARY_TCL)/http2.1/http.tcl + TCL_83_LIBRARY_FILES = \ + $(TCL_BASE_LIBRARY_FILES) \ +- $(LIBRARY_TCL)/http2.3/http.tcl ++ $(LIBRARY_TCL)/http2.4/http.tcl + + TCL_LIBRARY_FILES = \ + @V_TCL_LIBRARY_FILES@ --- tclcl.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message