diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/qca-ossl |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/qca-ossl')
-rw-r--r-- | extra/qca-ossl/PKGBUILD | 30 | ||||
-rw-r--r-- | extra/qca-ossl/no-whirlpool.patch | 21 |
2 files changed, 51 insertions, 0 deletions
diff --git a/extra/qca-ossl/PKGBUILD b/extra/qca-ossl/PKGBUILD new file mode 100644 index 000000000..700e8a634 --- /dev/null +++ b/extra/qca-ossl/PKGBUILD @@ -0,0 +1,30 @@ +# $Id: $ +# Maintainer: Pierre Schmitz <pierre@archlinux.de> + +pkgname=qca-ossl +pkgver=2.0.0 +_pkgver=2.0.0-beta3 +pkgrel=3 +pkgdesc="Qt Cryptographic Architecture" +arch=('i686' 'x86_64') +url="http://delta.affinix.com/qca/" +license=('LGPL') +depends=('qca') +source=("http://delta.affinix.com/download/qca/2.0/plugins/${pkgname}-${_pkgver}.tar.bz2" + 'no-whirlpool.patch') +md5sums=('bdc62c01321385c7da8d27b3902910ce' + '1be7ee2e5f32733b90452fb46b9c69f9') + +build() { + cd $srcdir/${pkgname}-${_pkgver} + patch -p1 -i $srcdir/no-whirlpool.patch + ./configure \ + --release \ + --no-separate-debug-info + make +} + +package() { + cd $srcdir/${pkgname}-${_pkgver} + make INSTALL_ROOT=$pkgdir install +} diff --git a/extra/qca-ossl/no-whirlpool.patch b/extra/qca-ossl/no-whirlpool.patch new file mode 100644 index 000000000..609ea61f2 --- /dev/null +++ b/extra/qca-ossl/no-whirlpool.patch @@ -0,0 +1,21 @@ +diff -up qca-ossl-2.0.0-beta3/qca-ossl.cpp.no-whirlpool qca-ossl-2.0.0-beta3/qca-ossl.cpp +--- qca-ossl-2.0.0-beta3/qca-ossl.cpp.no-whirlpool 2007-12-11 07:34:57.000000000 +0100 ++++ qca-ossl-2.0.0-beta3/qca-ossl.cpp 2009-01-26 14:59:42.000000000 +0100 +@@ -6597,7 +6597,7 @@ static QStringList all_hash_types() + #ifdef SHA512_DIGEST_LENGTH + list += "sha512"; + #endif +-#ifdef OBJ_whirlpool ++#ifdef WHIRLPOOL_DIGEST_LENGTH + list += "whirlpool"; + #endif + return list; +@@ -6810,7 +6810,7 @@ public: + else if ( type == "sha512" ) + return new opensslHashContext( EVP_sha512(), this, type); + #endif +-#ifdef OBJ_whirlpool ++#ifdef WHIRLPOOL_DIGEST_LENGTH + else if ( type == "whirlpool" ) + return new opensslHashContext( EVP_whirlpool(), this, type); + #endif |