From owner-freebsd-ports@FreeBSD.ORG Thu Feb 25 04:59:42 2010 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E5828106564A; Thu, 25 Feb 2010 04:59:42 +0000 (UTC) (envelope-from amvandemore@gmail.com) Received: from mail-pw0-f54.google.com (mail-pw0-f54.google.com [209.85.160.54]) by mx1.freebsd.org (Postfix) with ESMTP id B249E8FC08; Thu, 25 Feb 2010 04:59:42 +0000 (UTC) Received: by pwj7 with SMTP id 7so6079447pwj.13 for ; Wed, 24 Feb 2010 20:59:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=2rCBZvNdFHu+OAsjHSncA858mWpX67s7x2zBxhAJw5g=; b=x0BrVVaI3XTW/okyJHWwSIdGy0uusBkZe9iJcPEfFX6bZdQ2dGgpy2vjMMOpxHieNZ lRDCUQdOP7vU2pT307r7Km90ePh95t5N0cH/STnmCGGxyRUrE0XE7QXLefgCmwkDB+rQ w/nqkVgPKLeRErs8e0oy1T6EY75Hanr4W9Bwk= 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 :cc:content-type; b=HvCKedL07vBuLIsa8VixeKHTAMW67dA3Mj2K8W5nkeueULSCi48oIlP0V/f6R37Sos MJ5LkDPIvUBAMi6a7Z+BVj0JXMFkmdcm6QhbBO7givoLUcwOA24QLUj1ONWchLaA+FkN HLddI0g8kGmmajWQw+NOHR/UHDbyQi9mjNeSA= MIME-Version: 1.0 Received: by 10.142.207.21 with SMTP id e21mr336551wfg.178.1267072127939; Wed, 24 Feb 2010 20:28:47 -0800 (PST) In-Reply-To: <4B856BD9.9060604@gmail.com> References: <4B856BD9.9060604@gmail.com> Date: Wed, 24 Feb 2010 22:28:47 -0600 Message-ID: <6201873e1002242028n662ab97evf12f966f7b48ea73@mail.gmail.com> From: Adam Vande More To: jimmiejaz@gmail.com Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org, freebsd-python@freebsd.org Subject: Re: kde4/python26 and pth help. 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: Thu, 25 Feb 2010 04:59:43 -0000 On Wed, Feb 24, 2010 at 12:11 PM, Jimmie James wrote: > On a freshly installed 8-STABLE box (4 days old) and up to date ports, KDE4 > will not install for me, always the same errors. I've even removed all ports > and reinstalled from scratch and hit the same errors. I have no > /etc/make.conf. I'm at a loss here, I have no idea why this is happening. > I even did a portupgrade -fRru python26 and tried portmaster, and plain > old make in the ports that fail. > My script to install from a clean install is portsnap fetch update cd /usr/ports/ports-mgmt/portmaster make install clean && rehash portmaster -d x11-servers/xorg-server x11-drivers/xf86-input-mouse x11-drivers/xf86-input-keyboard x11-drivers/{YOUR VIDEO DRIVER PORT} echo 'dbus_enable="YES"\nhald_enable="YES"\n' >> /etc/rc.conf then you'll have to do whatever is necessary for video driver install eg kldload nvidia and make it permanent /boot/loader.conf Once your driver is live, you create xorg.conf file by Xorg -config xorg.conf.new cp xorg.conf.new /etc/X11/xorg.conf then I manually add in this line to /etc/ttys ttyv8 "/usr/local/kde4/bin/kdm -nodaemon" xterm on secure and comment ttyv8 "/usr/local/bin/xdm -nodaemon" xterm off secure Provided you don't have to do anything special for say the nvidia driver, all's that's do this the hal guys maybe didn't do such a back job after all As for you error, I don't know what happened. I used to see those happen on a massive upgrade when using portupgrade. I recommend portmaster. Somehow python didn't get installed correctly because /usr/local/include/python2.6/Python.h should exist if python is correctly installed. -- Adam Vande More