diff --git a/crypto++/PKGBUILD b/crypto++/PKGBUILD deleted file mode 100644 index ddd572e84..000000000 --- a/crypto++/PKGBUILD +++ /dev/null @@ -1,50 +0,0 @@ -# -# Games Packages for Chakra, part of chakra-project.org -# -# Maintainer: Adrián Chaves Fernández (Gallaecio) - -# include global config -source ../_buildscripts/${current_repo}-${_arch}-cfg.conf - -pkgname=crypto++ -_pkgname=cryptopp -pkgver=5.6.1 -_pkgver=561 -pkgrel=3 -pkgdesc="C++ class library of cryptographic schemes." -arch=('i686' 'x86_64') -url="http://www.cryptopp.com" -license=('custom') -makedepends=('unzip') -source=("${url}/${_pkgname}${_pkgver}.zip" - 'libcrypto++.pc' - 'fedora-cryptopp-5.6.1-gcc-4.7.0.patch') -md5sums=('96cbeba0907562b077e26bcffb483828' - '2337c6edbc552d9142cae8e0854715e7' - '2175eb9fa4efec0d5362e9fb8ff575d3') - -build() { - cd "${srcdir}" - - # Patch for GCC 4.7 compiling issues - remove this when the - # fix is released upstream. - patch -Np1 -i "${srcdir}/fedora-cryptopp-5.6.1-gcc-4.7.0.patch" - - sed -i -e 's/^CXXFLAGS/#CXXFLAGS/' GNUmakefile - export CXXFLAGS="${CXXFLAGS} -DNDEBUG -fPIC" - make -f GNUmakefile - make libcryptopp.so -} - -package() { - install -d "${pkgdir}/usr"/{lib/pkgconfig,include/cryptopp} - install -m644 *.h "${pkgdir}/usr/include/${_pkgname}" - install -m644 libcryptopp.a "${pkgdir}/usr/lib" - install -m644 libcryptopp.so "${pkgdir}/usr/lib" - install -m644 "${srcdir}/libcrypto++.pc" "${pkgdir}/usr/lib/pkgconfig/libcrypto++.pc" - - # License: - install -D -m644 License.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" -} - -# vim:set ts=2 sw=2 et: diff --git a/crypto++/fedora-cryptopp-5.6.1-gcc-4.7.0.patch b/crypto++/fedora-cryptopp-5.6.1-gcc-4.7.0.patch deleted file mode 100644 index 968dda185..000000000 --- a/crypto++/fedora-cryptopp-5.6.1-gcc-4.7.0.patch +++ /dev/null @@ -1,97 +0,0 @@ ---- cryptopp/algebra.cpp 2010-08-06 18:44:32.000000000 +0300 -+++ cryptopp/algebra.cpp 2012-01-05 03:32:21.337004210 +0200 -@@ -58,7 +58,7 @@ - Element g[3]={b, a}; - unsigned int i0=0, i1=1, i2=2; - -- while (!Equal(g[i1], this->Identity())) -+ while (!this->Equal(g[i1], this->Identity())) - { - g[i2] = Mod(g[i0], g[i1]); - unsigned int t = i0; i0 = i1; i1 = i2; i2 = t; ---- cryptopp/eccrypto.cpp 2010-08-06 18:44:28.000000000 +0300 -+++ cryptopp/eccrypto.cpp 2012-01-05 04:04:08.055499801 +0200 -@@ -435,7 +435,7 @@ - StringSource ssG(param.g, true, new HexDecoder); - Element G; - bool result = GetCurve().DecodePoint(G, ssG, (size_t)ssG.MaxRetrievable()); -- SetSubgroupGenerator(G); -+ this->SetSubgroupGenerator(G); - assert(result); - - StringSource ssN(param.n, true, new HexDecoder); -@@ -591,7 +591,7 @@ - if (level >= 2 && pass) - { - const Integer &q = GetSubgroupOrder(); -- Element gq = gpc ? gpc->Exponentiate(this->GetGroupPrecomputation(), q) : ExponentiateElement(g, q); -+ Element gq = gpc ? gpc->Exponentiate(this->GetGroupPrecomputation(), q) : this->ExponentiateElement(g, q); - pass = pass && IsIdentity(gq); - } - return pass; -@@ -629,7 +629,7 @@ - typename EC::Point P; - if (!this->GetGroupParameters().GetCurve().DecodePoint(P, bt, size)) - BERDecodeError(); -- SetPublicElement(P); -+ this->SetPublicElement(P); - } - - template ---- cryptopp/eccrypto.h 2010-08-06 18:46:24.000000000 +0300 -+++ cryptopp/eccrypto.h 2012-01-05 04:04:54.672022639 +0200 -@@ -43,7 +43,7 @@ - void Initialize(const EllipticCurve &ec, const Point &G, const Integer &n, const Integer &k = Integer::Zero()) - { - this->m_groupPrecomputation.SetCurve(ec); -- SetSubgroupGenerator(G); -+ this->SetSubgroupGenerator(G); - m_n = n; - m_k = k; - } -@@ -145,9 +145,9 @@ - typedef typename EC::Point Element; - - void Initialize(const DL_GroupParameters_EC ¶ms, const Element &Q) -- {this->AccessGroupParameters() = params; SetPublicElement(Q);} -+ {this->AccessGroupParameters() = params; this->SetPublicElement(Q);} - void Initialize(const EC &ec, const Element &G, const Integer &n, const Element &Q) -- {this->AccessGroupParameters().Initialize(ec, G, n); SetPublicElement(Q);} -+ {this->AccessGroupParameters().Initialize(ec, G, n); this->SetPublicElement(Q);} - - // X509PublicKey - void BERDecodePublicKey(BufferedTransformation &bt, bool parametersPresent, size_t size); -@@ -166,9 +166,9 @@ - void Initialize(const EC &ec, const Element &G, const Integer &n, const Integer &x) - {this->AccessGroupParameters().Initialize(ec, G, n); this->SetPrivateExponent(x);} - void Initialize(RandomNumberGenerator &rng, const DL_GroupParameters_EC ¶ms) -- {GenerateRandom(rng, params);} -+ {this->GenerateRandom(rng, params);} - void Initialize(RandomNumberGenerator &rng, const EC &ec, const Element &G, const Integer &n) -- {GenerateRandom(rng, DL_GroupParameters_EC(ec, G, n));} -+ {this->GenerateRandom(rng, DL_GroupParameters_EC(ec, G, n));} - - // PKCS8PrivateKey - void BERDecodePrivateKey(BufferedTransformation &bt, bool parametersPresent, size_t size); ---- cryptopp/panama.cpp 2010-08-09 14:22:42.000000000 +0300 -+++ cryptopp/panama.cpp 2012-01-05 04:10:36.356525599 +0200 -@@ -422,7 +422,7 @@ - { - this->ThrowIfInvalidTruncatedSize(size); - -- PadLastBlock(this->BLOCKSIZE, 0x01); -+ this->PadLastBlock(this->BLOCKSIZE, 0x01); - - HashEndianCorrectedBlock(this->m_data); - ---- cryptopp/secblock.h 2012-01-03 23:15:48.287022036 +0200 -+++ cryptopp/secblock.h 2012-01-05 03:22:06.097299323 +0200 -@@ -89,7 +89,7 @@ - - pointer allocate(size_type n, const void * = NULL) - { -- CheckSize(n); -+ this->CheckSize(n); - if (n == 0) - return NULL; - diff --git a/crypto++/libcrypto++.pc b/crypto++/libcrypto++.pc deleted file mode 100644 index 698d761a7..000000000 --- a/crypto++/libcrypto++.pc +++ /dev/null @@ -1,11 +0,0 @@ -# Written by Alexander Rødseth - -prefix=/usr -libdir=${prefix}/lib -includedir=${prefix}/include - -Name: libcrypto++-5.6.1 -Description: Class library of cryptographic schemes -Version: 5.6.1 -Libs: -L${libdir} -lcryptopp -Cflags: -I${includedir}