From owner-freebsd-questions@FreeBSD.ORG Wed Jul 21 23:55:34 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 56A36106566C for ; Wed, 21 Jul 2010 23:55:34 +0000 (UTC) (envelope-from claudiu.vasadi@gmail.com) Received: from mail-wy0-f182.google.com (mail-wy0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id E0D358FC1F for ; Wed, 21 Jul 2010 23:55:33 +0000 (UTC) Received: by wyj26 with SMTP id 26so162431wyj.13 for ; Wed, 21 Jul 2010 16:55:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=bJBBcGyG4YHNLw/jrh17HE66n0XKE5+ZACkQD/DgQ64=; b=cFt6vmDEkPev8R+NFE3YP6oH/HQjg327QoJ+vvWuQ8/7RGW8TBAwK2TZNN5eJJ1QNL 9l6qkkNTA6Q4hfyqbqUzuAvP1Bj9XQAmO8XVytwirfLw9R99q5t7u5Jf9JwnkImeL8m2 QCurXi8rWrXDJP8KYZI+g1Ji+2zfmmogHs1Ds= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=V1OAlxkHUg2HzdURaLAPoc+N+K/gp6l9ORJwzmGgRi6WT4gUnYFJKRbXME9JgXwE2z NZlUVbV/REz0wMJ7vVSHFOruNb9jSaitRL4XUhOTiS1ifYf6ntvlxPwj6AsAZa0qdir5 3MDdfZFqyosfuE4KSJ1NIPLUE7qBcEKRhKaO8= MIME-Version: 1.0 Received: by 10.227.201.85 with SMTP id ez21mr927197wbb.151.1279756532829; Wed, 21 Jul 2010 16:55:32 -0700 (PDT) Received: by 10.216.12.209 with HTTP; Wed, 21 Jul 2010 16:55:32 -0700 (PDT) In-Reply-To: References: Date: Thu, 22 Jul 2010 01:55:32 +0200 Message-ID: From: claudiu vasadi To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: rmconfig from all ports tree X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jul 2010 23:55:34 -0000 one solution I just created would be: for i in `find /usr/ports/ -type directory -print`; do `cd $i && make rmconfig`;done but I am wondering if there is a "official way". man portsclean did not give me any options to do it. Another thing would be to make rmconfig in all dir's that are required to be installed by a particular meta-port, for instance kde/gnome/xfce. >