From owner-freebsd-mips@FreeBSD.ORG Thu Nov 20 23:33:08 2014 Return-Path: Delivered-To: freebsd-mips@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1D4F5C35 for ; Thu, 20 Nov 2014 23:33:08 +0000 (UTC) Received: from mail-oi0-x22f.google.com (mail-oi0-x22f.google.com [IPv6:2607:f8b0:4003:c06::22f]) (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 CED10F0A for ; Thu, 20 Nov 2014 23:33:07 +0000 (UTC) Received: by mail-oi0-f47.google.com with SMTP id v63so2822318oia.6 for ; Thu, 20 Nov 2014 15:33:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=aQSvsQzHMe3iMtJ3uzBjxIXDYze5qol+blaA4x/uX60=; b=Jo+1NERpedrkX1prRx1N2h6eDrha7MTTfZh30GvI/tduurux/i+nBl1J3anpZrW+D1 jwBeaJZreG8f4NIcir2MMbd8G6CK3Cpdi2sS6mBCY13vQQzlU82QOQa7anBp+Vc1epCE MllG9f03kQFm84MC9f0UDo5BtHPFjN6jc7wPivS1cTJqlax6jmmiClwRXYCj7dwJTstl 3zROBcPTu2E4N17w1RDLxBcm4xjrcVdqCSje2DDgnqn5AbUzFUG8nFtwNQpch5NMJ2yQ kQjU85ZKFzFnJV2hCEoPdO1c/sUwGeybzIev3RtUmgBe8X3FvPEyrOrPFVrfDn3z8GGA xdxw== MIME-Version: 1.0 X-Received: by 10.60.48.4 with SMTP id h4mr919736oen.42.1416526387080; Thu, 20 Nov 2014 15:33:07 -0800 (PST) Sender: ndorfman@gmail.com Received: by 10.60.143.1 with HTTP; Thu, 20 Nov 2014 15:33:07 -0800 (PST) In-Reply-To: References: <546BA46C.4050908@gmail.com> <20141118200226.GP44537@home.opsec.eu> <20141118212630.GQ44537@home.opsec.eu> <546BBB26.5050603@gmail.com> <546BC7AE.3080705@gmail.com> <20141119004236.GA95694@anubis.morrow.me.uk> Date: Thu, 20 Nov 2014 18:33:07 -0500 X-Google-Sender-Auth: r6gHPyiY_mdnT75r-fvd40FvJAM Message-ID: Subject: Re: is pkgng=no valid? From: Nathan Dorfman To: jungle Boogie Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: freebsd-mips@freebsd.org X-BeenThere: freebsd-mips@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Nov 2014 23:33:08 -0000 On Tue, Nov 18, 2014 at 9:03 PM, Nathan Dorfman wrote: > D'oh, my memory seems to be failing me. What Ben is saying does sound > familiar now. I might have just worked around it by using something > like 'cd /usr/ports/*/pkgng && make STRIP=/bin/echo install' > OK, today, at least, that doesn't seem to work either. This does: sed -i.bak 's/^old_striplib=/#&/' $WRKDIRPREFIX/usr/ports/ports-mgmt/pkg/work/pkg-1.3.8/libtool It's enough to build a bunch of ports, but of course any that make their own static libraries will still break. E.g. if you want to build tmux, you have to do the same thing to libevent2, which bundles its own libtool: sed -i.bak 's/^old_striplib=/#&/' $WRKDIRPREFIX/usr/ports/devel/libevent2/work/libevent-2.0.21-stable/libtool Ben's strip patch is looking like the best solution for now. -nd.