summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-01-03 17:29:11 +0000
committerMike Frysinger <vapier@gentoo.org>2004-01-03 17:29:11 +0000
commitc8ddac23a50656c53204b82eac3326747a85038e (patch)
tree3ca33e4d2d91029ba7738aaed42485947f55912d /app-crypt/qca-tls
parentfix KEYWORDS #37104 #36445 (diff)
downloadhistorical-c8ddac23a50656c53204b82eac3326747a85038e.tar.gz
historical-c8ddac23a50656c53204b82eac3326747a85038e.tar.bz2
historical-c8ddac23a50656c53204b82eac3326747a85038e.zip
initial ebuild #37044
Diffstat (limited to 'app-crypt/qca-tls')
-rw-r--r--app-crypt/qca-tls/ChangeLog8
-rw-r--r--app-crypt/qca-tls/files/digest-qca-tls-1.01
-rw-r--r--app-crypt/qca-tls/qca-tls-1.0.ebuild29
3 files changed, 38 insertions, 0 deletions
diff --git a/app-crypt/qca-tls/ChangeLog b/app-crypt/qca-tls/ChangeLog
new file mode 100644
index 000000000000..08ed676826bf
--- /dev/null
+++ b/app-crypt/qca-tls/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for app-crypt/qca-tls
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca-tls/ChangeLog,v 1.1 2004/01/03 17:29:11 vapier Exp $
+
+*qca-tls-1.0 (03 Jan 2003)
+
+ 03 Jan 2003; Mike Frysinger <vapier@gentoo.org> :
+ Initial import. Ebuild submitted by Roman Valls <brainstorm@menta.net> #37044.
diff --git a/app-crypt/qca-tls/files/digest-qca-tls-1.0 b/app-crypt/qca-tls/files/digest-qca-tls-1.0
new file mode 100644
index 000000000000..841eab57bd9b
--- /dev/null
+++ b/app-crypt/qca-tls/files/digest-qca-tls-1.0
@@ -0,0 +1 @@
+MD5 886b1f60fc31de3b1a0bd93281e27b73 qca-tls-1.0.tar.bz2 23489
diff --git a/app-crypt/qca-tls/qca-tls-1.0.ebuild b/app-crypt/qca-tls/qca-tls-1.0.ebuild
new file mode 100644
index 000000000000..0a620efcc856
--- /dev/null
+++ b/app-crypt/qca-tls/qca-tls-1.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca-tls/qca-tls-1.0.ebuild,v 1.1 2004/01/03 17:29:11 vapier Exp $
+
+
+DESCRIPTION="plugin to provide SSL/TLS capability to programs that utilize the Qt Cryptographic Architecture (QCA)"
+HOMEPAGE="http://psi.affinix.com/"
+SRC_URI="http://psi.affinix.com/beta/qca-tls-${PV}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+
+DEPEND=">=x11-libs/qt-3.1.2-r4
+ >=dev-libs/openssl-0.9.6i"
+
+src_compile() {
+ ./configure || die "configure failed"
+ sed -i \
+ -e "/^CFLAGS/s:$:${CFLAGS}:" \
+ -e "/^CXXFLAGS/s:$:${CXXFLAGS}:" \
+ Makefile
+ emake || die "emake failed"
+}
+
+src_install() {
+ emake INSTALL_ROOT="${D}" install || die "make install failed"
+ dodoc README
+}