diff options
author | Chris Larson <clarson@kergoth.com> | 2003-12-03 04:22:15 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2003-12-03 04:22:15 +0000 |
commit | 4e62832980e7c7f1d205e67c6db89dcdff200b6b (patch) | |
tree | 8a48d25578735621192b1edad8cf246818b7585b /libgcrypt | |
parent | b79d37952fe99f5821686e1810a036d25d07ab0d (diff) |
Remove unnecessary sets of the S variable, we have a sane default for that now.
BKrev: 3fcd64f7p2VYsNYNbFnMtPYuY-5tZQ
Diffstat (limited to 'libgcrypt')
-rw-r--r-- | libgcrypt/libgcrypt_1.1.12.oe | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libgcrypt/libgcrypt_1.1.12.oe b/libgcrypt/libgcrypt_1.1.12.oe index e69de29bb2..fa6f246b70 100644 --- a/libgcrypt/libgcrypt_1.1.12.oe +++ b/libgcrypt/libgcrypt_1.1.12.oe @@ -0,0 +1,26 @@ +SECTION="libs" +PRIORITY="optional" +RDEPENDS="libc6" +SECTION="libs" +DEPENDS=virtual/libc +PROVIDES=virtual/libgcrypt + +SRC_URI = "ftp://ftp.gnupg.org/gcrypt/alpha/libgcrypt/${PN}-${PV}.tar.gz" + +inherit autotools libtool + +do_stage () { + install -m 0644 src/.libs/libgcrypt.a ${STAGING_LIBDIR}/ + install -m 0755 src/.libs/libgcrypt.so.1.5.1 ${STAGING_LIBDIR}/ + + ln -sf ${STAGING_LIBDIR}/libgcrypt.so.1.5.1 ${STAGING_LIBDIR}/libgcrypt.so.1.5 + ln -sf ${STAGING_LIBDIR}/libgcrypt.so.1.5.1 ${STAGING_LIBDIR}/libgcrypt.so.1 + ln -sf ${STAGING_LIBDIR}/libgcrypt.so.1.5.1 ${STAGING_LIBDIR}/libgcrypt.so + + install -d ${STAGING_DIR}/target/include/ + for X in gcrypt.h + do + install -m 0644 src/${X} ${STAGING_DIR}/target/include/${X} + done + +} |