From owner-freebsd-questions@FreeBSD.ORG Mon Aug 21 02:53:22 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D712B16A4E6 for ; Mon, 21 Aug 2006 02:53:22 +0000 (UTC) (envelope-from roukounas@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id D185743D64 for ; Mon, 21 Aug 2006 02:53:18 +0000 (GMT) (envelope-from roukounas@gmail.com) Received: by nz-out-0102.google.com with SMTP id x3so678848nzd for ; Sun, 20 Aug 2006 19:53:18 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:subject:message-id:in-reply-to:references:x-mailer:mime-version:content-type:content-transfer-encoding; b=IuhAjhhQZHqT2FN51n3QziEFdVn5FqEFydeuH1S1GGhzY+a9dMNntF/Q15w1hojfcRzB5bEpVaTnAQAnouaQEeNtihm97rPjowWLdi9axA96a0CDuaeGY1ttn5FVS5Qi8vHlKG/UgNACLoPaUYlrrHur+B39S35IPLO/f8lEPdU= Received: by 10.64.143.4 with SMTP id q4mr4615183qbd; Sun, 20 Aug 2006 19:53:17 -0700 (PDT) Received: from athena ( [88.96.55.70]) by mx.gmail.com with ESMTP id e18sm142603qba.2006.08.20.19.53.17; Sun, 20 Aug 2006 19:53:17 -0700 (PDT) Date: Mon, 21 Aug 2006 03:53:43 +0100 From: To: freebsd-questions@freebsd.org Message-ID: <20060821035343.2fcb964d@athena> In-Reply-To: <20060821014549.GA21704@teddy.fas.com> References: <20060821014549.GA21704@teddy.fas.com> X-Mailer: Sylpheed-Claws 2.4.0 (GTK+ 2.8.20; amd64-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: Where are teh choices stored when I build a port? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Aug 2006 02:53:22 -0000 On Sun, 20 Aug 2006 21:45:49 -0400 stan wrote: > Lately I've noticed that once I've built a given port, the > configurtaion chocies I make, in the menu, seem to be saved. Where > is this information saved? Andm how can I overide it, if I want to > rebuild the port with different options? > The options are stored in /var/db/port_name_here/options. If you do a "make rmconfig" or "rmconfig-recursive" before a "make install", then it is deleting the options file, and with a "make install" you can happily choose your favorite options again. As usual, the manual for ports # man ports will list most of the things you can do with ports. You can take a look at /usr/ports/Mk/bsd.port.mk for more information.