From owner-freebsd-questions@FreeBSD.ORG Wed Apr 10 20:14:29 2013 Return-Path: Delivered-To: questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 63353B5A; Wed, 10 Apr 2013 20:14:29 +0000 (UTC) (envelope-from brett@lariat.net) Received: from lariat.net (lariat.net [66.62.230.51]) by mx1.freebsd.org (Postfix) with ESMTP id EABD3806; Wed, 10 Apr 2013 20:14:28 +0000 (UTC) Received: from Toshi.lariat.net (IDENT:ppp1000.lariat.net@lariat.net [66.119.58.2] (may be forged)) by lariat.net (8.9.3/8.9.3) with ESMTP id OAA01702; Wed, 10 Apr 2013 14:14:25 -0600 (MDT) Message-Id: <201304102014.OAA01702@lariat.net> X-Mailer: QUALCOMM Windows Eudora Version 7.1.0.9 Date: Wed, 10 Apr 2013 14:14:21 -0600 To: glarkin@FreeBSD.org From: Brett Glass Subject: Re: When will binary packages be back? In-Reply-To: <5165B17A.9080707@FreeBSD.org> References: <201304101739.LAA29126@lariat.net> <201304101819.MAA29795@lariat.net> <5165B17A.9080707@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Cc: pete wright , freebsd-questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Apr 2013 20:14:29 -0000 Just made that into a batch file for my library. Should be a target in the standard ports Makefile, IMHO. Maybe call it "rdistclean". Perhaps this could be submitted as a PR. --Brett Glass At 12:37 PM 4/10/2013, Greg Larkin wrote: >Here's an easy way to delete all of the distfiles for a port and its >dependencies: > >cd /usr/ports/www/apache22 # Or whatever >make distclean >make all-depends-list | xargs -n1 -I % sh -c "cd % && make distclean"