Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 119504 - kdissert-1.0.5 places /var/tmp/portage symlinks in installed docs directory
Summary: kdissert-1.0.5 places /var/tmp/portage symlinks in installed docs directory
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] KDE (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Gentoo KDE team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-01-18 20:52 UTC by Alan Mimms
Modified: 2006-02-21 15:28 UTC (History)
1 user (show)

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 Alan Mimms 2006-01-18 20:52:46 UTC
The scons build for kdissert needs COPY not symlink the documentation files.  Otherwise, the install step copies the newly built KDE-style documentation into /usr/kde/3.4/share/doc/HTML/en/kdissert (for example) and two of the files are actually symlinks to the /var/tmp/portage tree where the product was built!

This was the kdissert-1.0.5 ebuild.
Comment 1 Alan Mimms 2006-01-18 21:04:44 UTC
I looked a bit deeper and it looks like bksys/generic.py has

		lenv.SetOption('duplicate', 'soft-copy')

which causes soft links (symlinks) to be used rather than copying the files.

I changed it to

		lenv.SetOption('duplicate', 'copy')

and it fixed my problem.
Comment 2 Carsten Lohrke (RETIRED) gentoo-dev 2006-02-21 15:28:50 UTC
Thanks for your report, Alan.