From owner-freebsd-ports@FreeBSD.ORG Mon Sep 11 04:26:14 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01F3A16A40F for ; Mon, 11 Sep 2006 04:26:14 +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 AAF1543D4C for ; Mon, 11 Sep 2006 04:26:13 +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 k8B4QAUL017893 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO) for ; Sun, 10 Sep 2006 21:26:12 -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-PORTS From: Doug Hardie Date: Sun, 10 Sep 2006 21:26:11 -0700 X-Mailer: Apple Mail (2.752.2) X-Virus-Scanned: ClamAV 0.88/1846/Sun Sep 10 20:45:12 2006 on zoot.lafn.org X-Virus-Status: Clean Subject: portconf port 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: Mon, 11 Sep 2006 04:26:14 -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?