summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIngmar Vanhassel <ingmar@gentoo.org>2008-01-18 16:47:10 +0000
committerIngmar Vanhassel <ingmar@gentoo.org>2008-01-18 16:47:10 +0000
commitc285bc8161a13288acd71c74b6fec28b79be16a7 (patch)
tree79226c24fbbd6816fa637b7b7349e02c411076e5 /app-crypt/qca-tls
parentFix slotting for =app-crypt/qca-tls-1*, thanks to Alon Bar-Lev in bug 129536. (diff)
downloadgentoo-2-c285bc8161a13288acd71c74b6fec28b79be16a7.tar.gz
gentoo-2-c285bc8161a13288acd71c74b6fec28b79be16a7.tar.bz2
gentoo-2-c285bc8161a13288acd71c74b6fec28b79be16a7.zip
Fix slotting for =app-crypt/qca-tls-1*, thanks to Alon Bar-Lev in bug 129536.
(Portage version: 2.1.4)
Diffstat (limited to 'app-crypt/qca-tls')
-rw-r--r--app-crypt/qca-tls/ChangeLog9
-rw-r--r--app-crypt/qca-tls/files/digest-qca-tls-1.0-r43
-rw-r--r--app-crypt/qca-tls/qca-tls-1.0-r4.ebuild42
3 files changed, 52 insertions, 2 deletions
diff --git a/app-crypt/qca-tls/ChangeLog b/app-crypt/qca-tls/ChangeLog
index 9cd9f71c5724..dcd790dc136c 100644
--- a/app-crypt/qca-tls/ChangeLog
+++ b/app-crypt/qca-tls/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-crypt/qca-tls
-# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca-tls/ChangeLog,v 1.46 2006/11/09 03:24:35 iluxa Exp $
+# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca-tls/ChangeLog,v 1.47 2008/01/18 16:47:09 ingmar Exp $
+
+*qca-tls-1.0-r4 (18 Jan 2008)
+
+ 18 Jan 2008; Ingmar Vanhassel <ingmar@gentoo.org> +qca-tls-1.0-r4.ebuild:
+ Fix slotting for =app-crypt/qca-tls-1*, thanks to Alon Bar-Lev in bug 129536.
09 Nov 2006; Ilya A. Volynets-Evenbakh <iluxa@gentoo.org>
qca-tls-1.0-r3.ebuild:
diff --git a/app-crypt/qca-tls/files/digest-qca-tls-1.0-r4 b/app-crypt/qca-tls/files/digest-qca-tls-1.0-r4
new file mode 100644
index 000000000000..5c73b0dd50f5
--- /dev/null
+++ b/app-crypt/qca-tls/files/digest-qca-tls-1.0-r4
@@ -0,0 +1,3 @@
+MD5 886b1f60fc31de3b1a0bd93281e27b73 qca-tls-1.0.tar.bz2 23489
+RMD160 c553782e77ab54edde7e4f0676a3caad74dfa910 qca-tls-1.0.tar.bz2 23489
+SHA256 510edd7b1be3a4ac097b2b501fa908043aaa57f3efbab8e81cee0c8ae15af0cd qca-tls-1.0.tar.bz2 23489
diff --git a/app-crypt/qca-tls/qca-tls-1.0-r4.ebuild b/app-crypt/qca-tls/qca-tls-1.0-r4.ebuild
new file mode 100644
index 000000000000..0c3ec5180187
--- /dev/null
+++ b/app-crypt/qca-tls/qca-tls-1.0-r4.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca-tls/qca-tls-1.0-r4.ebuild,v 1.1 2008/01/18 16:47:09 ingmar Exp $
+
+inherit eutils
+
+DESCRIPTION="plugin to provide SSL/TLS capability to programs that utilize the Qt Cryptographic Architecture (QCA)"
+HOMEPAGE="http://delta.affinix.com/qca/"
+SRC_URI="http://delta.affinix.com/qca/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+#alpha amd64 and ppc64 need testing
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE=""
+
+DEPEND="=app-crypt/qca-1*
+ >=dev-libs/openssl-0.9.6i"
+RDEPEND="${DEPEND}"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ epatch "${FILESDIR}"/qca-pathfix.patch
+ epatch "${FILESDIR}"/qca-openssl-0.9.8.patch
+}
+
+src_compile() {
+ ./configure || die "configure failed"
+ sed -i \
+ -e "/^CFLAGS/s:$: ${CFLAGS}:" \
+ -e "/^CXXFLAGS/s:$: ${CXXFLAGS}:" \
+ -e "/-strip/d" \
+ Makefile
+ emake || die "emake failed"
+}
+
+src_install() {
+ emake INSTALL_ROOT="${D}" install || die "make install failed"
+
+ dodoc README
+}