libidn: upgrade to 0.6.14(GPLv2), and 1.19 (GPLv3)

libidn changed to GPLv3 since 2007 (its 1.0 release), so this upgrade includes two:

0.6.14 (GPLv2):
  - change SRC_URI as original doesn't work
  - remove original do_configure_prepend, which doesn't make any sense when inheriting
    autotools
  - this version includes a local copy of AC_USE_SYSTEM_EXTENSIONS which conflicts with
    latest autoconf. Actually it's not necessary and remove all references to local version

1.19 (GPLv3):
  - split a new package 'idn' for command line tools, which are licensed under GPLv3.
    keep other bits in libidn licensed under LGPLv2.1

Signed-off-by: Kevin Tian <kevin.tian@intel.com>
This commit is contained in:
Kevin Tian 2010-07-20 13:10:14 +08:00 committed by Richard Purdie
parent 856769b001
commit d86e127ea0
3 changed files with 46 additions and 16 deletions

View File

@ -1,16 +0,0 @@
DESCRIPTION = "Implementation of the Stringprep, Punycode and IDNA specifications defined by the IETF Internationalized Domain Names (IDN) working group."
HOMEPAGE = "http://www.gnu.org/software/libidn/"
SECTION = "libs"
# change to GPLv3 for >1.0 version
LICENSE = "LGPLv2.1+ & GPLv2+"
PR = "r1"
inherit pkgconfig autotools gettext
SRC_URI = "http://josefsson.org/libidn/releases/${P}.tar.gz"
EXTRA_OECONF = " --disable-tld"
do_configure_prepend () {
autoreconf -f -i -s
}

View File

@ -0,0 +1,26 @@
DESCRIPTION = "Implementation of the Stringprep, Punycode and IDNA specifications defined by the IETF Internationalized Domain Names (IDN) working group."
HOMEPAGE = "http://www.gnu.org/software/libidn/"
SECTION = "libs"
LICENSE = "LGPLv2.1+ & GPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a \
file://COPYING.LIB;md5=a6f89e2100d9b6cdffcea4f398e37343 \
file://lib/idna.h;firstline=6;endline=18;md5=6d9d5532eb28b99e860262281c540d02 \
file://src/idn.c;firstline=6;endline=18;md5=41b6aec531cc6a9d54a6c4deee251bf5"
PR = "r0"
inherit pkgconfig autotools gettext
SRC_URI = "http://alpha.gnu.org/gnu/libidn/${P}.tar.gz"
EXTRA_OECONF = " --disable-tld"
do_configure_prepend() {
# this version of libidn copies AC_USE_SYSTEM_EXTENSIONS from
# autoconf CVS because atm the autoconf it uses is a bit old
# now with cross autotool, that macro is already there and this
# local definition causes circular dependency. Actually AC_GNU_SOURCE
# is identical to AC_USE_SYSTEM_EXTENSIONS. So remove all local
# references to the latter here.
sed -i -e "/AC_REQUIRE(\[gl_USE_SYSTEM_EXTENSIONS/d" ${S}/lib/gl/m4/gnulib-comp.m4
rm -f ${S}/lib/gl/m4/extensions.m4
}

View File

@ -0,0 +1,20 @@
DESCRIPTION = "Implementation of the Stringprep, Punycode and IDNA specifications defined by the IETF Internationalized Domain Names (IDN) working group."
HOMEPAGE = "http://www.gnu.org/software/libidn/"
SECTION = "libs"
LICENSE = "LGPLv2.1+ & GPLv3+"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
file://COPYING.LIB;md5=a6f89e2100d9b6cdffcea4f398e37343 \
file://lib/idna.h;firstline=6;endline=18;md5=643beb30bf98d8c4aed59a51b86fe9ea \
file://src/idn.c;firstline=6;endline=18;md5=07a57d46977b38a2557aac446dda35dd"
PR = "r0"
inherit pkgconfig autotools gettext
SRC_URI = "http://ftp.gnu.org/gnu/libidn/${P}.tar.gz"
# command tool is under GPLv3+, while libidn itself is under LGPLv2.1+
# so package command into a separate package
PACKAGES =+ "idn"
FILES_idn = "${bindir}/*"
EXTRA_OECONF = " --disable-tld"