From owner-freebsd-ports@FreeBSD.ORG Tue Aug 7 12:29:34 2007 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 EDAA016A418 for ; Tue, 7 Aug 2007 12:29:34 +0000 (UTC) (envelope-from rakheshster@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.237]) by mx1.freebsd.org (Postfix) with ESMTP id A800C13C4CB for ; Tue, 7 Aug 2007 12:29:34 +0000 (UTC) (envelope-from rakheshster@gmail.com) Received: by wr-out-0506.google.com with SMTP id 67so621851wri for ; Tue, 07 Aug 2007 05:29:33 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:received:date:x-x-sender:to:subject:message-id:mime-version:content-type:from:sender; b=ieYtDpy9p4+mRMoncdexIR6kmoZyfKtmIyl5u7XFoHQnrugKl118abOlDWU2iEtBgt8SQgAKeKUDKrH/YlJAgLNohaySUWun+4HYQdIjnxvDKk/V9wgm7nXVMuTh6yr6a1BKIZ2RndX3QsMwplfthC3DMbQgXkh6waoQyvcw630= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:date:x-x-sender:to:subject:message-id:mime-version:content-type:from:sender; b=el2SDTjLznzjJVAqoao8l7tBPM54XTqYC4/BPMKzFHosuqXlJpWR3T/mjYEe3p2dK+QgaZDkNHBUwKpHNyrjJUnQh5SAshARUyQogTDWqaYAEFP/L4SUOqaeEtLV0bwfxm+x14ad2tRRpwKYCK9cFJfk0foHIw2RA7Ni3T9Pwpg= Received: by 10.90.89.5 with SMTP id m5mr5732228agb.1186489773106; Tue, 07 Aug 2007 05:29:33 -0700 (PDT) Received: from smtp.home.rakhesh.com ( [82.178.137.21]) by mx.google.com with ESMTPS id o29sm8491770elf.2007.08.07.05.29.22 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 07 Aug 2007 05:29:25 -0700 (PDT) Received: from obelix.home.rakhesh.com (obelix.home.rakhesh.com [192.168.17.13]) by smtp.home.rakhesh.com (Postfix) with ESMTP id AF0A711420 for ; Tue, 7 Aug 2007 16:18:11 +0400 (GST) Date: Tue, 7 Aug 2007 16:17:52 +0400 (GST) X-X-Sender: rakhesh@obelix.home.rakhesh.com To: freebsd-ports@freebsd.org Message-ID: <20070807160649.Y22638@obelix.home.rakhesh.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed From: Rakhesh Sasidharan Sender: Rakhesh Sasidharan Subject: Building Pine with PASSFILE option 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: Tue, 07 Aug 2007 12:29:35 -0000 Hi, I understand one can compile the email client Pine with an option PASSFILE= to enable the option of saving your mail account passwords. The Pine website talks about it and so do many sites all over the net. FreeBSD's ports do not seem to offer such an option. I went through the Pine Makefile, however, and I see that the "EXTRA_OPTS" variable is what's used to compile Pine with extra configurable options. So my question is this: if I want to compile Pine from ports with this PASSFILE option, can I do something like the following in /usr/ports/mail/pine4? # make EXTRA_OPTS+=PASSFILE=.pine.pwd install I used the "+=" coz I got the got the impression that adds onto the existing extra options. And if I want to make this permanent, can I define it in /etc/make.conf accordingly? .if ${.CURDIR:M*/mail/pine4} EXTRA_OPTS+= PASSFILE=.pine.pwd .endif Regards, Rakhesh