1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-03 17:50:11 +02:00

BSD license disambiguation

This commit is contained in:
Ciaran Gultnieks 2012-08-21 21:59:28 +01:00
parent 55e38dbe1c
commit 2ed55dc233
3 changed files with 11 additions and 3 deletions

2
README
View File

@ -1,3 +1,5 @@
For documentation, please see the docs directory.
Alternatively, visit http://f-droid.org/manual/

View File

@ -484,7 +484,11 @@ MIT X11 license
@item
@samp{BSD}
BSD license. Some disambiguation is needed here, regarding original versions modfied versions of this license.
BSD license - the original '4-clause' version.
@item
@samp{NewBSD}
BSD license - the new, or modified, version.
@end itemize
@ -966,7 +970,7 @@ Integrating the build server setup into the main scripts is a work in progress.
Some things may not work properly yet. Talk to CiaranG if you're trying to use
this and have problems.
In addition to the basic setup sets previously described, you will also need
In addition to the basic setup previously described, you will also need
a Vagrant-compatible Debian Squeeze base box called 'debian6-32'. You can
create one of these for yourself from standard Debian installation media, as
the specification for what's required to be Vagrant-compatible is very well

View File

@ -120,8 +120,10 @@ class FDroid
switch($license) {
case 'MIT':
return 'http://www.gnu.org/licenses/license-list.html#X11License';
case 'BSD':
case 'NewBSD':
return 'http://www.gnu.org/licenses/license-list.html#ModifiedBSD';
case 'BSD':
return 'http://www.gnu.org/licenses/license-list.html#OriginalBSD';
case 'GPLv3':
case 'GPLv3+':
return 'http://www.gnu.org/licenses/license-list.html#GNUGPL';