From owner-freebsd-ports@FreeBSD.ORG Fri Oct 16 01:40:12 2009 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A0D9106566B for ; Fri, 16 Oct 2009 01:40:12 +0000 (UTC) (envelope-from artyom@zool.in.ua) Received: from mx15.ukraine.com.ua (mx15.ukraine.com.ua [195.64.184.5]) by mx1.freebsd.org (Postfix) with ESMTP id 2845C8FC08 for ; Fri, 16 Oct 2009 01:40:12 +0000 (UTC) Received: from artem.localnet (154-104-215-95.pool.lecos.ua [95.215.104.154]) by mx15.ukraine.com.ua (Postfix) with ESMTPA id 244D8C3CF38 for ; Fri, 16 Oct 2009 04:17:02 +0300 (EEST) Content-Type: text/plain; charset=koi8-r; format=flowed; delsp=yes To: freebsd-ports@freebsd.org Date: Fri, 16 Oct 2009 04:11:27 +0300 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: "Bisyarin Artyom" Organization: Zool.in.Ua Message-ID: User-Agent: Opera Mail/10.00 (FreeBSD) X-Virus-Scanned: ClamAV version 0.93.3, clamav-milter version 0.93.3 on mx15.ukraine.com.ua X-Virus-Status: Clean Subject: security/gorilla X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Oct 2009 01:40:12 -0000 Hello. There is a problem with "security/gorilla" port: Gorilla application does not working after installation. It shows a dialog box which says that incr-tcl is needed, but "lang/itcl" is present. If we make a little change to "/usr/local/lib/gorilla/gorilla.tcl" and try to include itcl llibrary without exception catching, then following error message arise: == Error in startup script: version conflict for package "Tcl": have 8.5.7, need exactly 8.4 while executing "load /usr/local/lib/itcl3.3/../libitcl.so.3 Itcl" ... == Why?: Process of installing "security/gorilla" installs as dependecies "lang/tcl85" (USE_TCL_RUN=yes) and "x11-toolkits/tk85" (USE_TK=yes). Gorilla also requires "lang/itcl" which requires "lang/tcl84" (USE_TCL=84). So after Gorilla's installation we have "lang/tcl85", "lang/tcl84", "x11-toolkits/tk85" and unworking Gorilla because "lang/itcl" can work with tk84, not with tk85. I think that "security/gorilla" must require "lang/tcl84" and "x11-toolkits/tk84". This approach works fine for me. Patch: --- Makefile 2009-10-16 02:01:45.000000000 +0300 +++ myMakefile 2009-10-16 00:59:51.000000000 +0300 @@ -17,8 +17,8 @@ LIB_DEPENDS= itcl.3:${PORTSDIR}/lang/itcl RUN_DEPENDS= ${LOCALBASE}/lib/bwidget/init.tcl:${PORTSDIR}/x11-toolkits/bwidget -USE_TCL_RUN= yes -USE_TK= yes +USE_TCL_RUN= 84 +USE_TK= 84 GNU_CONFIGURE= yes NO_BUILD= yes -- Using Opera's revolutionary e-mail client: http://www.opera.com/mail/