From owner-freebsd-isp@FreeBSD.ORG Mon Jan 26 21:48:53 2004 Return-Path: Delivered-To: freebsd-isp@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A317C16AA0E for ; Mon, 26 Jan 2004 21:48:50 -0800 (PST) Received: from nitrogen.nocdirect.com (nitrogen.nocdirect.com [69.73.164.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id C36F644800 for ; Mon, 26 Jan 2004 20:41:32 -0800 (PST) (envelope-from dap99@i-55.com) Received: from [69.2.39.107] (helo=watcher.puryear-it.com) by nitrogen.nocdirect.com with esmtp (Exim 4.24) id 1AlL21-0000A9-Cd for freebsd-isp@freebsd.org; Mon, 26 Jan 2004 22:40:57 -0600 Received: from localhost (unknown [127.0.0.1]) by watcher.puryear-it.com (Postfix) with ESMTP id 808D434D1F for ; Mon, 26 Jan 2004 22:39:54 -0600 (CST) Received: from watcher.puryear-it.com ([127.0.0.1]) by localhost (watcher.puryear-it.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 61207-03 for ; Mon, 26 Jan 2004 22:39:53 -0600 (CST) Received: from yourqqh4336axf (localhost [127.0.0.1]) by watcher.puryear-it.com (Postfix) with ESMTP id 2018C34D1E for ; Mon, 26 Jan 2004 22:39:53 -0600 (CST) From: To: Date: Mon, 26 Jan 2004 22:45:07 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.5510 Thread-Index: AcPkj9D0pH4EpqwTSo6CTtvTBSGNaQ== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2727.1300 Message-Id: <20040127043953.2018C34D1E@watcher.puryear-it.com> X-Virus-Scanned: by amavisd-new X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - nitrogen.nocdirect.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - i-55.com Subject: Automating Apache installs.. X-BeenThere: freebsd-isp@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Internet Services Providers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jan 2004 05:48:54 -0000 I am using FreeBSD ports to install both Apache 1.3 and PHP4. All fine and dandy, except we use apache+modssl instead of just apache. Well, both www/mod_php4 and lang/php4 have apache as a dependency. This means that if I install apache+modssl and then php4 that ports will try to install apache as well. I can of course do this: 1. Install apache 2. Install apache+modssl over apache 3. Install php4 But that's just messy. I want to automate this process, so I am trying to avoid customizing lang/php4/Makefile (i.e., changing the DEPENDS line from apache to apache+modssl). Any suggestions? I am sure others here have experience with just this problem.