From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 9 18:50:18 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A93FC16A41F for ; Fri, 9 Sep 2005 18:50:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 311B543D46 for ; Fri, 9 Sep 2005 18:50:18 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j89IoIkV025264 for ; Fri, 9 Sep 2005 18:50:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j89IoHhp025262; Fri, 9 Sep 2005 18:50:18 GMT (envelope-from gnats) Resent-Date: Fri, 9 Sep 2005 18:50:18 GMT Resent-Message-Id: <200509091850.j89IoHhp025262@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Josh Paetzel" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21ECA16A41F for ; Fri, 9 Sep 2005 18:49:25 +0000 (GMT) (envelope-from josh@tcbug.org) Received: from sccrmhc14.comcast.net (sccrmhc14.comcast.net [63.240.76.49]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF2A843D45 for ; Fri, 9 Sep 2005 18:49:24 +0000 (GMT) (envelope-from josh@tcbug.org) Received: from gimpy.tcbug.org (c-24-118-173-219.hsd1.mn.comcast.net[24.118.173.219]) by comcast.net (sccrmhc14) with SMTP id <2005090918492301400ejun1e>; Fri, 9 Sep 2005 18:49:23 +0000 Message-Id: <1126291784.0@gimpy.tcbug.org> Date: Fri, 9 Sep 2005 13:49:44 -0500 From: "Josh Paetzel" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.6 Cc: Subject: ports/85922: [patch] Fix tcl dependancy and remove SOCK5 support (which has never worked) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Sep 2005 18:50:18 -0000 >Number: 85922 >Category: ports >Synopsis: [patch] Fix tcl dependancy and remove SOCK5 support (which has never worked) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Sep 09 18:50:17 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Josh Paetzel >Release: FreeBSD 5.4-RELEASE-p6 i386 >Organization: >Environment: System: FreeBSD 5.4-RELEASE-p6 #6: Fri Aug 12 23:13:52 CDT 2005 jpaetzel@gimpy.tcbug.org:/usr/obj/usr/src/sys/GIMPY >Description: Fix dependancy errors in regards to tcl support epic4 has options to use WITH_SOCKS5 in the Makefile. According to the epic developers epic4 has never worked with SOCKS5 support and agree that the SOCKS5 option should be removed from the port. >How-To-Repeat: cd /usr/ports/irc/epic4 && make WITH_SOCK5=yes install Depending on whether tcl is installed or not gives you inconsistant behavior regarding the Makefile switches to use tcl support or not. >Fix: Apply the following patch: (essentially the same as the irc/epic5 patch that just got committed) --- Makefile.old Fri Sep 9 13:02:35 2005 +++ Makefile Fri Sep 9 13:08:41 2005 @@ -34,18 +34,13 @@ CONFIGURE_ARGS+= --without-ipv6 .endif -## WITH_TCL: enable Tcl support +## WITHOUT_TCL: disable Tcl support # -.if defined(WITH_TCL) +.if !defined(WITHOUT_TCL) LIB_DEPENDS+= tcl84:${PORTSDIR}/lang/tcl84 CONFIGURE_ARGS+= --with-tcl -.endif - -## WITH_SOCKS5: enable SOCKS5 support -# -.if defined(WITH_SOCKS5) -LIB_DEPENDS+= socks5:${PORTSDIR}/net/socks5 -CONFIGURE_ARGS+= --with-socks5 +.else +CONFIGURE_ARGS+= --without-tcl .endif ## WITH_PERL: enable perl5 support (requires perl 5.6.1 or newer) >Release-Note: >Audit-Trail: >Unformatted: