From owner-freebsd-ports@FreeBSD.ORG Fri Jun 6 00:38:10 2014 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 092E417E for ; Fri, 6 Jun 2014 00:38:10 +0000 (UTC) Received: from mail-qg0-x236.google.com (mail-qg0-x236.google.com [IPv6:2607:f8b0:400d:c04::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B95332D3A for ; Fri, 6 Jun 2014 00:38:09 +0000 (UTC) Received: by mail-qg0-f54.google.com with SMTP id q108so2963537qgd.41 for ; Thu, 05 Jun 2014 17:38:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=subject:from:to:in-reply-to:references:disposition-notification-to :content-type:date:message-id:mime-version; bh=q9tUOiHP/2VSu3nIsSciV+JHKf69gVa/Gw6AFh+xw+c=; b=mSkrundv37QXVo7wZ0cQZMtpBjhrgOZMcHz2obaCJXJr3wJMtP1tz37E8l4Bl6Wklq pc7v3V/accKHHDcRO9XUvK0y0UCG+q28PdxoELEU+wQIisoFf7he139emkbJXy1OotSn P7poYB01+zy9Q8JzKYu1Eq705rQIg4SXpyS/KZroLsPGr3YhO0lQRtqKSpIDqVkpqUVQ FzsDnu4wOCq8Xxjc+n24R19xdCNOoTC8JvtITA/e2DRp2uCGPOGOD/ZiZ1ZZAZPrYoDR c31jmjEsKVQmwlf3uHXEqF/KPBAfbIX4EtOgK/j2lAeLn5lR1zmWGu2hOmB+bfA+wPAR 4Ogw== X-Received: by 10.224.55.6 with SMTP id s6mr1997892qag.7.1402015088788; Thu, 05 Jun 2014 17:38:08 -0700 (PDT) Received: from [192.168.6.46] ([179.184.51.72]) by mx.google.com with ESMTPSA id p23sm11404801yho.27.2014.06.05.17.38.06 for (version=SSLv3 cipher=RC4-SHA bits=128/128); Thu, 05 Jun 2014 17:38:07 -0700 (PDT) Subject: Re: Who was the mental genius From: Sergio de Almeida Lenzi To: freebsd-ports@freebsd.org In-Reply-To: <5390F047.3030906@wasikowski.net> References: <20140605211831.GA90310@spectrum.skysmurf.nl> <5390F047.3030906@wasikowski.net> Date: Thu, 05 Jun 2014 21:38:01 -0300 Message-ID: <1402015081.25027.12.camel@lenovo.toontown.lenzicasa> Mime-Version: 1.0 X-Mailer: Evolution 2.32.3 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jun 2014 00:38:10 -0000 For me, I had to upgrade an 8.2 FreeBSD to 10.0 current. and got the same issue... What I did was: 1) copy the "make" program from the 10.0 series to replace the /usr/bin/make 2) copy via tar /usr/src /usr/obj from the 10.0 to the 8.2 cd /usr/src export KERNCONF to the config in /usr/src/sys/amd64/conf make installworld make installkernel save old /etc ..... make distribution this install the new rc.d and /etc/files than copy back /etc/profile, /etc/master.passwd, /etc/group, /etc/rc.conf... to /etc fix the /boot/loader.conf.... Than boot the system in 10.0 stable... After that... the ports and portmaster started working again... so I took a list of the packages... pkg info -qo > /tmp/pkglist than delete all packages..... pkg delete -fay than pkg install $(cat /tmp/pkglist), this will install all the packages direct from freebsd.org some will not install as they do not exists.. in freebsd.org so... using portmaster --no-confirm $(cat /tmp/pkglist) builds the system in complete order that is now running on 10.0 stable... the hole process took about 6 hours.. I did it remote during the night... Hope it can help....