I'm looking to port the code of a GPL-licensed library from C to Java. I don't hold the copyright of the original code. Will I own the copyright on the new code? Will I be able to license it as I choose?
|
|
IANAL, but at least in the US such a porting would be a derivative work. What that means is that you don't get undisputed rights, but you do have the copyright on the port. It can be copied only with permission from the original copyright holder(s) and you. Of course, since the original is GPLed, anything that a court would rule is a derivative work is also GPLed. You don't hold all the copyrights on the ported program, so you can't license it on less restrictive terms than the GPL (without prior permission). You made a derivative work from a GPLed program, so you have to license it under the GPL if you distribute. Your copyright on the ported code is really not all that important, but you do get attribution for your porting. You could write an entirely new program, not a port, and then you'd have the copyright all by yourself, and could license as you pleased. This is of course much more work, but your copyright would be more useful. "Derivative work" is a legal term here, based in copyright law. If what you make isn't a derivative work, then the copyright is yours, and you can do as you please with it. If it is, then multiple copyrights apply. To find out what "derivative work" really means, consult references on copyright law as it applies to software. If you want to explore the edges, see a lawyer who has some expertise in copyright as it applies to software. It will be a lot cheaper to get some up-front legal advice than to get sued later. As always, I'm not a lawyer, and this isn't legal advice. |
|||
|
|
IANAL From wikipedia
And more from wiki
Your port would be a derived work of the original project |
|||||||
|