Bug 119504 - kdissert-1.0.5 places /var/tmp/portage symlinks in installed docs directory
Bug#: 119504 Product:  Gentoo Linux Version: unspecified Platform: All
OS/Version: Linux Status: RESOLVED Severity: normal Priority: P3
Resolution: FIXED Assigned To: kde@gentoo.org Reported By: alanm@unforgettable.com
Component: KDE
URL: 
Summary: kdissert-1.0.5 places /var/tmp/portage symlinks in installed docs directory
Keywords:  
Status Whiteboard: 
Opened: 2006-01-18 20:52 0000
Description:   Opened: 2006-01-18 20:52 0000
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 From Alan Mimms 2006-01-18 21:04:44 0000 -------
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 From Carsten Lohrke 2006-02-21 15:28:50 0000 -------
Thanks for your report, Alan.