summaryrefslogtreecommitdiffstats
path: root/meta/packages/libgcrypt/libgcrypt_1.2.1.bb
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-12-22 10:43:59 +0000
committerRichard Purdie <richard@openedhand.com>2006-12-22 10:43:59 +0000
commitcb3389f46d79638a7c13184a9d7590db7811dfa5 (patch)
treeb672d34b2f72c0906a03d3eea47d4b1fa5ebf0f9 /meta/packages/libgcrypt/libgcrypt_1.2.1.bb
parentc2a8c315154abb6d9680253acb5c3f676b51a4f2 (diff)
downloadpoky-cb3389f46d79638a7c13184a9d7590db7811dfa5.tar.gz
Drop old versions of leafpad, zlib, gnutls, libgcrypt, file
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1074 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/libgcrypt/libgcrypt_1.2.1.bb')
-rw-r--r--meta/packages/libgcrypt/libgcrypt_1.2.1.bb28
1 files changed, 0 insertions, 28 deletions
diff --git a/meta/packages/libgcrypt/libgcrypt_1.2.1.bb b/meta/packages/libgcrypt/libgcrypt_1.2.1.bb
deleted file mode 100644
index 3f4942cae5..0000000000
--- a/meta/packages/libgcrypt/libgcrypt_1.2.1.bb
+++ /dev/null
@@ -1,28 +0,0 @@
1DESCRIPTION = "A general purpose cryptographic library based on the code from GnuPG"
2SECTION = "libs"
3PRIORITY = "optional"
4LICENSE = "GPL LGPL FDL"
5DEPENDS = "libgpg-error"
6
7# move libgcrypt-config into -dev package
8FILES_${PN} = "${libdir}/lib*.so.*"
9FILES_${PN}-dev += "${bindir}"
10
11SRC_URI = "ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-${PV}.tar.gz"
12
13inherit autotools binconfig
14
15EXTRA_OECONF = "--without-pth --disable-asm --with-capabilities"
16
17do_stage() {
18 oe_libinstall -so -C src libgcrypt ${STAGING_LIBDIR}
19 oe_libinstall -so -C src libgcrypt-pthread ${STAGING_LIBDIR}
20 install -m 0755 src/libgcrypt-config ${STAGING_BINDIR_CROSS}/
21
22 install -d ${STAGING_INCDIR}/
23 for X in gcrypt.h gcrypt-module.h
24 do
25 install -m 0644 src/${X} ${STAGING_INCDIR}/${X}
26 done
27
28}