From owner-freebsd-ports@FreeBSD.ORG Fri Dec 19 12:28:36 2014 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AAD57542; Fri, 19 Dec 2014 12:28:36 +0000 (UTC) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 283AB2DCA; Fri, 19 Dec 2014 12:28:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by woozle.rinet.ru (8.14.5/8.14.5) with ESMTP id sBJCQRTG005038; Fri, 19 Dec 2014 15:27:27 +0300 (MSK) (envelope-from marck@rinet.ru) Date: Fri, 19 Dec 2014 15:26:27 +0300 (MSK) From: Dmitry Morozovsky To: Max Brazhnikov Subject: security/pinentry patch for WINOUT_X11 systems Message-ID: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) X-NCC-RegID: ru.rinet X-OpenPGP-Key-ID: 6B691B03 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (woozle.rinet.ru [0.0.0.0]); Fri, 19 Dec 2014 15:27:34 +0300 (MSK) Cc: freebsd-ports@FreeBSD.org X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Dec 2014 12:28:36 -0000 Max, pinentry currently brokes if WITHOUT_X11 (or, by new world orderm OPTIONS_UNSET+=X11) is set. what do you think about the following patch? marck@castor:/FreeBSD/ports/ports/security/pinentry> svn diff Index: Makefile =================================================================== --- Makefile (revision 374940) +++ Makefile (working copy) @@ -25,7 +25,11 @@ .if !defined(PINENTRY_SLAVE) OPTIONS_MULTI= FRONTEND OPTIONS_MULTI_FRONTEND= NCURSES GTK2 QT4 +. if defined(WITHOUT_X11) || ${OPTIONS_UNSET:MX11} +OPTIONS_DEFAULT= NCURSES +. else OPTIONS_DEFAULT= ${OPTIONS_MULTI_FRONTEND} +. endif NCURSES_DESC= Curses frontend GTK2_DESC= Gtk+ 2 frontend -- Sincerely, D.Marck [DM5020, MCK-RIPE, DM3-RIPN] [ FreeBSD committer: marck@FreeBSD.org ] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------