Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 189

Summary: kdeartwork doesn't build
Product: Gentoo Linux Reporter: Nils Ohlmeier <develop>
Component: [OLD] KDEAssignee: Dan Armak (RETIRED) <danarmak>
Status: RESOLVED FIXED    
Severity: normal    
Priority: High    
Version: 1.0 RC6 r14   
Hardware: x86   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description Nils Ohlmeier 2002-01-15 18:36:54 UTC
If i try to build kdeartwork it ends with wthis:
cp -r ./Themes BuildThemes; \
rm -rf `find BuildThemes -type d -name CVS -print`; \
( cd BuildThemes; \
for f in *; do \
if [ -d $f -a $f != "CVS" ]; then \
tar -b 16 -c -f - $f| gzip -c >
/var/tmp/portage/kdeartwork-2.2.2/image//usr/kde/2/share/apps/kthememgr/Themes/$f.ktheme;
\
fi; \
done ); \
rm -rf BuildThemes;
/bin/sh:
/var/tmp/portage/kdeartwork-2.2.2/image//usr/kde/2/share/apps/kthememgr/Themes/Eclipse.ktheme:
No such file or directory

And a tar process with which takes 100% CPU time.
Comment 1 Michael Tartsch 2002-01-16 07:09:55 UTC
I had the same problem.
The ebuild contains the following lines

src_install() {
        dodir 
${KDEDIR}/share/apps/kthememgr/Themes
        kde_src_install
}
 
dodir creates 
/usr/kde/3/share/app....
I could not detect where this ..kde/3.. come from but
temporary 
fixed it with 
  dodir ${KDE2DIR}/share/apps/kthememgr/Themes
          ^^^^^^^
Comment 2 Dan Armak (RETIRED) gentoo-dev 2002-01-17 14:50:34 UTC
OK, this was fixed with yesterday's kde-dirs.eclass typo fix. the typo set KDEDIR incorrectly.