ports/165182: Add mouse option to www/elinks config

Alex silverless at gmx.com
Wed Feb 15 17:20:09 UTC 2012


>Number:         165182
>Category:       ports
>Synopsis:       Add mouse option to www/elinks config
>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:   Wed Feb 15 17:20:08 UTC 2012
>Closed-Date:
>Last-Modified:
>Originator:     Alex
>Release:        FreeBSD 9.0-RELEASE amd64
>Organization:
>Environment:
>Description:
By default the port is compiled with mouse support that causes problems with clipboard use at work in putty on SSH for example.
The given patch adds possibility to compile port without mouse support.
>How-To-Repeat:

>Fix:
Apply a patch to /usr/ports/www/elinks/Makefile and then recompile port.

Patch attached with submission follows:

--- /usr/ports/www/elinks/Makefile	2011-12-26 22:52:46.000000000 +0400
+++ /home/admin/Makefile	2012-02-15 19:11:26.000000000 +0400
@@ -49,7 +49,8 @@
 		RUBYSCRIPT	"Enable Ruby scripting support" off \
 		LUASCRIPT	"Enable Lua scripting support" off \
 		GUILESCRIPT	"Enable Guile scripting support" off \
-		ICONV		"Enable iconv support" off
+		ICONV		"Enable iconv support" off \
+		MOUSE		"Enable mouse support" off
 
 .include <bsd.port.pre.mk>
 
@@ -156,6 +157,13 @@
 CONFIGURE_ARGS+=	--disable-gopher
 .endif
 
+.if defined(WITH_MOUSE)
+CONFIGURE_ARGS+=	--enable-mouse
+.else
+CONFIGURE_ARGS+=	--disable-mouse
+.endif
+
+
 .if defined(WITH_FINGER)
 CONFIGURE_ARGS+=	--enable-finger
 .else


>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list