>From a research I've done all applications written in Perl just import the modules (like 'use Tk') into their source code, they don't ship with the full source code of the module.I think that falls under your first category:<br>
>>1. Distribute your application separately from the Perl Tk module and<br>
>>require users to install the Perl Tk module (typical);<br><br>Should my source code distribution include a verbatim copy of each license used ?<br>i.e if a module that I import is under Artistic License 1.0 and another one under Artistic License 2.0, should I also include a copy of the license (in a text file) or is just a URL link to the license sufficient? <br>
<br>and what about my binary distribution when I create one executable with all those modules/components tied together with my source?<br>Is just a README file that says "the executable application uses Perl Tk module,etc For Perl tk's license check the following URL...."<br>
something along those lines.Is that sufficient?<br><br>thanks very much again<br><br><div class="gmail_quote">On Wed, Apr 20, 2011 at 10:13 PM, Derrick Coetzee <span dir="ltr"><<a href="mailto:dc@moonflare.com">dc@moonflare.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div class="im">On Wed, Apr 20, 2011 at 4:55 AM, Dale <<a href="mailto:netxe456@gmail.com">netxe456@gmail.com</a>> wrote:<br>

> I want to write an application that uses the Perl Tk module and license my<br>
> code under GPL<br>
> It is the license of Perl Tk that buffles me :<br>
</div>> [...]<br>
<div class="im">> What does that actually mean? where should I put those terms?<br>
> inside my application's source code distribution should I also include Tk<br>
> module's source code ?<br>
<br>
</div>If you are only writing an application using the Perl Tk module, you<br>
have three choices:<br>
<br>
1. Distribute your application separately from the Perl Tk module and<br>
require users to install the Perl Tk module (typical);<br>
2. Distribute your application together with unmodified source of Perl<br>
Tk module;<br>
3. Distribute your application with binaries of Perl Tk module, and<br>
put a copy of the Perl Tk license statement in your licenses file.<br>
<br>
If you're modifying the source of the Perl Tk module, you should<br>
include the source with the original license statement(s) and you can<br>
also add a license statement for your modifications in the files you<br>
modified. This is all pretty typical for use of an open source<br>
library/module in an application.<br>
<br>
--<br>
<font color="#888888">Derrick Coetzee<br>
</font></blockquote></div><br>