From owner-freebsd-ports@FreeBSD.ORG Tue Feb 18 16:04:44 2014 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3B65015D for ; Tue, 18 Feb 2014 16:04:44 +0000 (UTC) Received: from mail-ee0-x231.google.com (mail-ee0-x231.google.com [IPv6:2a00:1450:4013:c00::231]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C3E361631 for ; Tue, 18 Feb 2014 16:04:43 +0000 (UTC) Received: by mail-ee0-f49.google.com with SMTP id d17so7909057eek.36 for ; Tue, 18 Feb 2014 08:04:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=IkC9USsnzJVpSes9mdhpgpF4iFGFuTBCjYbjC37jCVs=; b=DGaxFZwJjlycMs+oHheTyT5omIg6y3yPHiSdvKFUw8e88EIe0B5UvryIGLrIL+vA84 s8talAT4M/FqMaqfzpiLNNcB+x0WJ/7aRr48BzjdoXV8sMNlZ2B0AmfhYRIUFPwl2nCc I5VEmjza9kkpGyAKLZO+YEleUXtHQoncP9ErI4atNiAGWt3IlUn3BDONQxenWDxgDa17 DCAeKikFY3nSS4eg/Uf0lhXgSJnZW9BXnRyGLY3UVgLZTcgdf8wTtZwopFVdueNsEPK4 AD1TAu5yJgD/91iOUTBuELb6/RCp8mVMCFCPHYdgJuoGlWM1xeH0XXJ30Qi+Hncw1ppV zFXw== X-Received: by 10.15.26.199 with SMTP id n47mr34834140eeu.30.1392739482206; Tue, 18 Feb 2014 08:04:42 -0800 (PST) Received: from [192.168.1.129] ([193.173.55.180]) by mx.google.com with ESMTPSA id d9sm71681645eei.9.2014.02.18.08.04.40 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 18 Feb 2014 08:04:40 -0800 (PST) Message-ID: <5303848D.2090801@gmail.com> Date: Tue, 18 Feb 2014 17:04:29 +0100 From: Johan Hendriks User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: Jos Chrispijn Subject: Re: Dovecot References: <5303806F.4090401@webrz.net> In-Reply-To: <5303806F.4090401@webrz.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Feb 2014 16:04:44 -0000 Jos Chrispijn schreef: > Just got an error on Dovecot ports. > As shown I use dovecot 1.x but for some reason v2.x want to install > (Postfix maybe?) > ===> dovecot2-2.2.10 conflicts with installed package(s): > dovecot-1.2.17 > They install files into the same place. > You may want to stop build with Ctrl + C. > ===> License LGPL21 MIT accepted by the user > ===> Found saved configuration for dovecot2-2.2.10 > => dovecot-2.2.10.tar.gz doesn't seem to exist in > /usr/ports/distfiles/. > => Attempting to fetch > [1]http://www.dovecot.org/releases/2.2/dovecot-2.2.10.tar.gz > dovecot-2.2.10.tar.gz 100% of 4451 kB 1594 kBps > 00m03s > ===> Fetching all distfiles required by dovecot2-2.2.10 for building > ===> dovecot2-2.2.10 conflicts with installed package(s): > dovecot-1.2.17 > They will not build together. > Please remove them first with pkg_delete(1). > *** [check-build-conflicts] Error code 1 > Stop in /usr/ports/mail/dovecot2. > *** [build] Error code 1 > Stop in /usr/ports/mail/dovecot2. > ** Command failed [exit code 1]: /usr/bin/script -qa > /tmp/portinstall20140218-23988-1tc6fgn env make > ** Fix the problem and try again. > ** Listing the failed packages (-:ignored / *:skipped / !:failed) > ! mail/dovecot2 (unknown build error) > Command failed [exit code 1]: /usr/local/sbin/portinstall mail/dovecot2 > how can I solve this issue? Thanks, > Jos Chrispijn > > References > > 1. http://www.dovecot.org/releases/2.2/dovecot-2.2.10.tar.gz > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" You have dovecot 1.2.17 installed, and dovecot is split up into two ports /usr/ports/mail/dovecot and /usr/ports/mail/dovecot2 What you need to do is remove the first port, or replace the port. They both install dovecot with the same files hense the error message They install files into the same place. first method : # pkg_delete dovecot-1.2.17 or pkg delete dovecot-1.2.17 if you use pkgng # cd /usr/ports/mail/dovecot2 # make install clean second method needs portmaster . # portmaster -o mail/dovecot2 mail/dovecot This will deinstall dovecot and reinstall dovecot2 Be aware that dovecot 2.x differs a lot from dovecot 1.x, so be prepared to update the config files. So do not think you will be done within 10 minutes. regards Johan