[prev in list] [next in list] [prev in thread] [next in thread] 

List:       koffice
Subject:    Re: problem with kontour
From:       David Faure <david () mandrakesoft ! com>
Date:       2001-07-29 17:46:47
[Download RAW message or body]

On Sunday 29 July 2001 20:41, Juraj Bednar wrote:
> Hello,
> 
> 
>   I just downloaded yesterday's CVS build of koffice and tried to run
> Kontour. I did standard configure;make; make install. The error is here:
> 
> koffice (lib kofficecore): ERROR: Couldn't find the native MimeType in
> kontour's desktop file. Check your installation !
> 
>   Other applications work. I uninstalled previous koffice (installed
> from RPM) before. I don't want to report this as a bug, because I don't
> know if I'm not doing something wrong. 

Please run the attached script.
After that, try "kbuildsycoca", and see if it helps.

-- 
David FAURE, david@mandrakesoft.com, faure@kde.org
http://perso.mandrakesoft.com/~david/, http://www.konqueror.org/
KDE, Making The Future of Computing Available Today


["check_kontour_install.sh" (application/x-shellscript)]

#!/bin/bash
if ! kde-config ; then
  echo 'kde-config not found ! Aborting. You need a more recent KDE, or to fix your $PATH.'
  exit 1
fi

instance=kontour
applnks=`kde-config --path apps`
found=0

function checkname()
{
  f=`echo $1 | sed -e 's,//,/,g'`
  if [ -f $f ]; then
    echo -n "Found: $f... "
    mimetypes=`grep ^MimeType $f|sed -e 's/.*=//;s/;/,/g;'`
    servicetypes=`grep ^ServiceTypes $f|sed -e 's/.*=//;s/$/,/g'`
    fulllist="$mimetypes,$servicetypes"
    if echo $fulllist | grep -q "KOfficePart,"; then
      echo "ok, this is a KOfficePart"
    else
      echo '**** KOfficePart not in list of types !'
      echo Service Types: $fulllist 
      cat $f
      exit 1
    fi
    nativemime=`grep X-KDE-NativeMimeType $f`
    echo Native mimetype : $nativemime
    if echo $nativemime | grep -q "application/x-$instance"; then
      found=1
    fi
  fi
}

IFS=:
for dir in $applnks; do
  f="$dir/Office/$instance.desktop"
  checkname $f 
done 

if [ $found = 0 ]; then
  echo
  echo Now looking by filename
  echo

  for dir in $applnks; do
    echo Looking under applnk dir: $dir
    find $dir -name $instance.desktop | while read f; do
      checkname $f 
    done
  done
fi

if [ $found = 0 ]; then
  echo '***** Native mimetype not found !'
  echo $applnks
fi

echo

stfound=0
for dir in `kde-config --path servicetypes`; do
  echo Service Types dir $dir
  f=`echo $dir/kofficepart.desktop | sed -e 's,//,/,g'`
  if [ -f $f ]; then
    echo Found $f
    grep Native $f
    stfound=1
  fi
done

if [ $stfound = 0 ]; then
  echo '****** kofficepart.desktop not found!'
  kde-config --path servicetypes
else
  echo
  if [ $found = 1 ]; then
    echo "Everything looks ok"
  fi
fi



[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic