diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-06-04 11:23:39 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-06-04 11:23:39 +0000 |
commit | 3ad20903639119aaa70d6be597081a8f758fec40 (patch) | |
tree | 5557a6d702c43133e82056eeee48b081f0ccbf24 /meta/packages/gnutls/gnutls_1.4.4.bb | |
parent | 08065ff374f439bb81db7800d93efa2c5cd4c212 (diff) | |
download | poky-3ad20903639119aaa70d6be597081a8f758fec40.tar.gz |
gnutls: update to 1.6.3 (upstream recommended stable version)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1852 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/gnutls/gnutls_1.4.4.bb')
-rw-r--r-- | meta/packages/gnutls/gnutls_1.4.4.bb | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/meta/packages/gnutls/gnutls_1.4.4.bb b/meta/packages/gnutls/gnutls_1.4.4.bb deleted file mode 100644 index 021bf9e416..0000000000 --- a/meta/packages/gnutls/gnutls_1.4.4.bb +++ /dev/null | |||
@@ -1,41 +0,0 @@ | |||
1 | DESCRIPTION = "GNU Transport Layer Security Library" | ||
2 | DEPENDS = "zlib libgcrypt lzo readline" | ||
3 | HOMEPAGE = "http://www.gnu.org/software/gnutls/" | ||
4 | LICENSE = "LGPL" | ||
5 | |||
6 | SRC_URI = "ftp://ftp.gnutls.org/pub/gnutls/gnutls-${PV}.tar.bz2 \ | ||
7 | file://onceonly.m4 \ | ||
8 | file://gnutls-openssl.patch;patch=1 \ | ||
9 | file://gnutls-texinfo-euro.patch;patch=1" | ||
10 | |||
11 | inherit autotools binconfig | ||
12 | |||
13 | do_configure_prepend() { | ||
14 | cp ${WORKDIR}/onceonly.m4 ${S}/m4/ | ||
15 | } | ||
16 | |||
17 | PACKAGES =+ "${PN}-openssl ${PN}-extra ${PN}-bin" | ||
18 | FILES_${PN}-openssl = "${libdir}/libgnutls-openssl.so.*" | ||
19 | FILES_${PN}-extra = "${libdir}/libgnutls-extra.so.*" | ||
20 | FILES_${PN} = "${libdir}/libgnutls.so.*" | ||
21 | FILES_${PN}-bin = "${bindir}/gnutls-serv \ | ||
22 | ${bindir}/gnutls-cli \ | ||
23 | ${bindir}/srptool \ | ||
24 | ${bindir}/certtool \ | ||
25 | ${bindir}/gnutls-srpcrypt \ | ||
26 | ${bindir}/psktool" | ||
27 | |||
28 | FILES_${PN}-dev += "${bindir}/*-config ${bindir}/gnutls-cli-debug" | ||
29 | |||
30 | EXTRA_OECONF="--with-included-opencdk --with-included-libtasn1 --with-libz-prefix=${STAGING_LIBDIR}/.. --with-libreadline-prefix=${STAGING_LIBDIR}/.." | ||
31 | |||
32 | do_stage() { | ||
33 | oe_libinstall -C lib/.libs -so -a libgnutls ${STAGING_LIBDIR} | ||
34 | oe_libinstall -C libextra/.libs -so -a libgnutls-extra ${STAGING_LIBDIR} | ||
35 | oe_libinstall -C libextra/.libs -so -a libgnutls-openssl ${STAGING_LIBDIR} | ||
36 | autotools_stage_includes | ||
37 | |||
38 | install -d ${STAGING_DATADIR}/aclocal | ||
39 | cp ${S}/lib/libgnutls.m4 ${STAGING_DATADIR}/aclocal/ | ||
40 | } | ||
41 | |||