Darrell, all,
In the patch for tdenetworks (attachment 926 / 927 in bug 1262) I solved that with cmake are not installed some files into the 'doc' that were installed with autotools:
+ knewsticker: TODO
+ kppp: costsgraphs.fig, kppp.faq.question, ttyS-cua.txt
+ krdc: authentication.eps, krdc_window.eps, preferences_profilestab.eps, preferences_rdpdefaultstab.eps, preferences_vncdefaultstab.eps, snapshot.eps, snapshot_connectionspeed.eps, snapshot_nobrowse.eps, snapshot_vncentry.eps
+ krfb: configuration_access.eps, configuration_network.eps, configuration_session.eps, connection.eps, email_invitation.eps, invitation_management.eps, personal_invitation.eps, screenshot.eps
For some files, I am not sure if this is considered a "source" and omission when installing is right - desirable? For example 'fig' and 'eps' files. Please, I need someone smarter to give me advice.
Slavek --
In the patch for tdenetworks (attachment 926 / 927 in bug 1262) I solved that with cmake are not installed some files into the 'doc' that were installed with autotools:
knewsticker: TODO
kppp: costsgraphs.fig, kppp.faq.question, ttyS-cua.txt
krdc: authentication.eps, krdc_window.eps,
preferences_profilestab.eps, preferences_rdpdefaultstab.eps, preferences_vncdefaultstab.eps, snapshot.eps, snapshot_connectionspeed.eps, snapshot_nobrowse.eps, snapshot_vncentry.eps
- krfb: configuration_access.eps,
configuration_network.eps, configuration_session.eps, connection.eps, email_invitation.eps, invitation_management.eps, personal_invitation.eps, screenshot.eps
For some files, I am not sure if this is considered a "source" and omission when installing is right - desirable? For example 'fig' and 'eps' files. Please, I need someone smarter to give me advice.
This took me a while to figure out.
Seems when automake is used, all files in each directory are added to the package, include the CMakeLists.txt files. I believe the reason is the Makefile.am file uses AUTO rather than an explicit list. We probably should fix that.
When using cmake, the files CMakeLists.txt, *.fig, *.eps, and text files are not added.
The files are unnecessary. The docbook files use the png files and not any eps or fig files. The extra text files are nice to have in the sources, but I am not thinking of any reason to have them in the final package.
Darrell
On Thursday 25 of October 2012 03:39:45 Darrell Anderson wrote:
In the patch for tdenetworks (attachment 926 / 927 in bug 1262) I solved that with cmake are not installed some files into the 'doc' that were installed with autotools:
knewsticker: TODO
kppp: costsgraphs.fig, kppp.faq.question, ttyS-cua.txt
krdc: authentication.eps, krdc_window.eps,
preferences_profilestab.eps, preferences_rdpdefaultstab.eps, preferences_vncdefaultstab.eps, snapshot.eps, snapshot_connectionspeed.eps, snapshot_nobrowse.eps, snapshot_vncentry.eps
- krfb: configuration_access.eps,
configuration_network.eps, configuration_session.eps, connection.eps, email_invitation.eps, invitation_management.eps, personal_invitation.eps, screenshot.eps
For some files, I am not sure if this is considered a "source" and omission when installing is right - desirable? For example 'fig' and 'eps' files. Please, I need someone smarter to give me advice.
This took me a while to figure out.
Seems when automake is used, all files in each directory are added to the package, include the CMakeLists.txt files. I believe the reason is the Makefile.am file uses AUTO rather than an explicit list. We probably should fix that.
When using cmake, the files CMakeLists.txt, *.fig, *.eps, and text files are not added.
The files are unnecessary. The docbook files use the png files and not any eps or fig files. The extra text files are nice to have in the sources, but I am not thinking of any reason to have them in the final package.
Darrell
I also felt that non-installed files in the 'doc' really should not be installed. I'll do a modification cmake patch.
Thank you Slavek --