From owner-freebsd-ports@FreeBSD.ORG Thu May 19 05:10:38 2005 Return-Path: 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 3401316A4CE; Thu, 19 May 2005 05:10:38 +0000 (GMT) Received: from jalapeno.cc.columbia.edu (jalapeno.cc.columbia.edu [128.59.29.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 822F343DD4; Thu, 19 May 2005 05:10:37 +0000 (GMT) (envelope-from powers-freebsd@b2pi.com) Received: from ph15135powers10.cpmc.columbia.edu (ph15135powers10.cpmc.columbia.edu [156.145.110.176]) (user=bbp2006 mech=PLAIN bits=0)j4J5AUrC001846 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 19 May 2005 01:10:37 -0400 (EDT) Date: Thu, 19 May 2005 01:10:30 -0400 From: "Brent B. Powers" To: oliver@freebsd.org Message-ID: <36709248BA8EF4EC892667AE@ph15135powers10.cpmc.columbia.edu> X-Mailer: Mulberry/3.1.6 (Win32) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-No-Spam-Score: Local X-Scanned-By: MIMEDefang 2.48 on 128.59.29.5 cc: ports@freebsd.org Subject: FreeBS Port: vqadmin-2.3.6 qmail location problem X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 May 2005 05:10:38 -0000 If one uses a non-standard location (like /usr/local/qmail) with the mail/vqadmin port, it breaks and complains that it can't find qmail. The following patch addresses the problem: --- Makefile.orig Thu May 19 00:44:39 2005 +++ Makefile Thu May 19 00:49:14 2005 @@ -24,9 +24,11 @@ CGIBINDIR?= www/cgi-bin-dist WEBDATADIR?= www/data-dist +QMAIL_DIR?= /var/qmail CONFIGURE_ARGS= --enable-cgibindir=${PREFIX}/${CGIBINDIR} \ - --enable-htmldir=${PREFIX}/${WEBDATADIR} + --enable-htmldir=${PREFIX}/${WEBDATADIR} \ + --enable-qmaildir=${QMAIL_DIR} .include