Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Aug 2005 11:05:25 -0500
From:      "Josh Paetzel" <josh@tcbug.org>
To:        "FreeBSD gnats submit" <FreeBSD-gnats-submit@FreeBSD.org>
Subject:   ports/84440: [patch] Fix irc/epic5 Makefile to remove SOCKS switches and make tcl build options work properly
Message-ID:  <1122912325.0@gimpy.tcbug.org>
Resent-Message-ID: <200508011610.j71GAIss061391@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         84440
>Category:       ports
>Synopsis:       [patch] Fix irc/epic5 Makefile to remove SOCKS switches and make tcl build options work properly
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Mon Aug 01 16:10:18 GMT 2005
>Closed-Date:
>Last-Modified:
>Originator:     Josh Paetzel
>Release:        FreeBSD 5.4-RELEASE-p6 i386
>Organization:
>Environment:


System: FreeBSD 5.4-RELEASE-p6 #3: Thu Jul 28 12:13:23 CDT 2005
    jpaetzel@gimpy.tcbug.org:/usr/obj/usr/src/sys/GIMPY



>Description:


The irc/epic5 port has a WITH_SOCK5 option which according to the Epic developers has never worked.. (even if compiling by hand)

There is also a bug in the tcl dependancy which this patch fixes up.		

If this works out then I will send a patch for epic4 which is in the same boat.


>How-To-Repeat:


cd /usr/ports/irc/epic5 && make WITH_SOCKS5=yes install




>Fix:


--- 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(WITH_TCL) && !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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1122912325.0>