New package: qca-2.0.3.
This commit is contained in:
parent
f4b35e2284
commit
bf4d30a1bb
4 changed files with 54 additions and 0 deletions
|
@ -1257,3 +1257,4 @@ libdbusmenu-qt.so.2 libdbusmenu-qt-0.9.2_1
|
|||
libgrantlee_gui.so.0 grantlee-0.3.0_1
|
||||
libgrantlee_core.so.0 grantlee-0.3.0_1
|
||||
libattica.so.0 attica-0.4.2_1
|
||||
libqca.so.2 qca-2.0.3_1
|
||||
|
|
1
srcpkgs/qca-devel
Symbolic link
1
srcpkgs/qca-devel
Symbolic link
|
@ -0,0 +1 @@
|
|||
qca
|
17
srcpkgs/qca/patches/gcc47.patch
Normal file
17
srcpkgs/qca/patches/gcc47.patch
Normal file
|
@ -0,0 +1,17 @@
|
|||
--- src/botantools/botan/botan/secmem.h.orig 2012-01-07 20:09:35.427999593 +0100
|
||||
+++ src/botantools/botan/botan/secmem.h 2012-01-07 20:09:52.540001422 +0100
|
||||
@@ -214,11 +214,11 @@
|
||||
|
||||
SecureVector(u32bit n = 0) { MemoryRegion<T>::init(true, n); }
|
||||
SecureVector(const T in[], u32bit n)
|
||||
- { MemoryRegion<T>::init(true); set(in, n); }
|
||||
+ { MemoryRegion<T>::init(true); this->set(in, n); }
|
||||
SecureVector(const MemoryRegion<T>& in)
|
||||
- { MemoryRegion<T>::init(true); set(in); }
|
||||
+ { MemoryRegion<T>::init(true); this->set(in); }
|
||||
SecureVector(const MemoryRegion<T>& in1, const MemoryRegion<T>& in2)
|
||||
- { MemoryRegion<T>::init(true); set(in1); append(in2); }
|
||||
+ { MemoryRegion<T>::init(true); this->set(in1); append(in2); }
|
||||
};
|
||||
|
||||
/*************************************************
|
35
srcpkgs/qca/template
Normal file
35
srcpkgs/qca/template
Normal file
|
@ -0,0 +1,35 @@
|
|||
# Template file for 'qca'
|
||||
pkgname=qca
|
||||
version=2.0.3
|
||||
revision=1
|
||||
build_style=configure
|
||||
configure_args="--prefix=/usr --disable-tests --release --no-separate-debug-info
|
||||
--certstore-path=/etc/ssl/certs/ca-certificates.crt"
|
||||
hostmakedepends="which"
|
||||
makedepends="qt-devel ca-certificates"
|
||||
short_desc="Qt Cryptographic Architecture"
|
||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||
license="LGPL-2.1"
|
||||
homepage="http://delta.affinix.com/qca/"
|
||||
distfiles="http://delta.affinix.com/download/qca/2.0/${pkgname}-${version}.tar.bz2"
|
||||
checksum=8da20c89f390954fdcfcd3c4deef379213ddb5ae9d6b5e0c917d23f5e474895f
|
||||
|
||||
do_install() {
|
||||
make INSTALL_ROOT=${DESTDIR} install
|
||||
}
|
||||
|
||||
qca-devel_package() {
|
||||
depends="qt-devel ${sourcepkg}-${version}_${revision}"
|
||||
pkg_install() {
|
||||
vmove usr/include
|
||||
vmove usr/lib/pkgconfig
|
||||
vmove usr/share/qt
|
||||
}
|
||||
}
|
||||
|
||||
qca_package() {
|
||||
depends="ca-certificates"
|
||||
pkg_install() {
|
||||
vmove usr
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue