ports/84440: [patch] Fix irc/epic5 Makefile to remove SOCKS switches and make tcl build options work properly
Josh Paetzel
josh at tcbug.org
Mon Aug 1 16:10:19 UTC 2005
>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 at 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:
More information about the freebsd-ports-bugs
mailing list