Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 Feb 2012 17:15:14 GMT
From:      Alex <silverless@gmx.com>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/165182: Add mouse option to www/elinks config
Message-ID:  <201202151715.q1FHFEtY018683@red.freebsd.org>
Resent-Message-ID: <201202151720.q1FHK8Nm005668@freefall.freebsd.org>

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

>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:



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