From owner-freebsd-ports@FreeBSD.ORG Sat Dec 24 04:45:23 2005 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2B5416A41F for ; Sat, 24 Dec 2005 04:45:23 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id E039643D4C for ; Sat, 24 Dec 2005 04:45:22 +0000 (GMT) (envelope-from ringworm01@gmail.com) Received: by zproxy.gmail.com with SMTP id 8so768667nzo for ; Fri, 23 Dec 2005 20:45:22 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:user-agent:cc:references:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=Gw9K2UH8S46ruShDZ/Hjc7/BnhkdljLCKpTGML5dFRkyBLAkUFjhSdmgGW4WpFgZKUe1D6PpCPFy543UvDWttoyPLyCL/ghMRtcHwsuTLLTS4AKqFhJ46i0D9S9TqPBI+55QxVM9LElu0CWNjJjZ9vbidjaG05COlRVNSiDo5X0= Received: by 10.37.15.56 with SMTP id s56mr692768nzi; Fri, 23 Dec 2005 20:45:22 -0800 (PST) Received: from ringworm.mechee.com ( [71.102.14.129]) by mx.gmail.com with ESMTP id 17sm5419172nzo.2005.12.23.20.45.21; Fri, 23 Dec 2005 20:45:22 -0800 (PST) From: "Michael C. Shultz" To: freebsd-ports@freebsd.org Date: Fri, 23 Dec 2005 20:45:17 -0800 User-Agent: KMail/1.8.3 References: <21bc91010512232023q518c6eeej2dda453e08fcd756@mail.gmail.com> In-Reply-To: <21bc91010512232023q518c6eeej2dda453e08fcd756@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200512232045.18844.ringworm01@gmail.com> Cc: Ranko Sredojevic Subject: Re: cleaning ports manually? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Dec 2005 04:45:23 -0000 On Friday 23 December 2005 20:23, Ranko Sredojevic wrote: > I did it wrong last time. Sorry about that. Trying to fix here by posting > here... > > If I want to clean up, and really know what is inside my box, is the > following ok to do: > > pkg_delete -a > % at this point I should have just base system, right? > % do I have to rebuild the world or is it guaranteed to be independent from > anything in ports? Here is another way you migh wish to consider is you want to be left with just the base system: rm -r /usr/local rm -r /usr/X11R6 rm -r /var/db Note: I don't recomend this, there are far better ways to rebuild all ports such as (sysutils/portmanager) portmanager -u -f As far as I know the world will not be effected by removing the above directories and if it is likely that is something that should be reported through a PR (problem report). > > rebuild & install the world > rebuild & install kernel > > put back, one by one (or by dependencies) desired ports? > > How do I inspect what entered the system when making a port? /var/db/pkg/{portname}/+CONTENTS is a packing list for each installed port. > > On some list, I have seen people having problems with DRM and ati radeon > 9250 cards. > It is enabled, it is being loaded but glxgears and glxinfo are claiming no > direct rendering. > glx, dri and all the stuff is loaded through xorg.conf > Someone sugested rebuilding the Xorg since some library might need fixing > for radeon??? > Is this possible? And if it is how do I force linking some radeon-specific > code? Might want to learn how to set up xorg.conf for your specific card, its up to you to do the research on how, try googling for your card + FreeBSD > > What is the status of gnome 2.12? Does it build? I tried upgrading through > the script, but > now my gnome is totally messed up... and I was planing to learn more by > doing the > thing from beginning... so can I follow this procedure? portmanager x11/gnome2 ( add -f to force rebuilding of all dependencies, likely you won't need to do this.) is another way to build gnome if you want to avoid using the script. > > tnx, > rasha -Mike