views:

44

answers:

3

I've found a SourceForge project with a solid core that I would like to improve. The project hasn't been updated since 2007 so I assume it is "dead". I sent an e-mail asking to become a contributor to the listed project manager last week but still haven't received a response. The project is licensed under the GNU GPL v2. I would like to contribute to the current project but that doesn't appear to be possible.

Can I modify the current source version of the project and release this modified project? I would keep the same license on the modified project.

A: 

yes this is the whole point of the GPL, take it, improve it share it.

Martin Beckett
A: 

Yes, you can even change licenses to GPLv3 if you want...

programble
+3  A: 

Yes, the GPL V2.0 is still very much in effect, and still holds value. You can still take, modify, use as you wish, with the main caveat that you share your source code derived from the GPL'd source with others.

As per the GPL V3.0, when your release your source, you can license your work under the GPL V3.0. You can convert 2.0 to 3.0 with new releases but not backwards from 3->2. Whether the existing work's license is converted is entirely up to the current author.

A good read can be found at GPL Quick Guide

FWishbringer
Does the new project have to keep the same name? What needs to stay in the code/project moving forward?
Jared Pearson
A really simple breakdown of how this works... You can use any or all of the previous source code. You can create a new project or fork the existing project. Regardless, you can name the new project whatever you wish.Source code based on/using old source -must- be GPL 2 or 3. I suggest putting entire project under GPL 3. Any licenses or copyrights should stay in source. Append your copyrights to theirs.Follow the GPL guidelines on including licensing information when appending.Any source that is from that project must be available.-Hope this helps.
FWishbringer