From owner-freebsd-questions@FreeBSD.ORG Fri Sep 8 01:41:40 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 4B9CD16A4E0 for ; Fri, 8 Sep 2006 01:41:40 +0000 (UTC) (envelope-from bc979@lafn.org) Received: from zoot.lafn.org (zoot.lafn.ORG [206.117.18.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEE4943D45 for ; Fri, 8 Sep 2006 01:41:39 +0000 (GMT) (envelope-from bc979@lafn.org) Received: from [192.168.0.103] (pool-72-66-18-56.washdc.fios.verizon.net [72.66.18.56]) (authenticated bits=0) by zoot.lafn.org (8.13.6/8.13.4) with ESMTP id k881fbbY023774 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO) for ; Thu, 7 Sep 2006 18:41:39 -0700 (PDT) (envelope-from bc979@lafn.org) Mime-Version: 1.0 (Apple Message framework v752.2) Content-Transfer-Encoding: 7bit Message-Id: Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed To: freebsd-questions From: Doug Hardie Date: Thu, 7 Sep 2006 18:41:37 -0700 X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: ClamAV 0.88/1820/Thu Sep 7 17:42:26 2006 on zoot.lafn.org X-Virus-Status: Clean Subject: portconf 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: Fri, 08 Sep 2006 01:41:40 -0000 I have been trying to figure out how to configure portconf. The 3 examples given are not much help with complex ports. I am starting with the dspam port (mail/dspam) as if I can figure that one out the rest should be easy. I first tried to use the arguments from the configure command: mail/dspam: CONFIGURE_ARGS=--with-logdir=/var/log/dspam \ --with-dspam-home=/var/db/dspam \ --with-dspam-home-owner=root \ --with-dspam-home-group=mail \ --with-dspam-home-mode=0770 \ --with-dspam-owner=root \ --with-dspam-group=mail \ --enable-homedir \ --with-storage-driver=hash_drv \ --with-delivery-agent=/usr/sbin/sendmail \ --with-dspam-mode=4511 \ --prefix=/usr/local That still brought up the options selection menu. Hitting cancel on that caused the port to start to build, but it still tried to download mysql 5.0 which I don't want. The above configure command is how I normall build dspam - in the dspam directory. Then I tried to select the options from Makefile entering the options I wanted (haven't figured out how to sent the drectories though): mail/dspam: WITH SYSLOG | DEBUG | HASH USER_HOMEDIR | SENDMAIL | SENDMAIL_LDA That skips the options selection menu fine, but still tries to download mysql 5.0 which I don't want. I then tried to add the WITHOUT options: mail/dspam: WITH SYSLOG | DEBUG | HASH USER_HOMEDIR | SENDMAIL | SENDMAIL_LDA WITHOUT DAEMON | MYSQL50 | POSTGRESQL | SQLITE3 Same results. What am I doing wrong?