From owner-freebsd-ports@FreeBSD.ORG Mon Jul 30 00:13:04 2007 Return-Path: Delivered-To: ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EF54416A468; Mon, 30 Jul 2007 00:13:04 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [210.51.165.229]) by mx1.freebsd.org (Postfix) with ESMTP id 56B4113C4D5; Mon, 30 Jul 2007 00:13:03 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id 16C2BEB31B0; Mon, 30 Jul 2007 08:13:03 +0800 (CST) X-Virus-Scanned: amavisd-new at geekcn.org Received: from tarsier.geekcn.org ([210.51.165.229]) by localhost (mail.geekcn.org [210.51.165.229]) (amavisd-new, port 10024) with ESMTP id HZavWv5MW-SZ; Mon, 30 Jul 2007 08:12:58 +0800 (CST) Received: from charlie.delphij.net (unknown [61.51.109.201]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTP id 2A892EB2E11; Mon, 30 Jul 2007 08:12:58 +0800 (CST) DomainKey-Signature: a=rsa-sha1; s=default; d=delphij.net; c=nofws; q=dns; h=message-id:date:from:user-agent:mime-version:to:cc:subject: references:in-reply-to:content-type:content-transfer-encoding; b=w7azzitgIclcRrHWnf8IWOuMxVSFYx0TgBHAK7iJAPaAg5NeRs3ZBpZP2JTJV3Xb6 uNEihJkAtPb/T8ufTGntw== Message-ID: <46AD2D09.8020201@delphij.net> Date: Mon, 30 Jul 2007 08:12:57 +0800 From: Xin LI User-Agent: Thunderbird 2.0.0.5 (X11/20070721) MIME-Version: 1.0 To: Marty Heyman References: <4E2489CC-44F6-48AF-8634-012B0228D216@symas.com> In-Reply-To: <4E2489CC-44F6-48AF-8634-012B0228D216@symas.com> Content-Type: text/plain; charset=WINDOWS-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.ORG, delphij@FreeBSD.ORG Subject: Re: FreeBSD Port: openldap-server-2.3.37 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, 30 Jul 2007 00:13:05 -0000 Marty Heyman wrote: > Sorry to bother you but I'm having a problem installing > openldap-server-2.3.37. I'm new to freeBSD and LOVE the ports system. > You folk are doing great work! But ... > > ... openldap-client-2.3.37 was installed as a dependency by asterisk and > is now depended on by several installed packages. I want to run an > openldap server (slapd) on this system as well but now the Makefile > refuses to install the server modules on top of the client install and > wants me to remove openldap-client-2.3.37 (which looks painful rolling > back all the other packages that depend on it. > > Suggestions? Thanks in advance! What did make(1) told you about the conflict? My guess is that you have choosen SASL, if that's a requirement then you have no way other than a replace of openldap-client-2.3.37 with openldap-sasl-client-2.3.37, which can be done with: portupgrade -f -o net/openldap23-sasl-client openldap23-client If you don't have portupgrade installed, use ports-mgmt/portupgrade-devel or ports-mgmt/portupgrade. However, fortunately, if you don't need SASL functionality of slapd (this is the usual case), then you will be able to remove the option then install it without problem: cd /usr/ports/net/openldap23-server make config (uncheck "SASL") make clean all deinstall install Hope that helps. Cheers,