Amarok crashes X (since portupgrade)

Randy Pratt bsd-unix at embarqmail.com
Thu Nov 29 18:30:27 PST 2007


On Fri, 30 Nov 2007 00:47:01 +0000
John Murphy <freebsd001 at freeode.co.uk> wrote:

> Testing 7.0 beta2 so I should upgrade to beta3, but all was working
> well until I portupgraded yesterday. Now amarok shuts down X server:
> 
> Nov 30 00:14:37 asus kdm-bin[1146]: X server for display :0 terminated
> unexpectedly
> 
> I get a couple of lines of text if I start it from an xterm, but they
> are gone too quick to read. I will upgrade tomorrow, but my question
> is more: how can I discover which ports were upgraded most recently

I use a little shell script to find upgrade dates:

====
#!/bin/sh

cd /var/db/pkg
list="$(ls -trd */+COMMENT)"

for item in ${list}; do
   _date="`stat -f "%Sm" ${item}`"
   printf "%-25s %s\n" "${_date}" "`echo ${item} | sed 's/\/.*//'`"

done
====

I can't help with the debug part though.

Randy



-- 


More information about the freebsd-questions mailing list