summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-04-29 20:20:42 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-04-29 20:20:42 +0000
commit1d63e8c9dbc7f867ea6aad518b2feba2c74af6b5 (patch)
treebe486ca5792cbe97bf64e4bd6b408cd45dc9ed13 /app-crypt
parentRevbump to remove ecj from RDEPEND as it's used only build-time. Also make th... (diff)
downloadgentoo-2-1d63e8c9dbc7f867ea6aad518b2feba2c74af6b5.tar.gz
gentoo-2-1d63e8c9dbc7f867ea6aad518b2feba2c74af6b5.tar.bz2
gentoo-2-1d63e8c9dbc7f867ea6aad518b2feba2c74af6b5.zip
Delete older ebuild.
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/xca/files/xca-0.6.4-openssl.patch17
-rw-r--r--app-crypt/xca/xca-0.6.4.ebuild57
2 files changed, 0 insertions, 74 deletions
diff --git a/app-crypt/xca/files/xca-0.6.4-openssl.patch b/app-crypt/xca/files/xca-0.6.4-openssl.patch
deleted file mode 100644
index 929bceb0d643..000000000000
--- a/app-crypt/xca/files/xca-0.6.4-openssl.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff -urNp xca-0.6.4.org/lib/x509rev.cpp xca-0.6.4/lib/x509rev.cpp
---- xca-0.6.4.org/lib/x509rev.cpp 2007-08-13 21:55:50.000000000 +0300
-+++ xca-0.6.4/lib/x509rev.cpp 2007-10-23 17:35:42.000000000 +0200
-@@ -7,7 +7,12 @@
-
- #include "x509rev.h"
-
--#if OPENSSL_VERSION_NUMBER >= 0x00908000L
-+#if OPENSSL_VERSION_NUMBER >= 0x0090806fL
-+#define X509_REVOKED_dup(x5r) (X509_REVOKED *)ASN1_dup( \
-+ (i2d_of_void*)i2d_X509_REVOKED, \
-+ (d2i_of_void*)d2i_X509_REVOKED, \
-+ (char *)x5r)
-+#elif OPENSSL_VERSION_NUMBER >= 0x00908000L
- #define X509_REVOKED_dup(x5r) \
- ASN1_dup_of (X509_REVOKED, i2d_X509_REVOKED, d2i_X509_REVOKED, x5r)
-
diff --git a/app-crypt/xca/xca-0.6.4.ebuild b/app-crypt/xca/xca-0.6.4.ebuild
deleted file mode 100644
index 47262adf7a01..000000000000
--- a/app-crypt/xca/xca-0.6.4.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/xca/xca-0.6.4.ebuild,v 1.8 2009/12/16 15:53:56 ssuominen Exp $
-
-EAPI="1"
-inherit eutils toolchain-funcs flag-o-matic
-
-DESCRIPTION="A graphical user interface to OpenSSL, RSA public keys, certificates, signing requests and revokation lists"
-HOMEPAGE="http://www.hohnstaedt.de/xca.html"
-SRC_URI="mirror://sourceforge/xca/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="doc"
-
-RDEPEND=">=dev-libs/openssl-0.9.8
- x11-libs/qt-gui:4"
-DEPEND="${RDEPEND}
- doc? ( app-text/linuxdoc-tools )"
-
-# Upstream:
-# http://sourceforge.net/tracker/index.php?func=detail&aid=1800298&group_id=62274&atid=500028
-#
-# 1. Qt detection.
-# 2. doc hacks.
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}/${P}-build.patch"
- epatch "${FILESDIR}/${P}-openssl.patch"
-}
-
-src_compile() {
- local LINUXDOC
- use doc || LINUXDOC='touch $@ && true'
-
- QTDIR=/usr \
- STRIP="true" \
- LINUXDOC="${LINUXDOC}" \
- CC="$(tc-getCC)" \
- LD="$(tc-getLD)" \
- LDFLAGS="$(raw-ldflags)" \
- prefix=/usr \
- ./configure || die "configure failed"
- emake || die "emake failed"
-}
-
-src_install() {
- emake destdir="${D}" mandir="share/man" install || die "install failed"
-
- dodoc AUTHORS
-
- insinto /etc/xca
- doins misc/*.txt
-}