diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-01-03 17:29:11 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-01-03 17:29:11 +0000 |
commit | 84e0b0d93b421547917122d584a9fc006d837175 (patch) | |
tree | 4cbdd564633a9e5f4153c6182687669e62f29624 /app-crypt/qca-tls | |
parent | fix KEYWORDS #37104 #36445 (diff) | |
download | gentoo-2-84e0b0d93b421547917122d584a9fc006d837175.tar.gz gentoo-2-84e0b0d93b421547917122d584a9fc006d837175.tar.bz2 gentoo-2-84e0b0d93b421547917122d584a9fc006d837175.zip |
initial ebuild #37044
Diffstat (limited to 'app-crypt/qca-tls')
-rw-r--r-- | app-crypt/qca-tls/ChangeLog | 8 | ||||
-rw-r--r-- | app-crypt/qca-tls/files/digest-qca-tls-1.0 | 1 | ||||
-rw-r--r-- | app-crypt/qca-tls/qca-tls-1.0.ebuild | 29 |
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 +} |