summaryrefslogtreecommitdiffstats
path: root/meta/packages/libgcrypt
diff options
context:
space:
mode:
authorKevin Tian <kevin.tian@intel.com>2010-07-21 15:34:51 +0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-22 15:57:31 +0100
commitb4cc2b782941c2f2e17f8098302d3b0073fff3cf (patch)
tree9c958fd94794bec6a2d8dfafa7823d1a23efd513 /meta/packages/libgcrypt
parent18081058082f1cba4f63bad94ff9ade398915fed (diff)
downloadpoky-b4cc2b782941c2f2e17f8098302d3b0073fff3cf.tar.gz
pkgconfig_staging.bbclass: remove it
this is one existing for stale reason when package's own Makefile doesn't handle .pc correctly. After previous commits to remove unnecessary inheritage on it (sqlite3, libpng), the only remaining is libgcrypt. Libgcrypt itself doesn't ship a .pc and poky generates one. In this case, simply move the manual installation to its own do_install. Then it's safe to remove this class file Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Diffstat (limited to 'meta/packages/libgcrypt')
-rw-r--r--meta/packages/libgcrypt/libgcrypt.inc8
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/packages/libgcrypt/libgcrypt.inc b/meta/packages/libgcrypt/libgcrypt.inc
index 6c46087045..08fe7992fa 100644
--- a/meta/packages/libgcrypt/libgcrypt.inc
+++ b/meta/packages/libgcrypt/libgcrypt.inc
@@ -14,10 +14,16 @@ DEPENDS = "libgpg-error"
14SRC_URI = "ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-${PV}.tar.gz \ 14SRC_URI = "ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-${PV}.tar.gz \
15 file://add-pkgconfig-support.patch" 15 file://add-pkgconfig-support.patch"
16 16
17inherit autotools binconfig pkgconfig pkgconfig_stage 17inherit autotools binconfig pkgconfig
18 18
19EXTRA_OECONF = "--without-pth --disable-asm --with-capabilities" 19EXTRA_OECONF = "--without-pth --disable-asm --with-capabilities"
20 20
21# libgcrypt.pc is added locally and thus installed here
22do_install_append() {
23 install -d ${D}/${libdir}/pkgconfig
24 install -m 0644 ${S}/src/libgcrypt.pc ${D}/${libdir}/pkgconfig/
25}
26
21ARM_INSTRUCTION_SET = "arm" 27ARM_INSTRUCTION_SET = "arm"
22 28
23# move libgcrypt-config into -dev package 29# move libgcrypt-config into -dev package