I've implemented hunspell in my application and noticed that some of the dictionaries from the OpenOffice site are under GPL license. Is it legal to distribute these dictionaries files along with my application? Since my application is not a derived work of the GPL'ed dictionary, I am not violating the GPL license, right?

Thanks,

link|improve this question

67% accept rate
3  
This one is a bit of a boundary case. Consult a lawyer. – Paul Dec 1 '10 at 21:49
feedback

3 Answers

Whether word lists can be copyrighted (copywritten?) or not is an open question. In the US, at least, Feist v Rural may have some significance: http://en.wikipedia.org/wiki/Feist_v._Rural - to be able to copyright something, some originality or creativity is required. Collecting a list of words & arranging them alphabetically may not count. The Hunspell format isn't quite as simple as that, there is some grammatical information there too, but it is basically a simple alphabetical collection of words.

I also do not understand why a dictionary collector would think of licensing a dictionary in a format which is incompatible with the library's license. Hunspell is MPL/GPL/LGPL tri-licenced, so that it can be shipped with Firefox & OOo. Licensing the library differently (other than potentially BSD) doesn't make any sense to me.

OpenOffice developers asked the FSF licensing list the question, and the answer they got was that packaging dictionaries with the spelling engine is a "simple aggregation", which doesn't produce a derivative work - like a software distribution collecting programs - and as such the GPL doesn't apply. On the flip side, I asked Gervase Markham from Mozilla about this, and he said "regardless of whether we can distribute the GPL dictionaries with Firefox, we're very unlikely to, because clearly the authors didn't want that when they chose GPL", and respecting author wishes trumps all for them.

So, short answer: if you ship a GPL dictionary with some LGPL software, the whole lot might go to GPL. If you include it in a proprietary application, then the whole lot might go to GPL (or you're infringing).

But! Perhaps dictionaries, being simple collections of information, are not copyrightable, so perhaps you can legally ship them. Or, shipping dictionaries with the spell checker doesn't make a derivative work, but rather an aggregate work, which would mean the license wouldn't apply. But IANAL, and this is not legal advice.

Dave.

link|improve this answer
feedback

My understanding is (but I am not a laywer) that you are not allowed to even bundle GPL software with a software that has an incompatible license.

That's why the LGPL has been created, it allows to bundle "libraries" with a non-GPL software.

But I could be mistaken....

link|improve this answer
The last paragraph of section 5 in GPL 3, and section 2 in GPL 2, explicitly permits this. – Rosh Oxymoron Dec 26 '10 at 14:33
Thanks for the answer - good to know. Seems this has been changed in V2 then... – a_horse_with_no_name Dec 26 '10 at 21:31
Hmm, after re-reading section 5 again an again, I still don't understand it. Where is the line between an "aggregation" and a derivative work? A program that needs a GPL library or even a complete program (like MySQL) in order to work, but does not change the GPL program (i.e. only using binaries), is that considered an aggregation or a derivative work? As it will not work without the GPL software, I don't think it qualifies as aggregation any more... – a_horse_with_no_name Dec 26 '10 at 21:45
It helps to consider legal texts in context. At the time of writing (1991) it was customary to distribute software on CDs. And at the prices back then, it was also quite usual to distribute "bundles" of free applications on a single CD, with magazines etc. The exclusion specifically covers such "mere aggregation" without functional integration. – MSalters Mar 7 '11 at 12:43
feedback

Whether it is legal or not, I think it goes against the idea of the GPL.

The author(s) probably chose the GPL to promote free software. Using his/their work as part of proprietary software might not be what he/they intended.

But why not just sending an email to the OpenOffice project and ask them for permission? (Note that this might not help you if someone sues you)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.