From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Sep 8 03:00:41 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 3297216A41F for ; Thu, 8 Sep 2005 03:00:41 +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 E44DE43D48 for ; Thu, 8 Sep 2005 03:00:40 +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 j8830e9o095903 for ; Thu, 8 Sep 2005 03:00:40 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j8830e7V095902; Thu, 8 Sep 2005 03:00:40 GMT (envelope-from gnats) Date: Thu, 8 Sep 2005 03:00:40 GMT Message-Id: <200509080300.j8830e7V095902@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Josh Paetzel Cc: Subject: Re: ports/84440: [patch] Fix irc/epic5 Makefile to remove SOCKS switches and make tcl build options work properly X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Josh Paetzel List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Sep 2005 03:00:41 -0000 The following reply was made to PR ports/84440; it has been noted by GNATS. From: Josh Paetzel To: bug-followup@freebsd.org, josh@tcbug.org Cc: Subject: Re: ports/84440: [patch] Fix irc/epic5 Makefile to remove SOCKS switches and make tcl build options work properly Date: Wed, 7 Sep 2005 21:55:53 -0500 Small change to the patch, this should be ready to commit. --- Makefile.old Tue Jul 26 10:27:15 2005 +++ Makefile Tue Jul 26 10:29:19 2005 @@ -30,16 +30,11 @@ ## WITH_TCL: enable 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) -- Thanks, Josh Paetzel