I would also like to see a BSD like license for this project.
My reasons are:
1) I found very difficult to respect LGPL whenever I want to keep part of my application closed source;
2) I do not like viral licenses and licenses that pose copatibility problems.
LGPL in general asks you to either comply with GPL or, at least, allow everybody to rebuild a modified version of the application you are distributing that uses LGPL libraries. This is easy to achieve whenever the LGPL code is in a shared library, because most of the issues are handled by the OS. However on some systems (e.g. iOS) it will not be possible to respect the LGPL license without opening the whole application.
Moreover with "difficult" licenses like LGPL it is a nightmare to understand the implication and compatibility of different pieces of code. For example what about mixing LGPL-3 and GPL-2 code sources? If you make a research you will find that they are not compatible (
http://www.gnu.org/licenses/license-list.html). The nightmare is even worse when developers add exceptions to the "standard" licenses and are using others, because you have to understand why two licenses are compatible.
Essentially when using LGPL, you must have both the knowledge of a lawyer and the one of a skilled developer simultaneously.
The main problem with LGPL for me is that it is meant to protect users, not developers (which is not necessarily a bad thing, but is not what usually developers want): it is meant to let the users modify the application they obtain, not to enforce other developers to contribute back the changes they do.
Bests,
Giulio.