From 1d63e8c9dbc7f867ea6aad518b2feba2c74af6b5 Mon Sep 17 00:00:00 2001 From: Arfrever Frehtes Taifersar Arahesis Date: Thu, 29 Apr 2010 20:20:42 +0000 Subject: Delete older ebuild. --- app-crypt/xca/files/xca-0.6.4-openssl.patch | 17 --------- app-crypt/xca/xca-0.6.4.ebuild | 57 ----------------------------- 2 files changed, 74 deletions(-) delete mode 100644 app-crypt/xca/files/xca-0.6.4-openssl.patch delete mode 100644 app-crypt/xca/xca-0.6.4.ebuild (limited to 'app-crypt') 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 -} -- cgit v1.2.3-65-gdbad