Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 189 - kdeartwork doesn't build
Summary: kdeartwork doesn't build
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] KDE (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Dan Armak (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-01-15 18:36 UTC by Nils Ohlmeier
Modified: 2003-02-04 19:42 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.