(re-)Addition of gnutls and libgcrypt packages/bumps, taking maintainership. Please...
authorJoseph Cole <jnc@unknown.openembedded.org>
Mon, 13 Mar 2006 00:07:34 +0000 (00:07 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Mon, 13 Mar 2006 00:07:34 +0000 (00:07 +0000)
packages/gnutls/gnutls_1.3.5.bb [new file with mode: 0644]
packages/libgcrypt/libgcrypt_1.2.2.bb [new file with mode: 0644]

diff --git a/packages/gnutls/gnutls_1.3.5.bb b/packages/gnutls/gnutls_1.3.5.bb
new file mode 100644 (file)
index 0000000..3455ff9
--- /dev/null
@@ -0,0 +1,28 @@
+DESCRIPTION = "GNU Transport Layer Security Library"
+DEPENDS = "zlib libgcrypt lzo"
+MAINTAINER = "Eric Shattow <lucent@gmail.com>"
+
+LICENSE = "LGPL"
+
+SRC_URI = "ftp://ftp.gnutls.org/pub/gnutls/devel/gnutls-${PV}.tar.bz2"
+
+inherit autotools
+inherit binconfig
+
+PACKAGES =+ "${PN}-openssl ${PN}-extra ${PN}-bin"
+FILES_${PN}-openssl = "${libdir}/libgnutls-openssl.so.*"
+FILES_${PN}-extra = "${libdir}/libgnutls-extra.so.*"
+FILES_${PN} = "${libdir}/libgnutls.so.*"
+FILES_${PN}-bin = "${bindir}/gnutls-serv ${bindir}/gnutls-cli \
+       ${bindir}/srptool ${bindir}/certtool ${bindir}/gnutls-srpcrypt"
+FILES_${PN}-dev += "${bindir}/*-config ${bindir}/gnutls-cli-debug"
+
+EXTRA_OECONF="--with-included-opencdk --with-included-libtasn1"
+
+do_stage() {
+       oe_libinstall -C lib/.libs -so -a libgnutls ${STAGING_LIBDIR}
+       oe_libinstall -C libextra/.libs -so -a libgnutls-extra ${STAGING_LIBDIR}
+       oe_libinstall -C libextra/.libs -so -a libgnutls-openssl ${STAGING_LIBDIR}
+       autotools_stage_includes
+}
+
diff --git a/packages/libgcrypt/libgcrypt_1.2.2.bb b/packages/libgcrypt/libgcrypt_1.2.2.bb
new file mode 100644 (file)
index 0000000..cd49d0b
--- /dev/null
@@ -0,0 +1,29 @@
+DESCRIPTION = "A general purpose cryptographic library based on the code from GnuPG"
+SECTION = "libs"
+PRIORITY = "optional"
+LICENSE = "GPL LGPL FDL"
+DEPENDS = "libgpg-error"
+MAINTAINER = "Eric Shattow <lucent@gmail.com>"
+
+# move libgcrypt-config into -dev package
+FILES_${PN} = "${libdir}/lib*.so.*"
+FILES_${PN}-dev += "${bindir}"
+
+SRC_URI = "ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-${PV}.tar.gz"
+
+inherit autotools binconfig
+
+EXTRA_OECONF = "--without-pth --disable-asm --with-capabilities"
+
+do_stage() {
+       oe_libinstall -so -C src libgcrypt ${STAGING_LIBDIR}
+       oe_libinstall -so -C src libgcrypt-pthread ${STAGING_LIBDIR}
+       install -m 0755 src/libgcrypt-config ${STAGING_BINDIR}/
+
+       install -d ${STAGING_INCDIR}/
+       for X in gcrypt.h gcrypt-module.h
+       do
+               install -m 0644 src/${X} ${STAGING_INCDIR}/${X}
+       done
+
+}