summaryrefslogtreecommitdiff
path: root/recipes/gnutls.recipe
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2014-11-12 15:44:55 -0500
committerOlivier CrĂȘte <olivier.crete@collabora.com>2014-11-12 15:44:55 -0500
commit481fd8da34cffb4db325d475837b081d6738d25e (patch)
tree73cfb8d1e785c027326b4a824d915d541fc0163e /recipes/gnutls.recipe
parent74b6864480b710d9ab399cb69d19f82d6a92e627 (diff)
gnutls: Revert license to LGPLv2Plus
Since version 3.1.10, gnutls has reverted to the lgpl v2. So let's mention that.
Diffstat (limited to 'recipes/gnutls.recipe')
-rw-r--r--recipes/gnutls.recipe4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/gnutls.recipe b/recipes/gnutls.recipe
index d548bf49..3df5839a 100644
--- a/recipes/gnutls.recipe
+++ b/recipes/gnutls.recipe
@@ -8,9 +8,9 @@ class Recipe(recipe.Recipe):
maj_ver = '.'.join(version.split('.')[0:2])
url = 'ftp://ftp.gnutls.org/gcrypt/{0}/v{1}/{0}-{2}.tar.xz'.format(name, maj_ver, version)
stype = SourceType.TARBALL
- # main library is LGPLv3+ and binaries and libgnutls-openssl are
+ # main library is LGPLv2+ and binaries and libgnutls-openssl are
# GPLv3+ and defined below
- licenses = [License.LGPLv3Plus]
+ licenses = [License.LGPLv2Plus]
configure_options = "--enable-local-libopts --disable-guile \
--enable-static --enable-zlib --enable-shared --disable-doc"
deps = ['zlib', 'nettle', 'libtasn1']