diff options
author | Gustavo Felisberto <humpback@gentoo.org> | 2004-12-03 20:49:13 +0000 |
---|---|---|
committer | Gustavo Felisberto <humpback@gentoo.org> | 2004-12-03 20:49:13 +0000 |
commit | 32c538c4ef826e9e271f6b99663927c0dc02af79 (patch) | |
tree | d71c975ef841489592c11176f39771ccc7922b35 /app-crypt/qca | |
parent | app-crypt/qca (diff) | |
download | historical-32c538c4ef826e9e271f6b99663927c0dc02af79.tar.gz historical-32c538c4ef826e9e271f6b99663927c0dc02af79.tar.bz2 historical-32c538c4ef826e9e271f6b99663927c0dc02af79.zip |
Initial import
Diffstat (limited to 'app-crypt/qca')
-rw-r--r-- | app-crypt/qca/ChangeLog | 9 | ||||
-rw-r--r-- | app-crypt/qca/Manifest | 4 | ||||
-rw-r--r-- | app-crypt/qca/files/digest-qca-1.0 | 1 | ||||
-rw-r--r-- | app-crypt/qca/metadata.xml | 8 | ||||
-rw-r--r-- | app-crypt/qca/qca-1.0.ebuild | 36 |
5 files changed, 58 insertions, 0 deletions
diff --git a/app-crypt/qca/ChangeLog b/app-crypt/qca/ChangeLog new file mode 100644 index 000000000000..539095ebb50d --- /dev/null +++ b/app-crypt/qca/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for app-crypt/qca +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca/ChangeLog,v 1.1 2004/12/03 20:49:13 humpback Exp $ + +*qca-1.0 (03 Dec 2004) + + 03 Dec 2004; Gustavo Felisberto <humpback@gentoo.org>; +qca-1.0.ebuild: + Initial import + diff --git a/app-crypt/qca/Manifest b/app-crypt/qca/Manifest new file mode 100644 index 000000000000..aa496fdb575c --- /dev/null +++ b/app-crypt/qca/Manifest @@ -0,0 +1,4 @@ +MD5 583d2f2aa8d2c68b83215b285d502f2c ChangeLog 317 +MD5 566cf4f89e44670d0aba4a745913d748 metadata.xml 224 +MD5 8bb60b17ea0946361f3c97bc5184e4ae qca-1.0.ebuild 848 +MD5 79ff5b8052703491612213e47cdb6947 files/digest-qca-1.0 59 diff --git a/app-crypt/qca/files/digest-qca-1.0 b/app-crypt/qca/files/digest-qca-1.0 new file mode 100644 index 000000000000..036a79023886 --- /dev/null +++ b/app-crypt/qca/files/digest-qca-1.0 @@ -0,0 +1 @@ +MD5 ee44022eb0e5b8b5df64c62630f6e6b6 qca-1.0.tar.bz2 30677 diff --git a/app-crypt/qca/metadata.xml b/app-crypt/qca/metadata.xml new file mode 100644 index 000000000000..df1a1a8242fe --- /dev/null +++ b/app-crypt/qca/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>crypto</herd> + <maintainer> + <email>crypto@gentoo.org</email> + </maintainer> +</pkgmetadata> diff --git a/app-crypt/qca/qca-1.0.ebuild b/app-crypt/qca/qca-1.0.ebuild new file mode 100644 index 000000000000..c99e5224410d --- /dev/null +++ b/app-crypt/qca/qca-1.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca/qca-1.0.ebuild,v 1.1 2004/12/03 20:49:13 humpback Exp $ + +inherit eutils + +DESCRIPTION="Qt Cryptographic Architecture (QCA)" +HOMEPAGE="http://delta.affinix.com/qca/" +SRC_URI="http://delta.affinix.com/qca//qca-${PV}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND=">=x11-libs/qt-3.3.0-r1 + >=dev-libs/openssl-0.9.6i" + +src_unpack() { + unpack ${A} + cd ${S} +# epatch ${FILESDIR}/qca-pathfix.patch || die "bad patch" +} + +src_compile() { + ./configure || die "configure failed" + sed -i \ + -e "/^CFLAGS/s:$: ${CFLAGS}:" \ + -e "/^CXXFLAGS/s:$: ${CXXFLAGS}:" \ + Makefile + emake || die "emake failed" +} + +src_install() { + make INSTALL_ROOT="${D}" install || die "make install failed" +} |