diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-06-27 21:32:05 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-06-27 21:32:05 +0000 |
commit | c38c8cde0fbe9bd869f2e56ee35f8b62f81f0a5c (patch) | |
tree | 8616d478abc93d68ac638bf7e4446abc9f01d2fb /app-crypt/xca | |
parent | x86 stable, bug 322791 (diff) | |
download | gentoo-2-c38c8cde0fbe9bd869f2e56ee35f8b62f81f0a5c.tar.gz gentoo-2-c38c8cde0fbe9bd869f2e56ee35f8b62f81f0a5c.tar.bz2 gentoo-2-c38c8cde0fbe9bd869f2e56ee35f8b62f81f0a5c.zip |
Delete older ebuild.
Diffstat (limited to 'app-crypt/xca')
-rw-r--r-- | app-crypt/xca/Manifest | 4 | ||||
-rw-r--r-- | app-crypt/xca/files/xca-0.6.4-build.patch | 34 | ||||
-rw-r--r-- | app-crypt/xca/files/xca-0.7.0-gcc44.patch | 11 | ||||
-rw-r--r-- | app-crypt/xca/xca-0.7.0.ebuild | 60 |
4 files changed, 0 insertions, 109 deletions
diff --git a/app-crypt/xca/Manifest b/app-crypt/xca/Manifest index 82b166edd3c4..1b069e505c72 100644 --- a/app-crypt/xca/Manifest +++ b/app-crypt/xca/Manifest @@ -1,9 +1,5 @@ -AUX xca-0.6.4-build.patch 1236 RMD160 6574b6ecbfe7cebc6073850f644ad4c1a9ace426 SHA1 66159df2766b1c99b4c610999191a863a88be09c SHA256 b5d20b02750808728ede57b28a3fff5f2adde6a0d101a1b38d136f8ea023192d -AUX xca-0.7.0-gcc44.patch 321 RMD160 755ba62c106be77e1651e4f8741766d458c3fa48 SHA1 5b693347176dea3eb95aa90f3c40c624a59ced31 SHA256 5b81091e032516bcaf73a8f1250f241bb667d048e8806f7060ad0f427d57aa57 AUX xca-0.8.1-qt_detection.patch 1341 RMD160 b44ed4970526109154331439abb9eba3ce60737d SHA1 2bdad01ad0c21e217e844bafa0bd69790c07d3b2 SHA256 44b7271b12dc78858f51d4115d97a81e47d72a9e26de46d867dea3b8e04fbfb9 -DIST xca-0.7.0.tar.gz 314707 RMD160 6c49624112f961847ca582768a6e36105495fd05 SHA1 72c8fbc0655060de57ffbbed24c79ab24818da87 SHA256 97029e20a25051136529ff9c196c2ee0b1088cda57fab882abe2f2035f423e26 DIST xca-0.8.1.tar.gz 598962 RMD160 6db3388240d95c7e18e91318aea745b803bc786f SHA1 3a831e876c0fab21b5c36fbb03838972aa92770f SHA256 3261f5899450ef8e1120a020364416424701229679d2e5b0bb9c73bed6238029 -EBUILD xca-0.7.0.ebuild 1475 RMD160 329f347b0d7dcb9b9ea63ac527f97ef7289e3fb6 SHA1 f64890c786c1822c160cc2b54f65a346a6ddbf8a SHA256 fffcae1dac295ea6d95c9af90d3f6a0684a81da4b3241efa2fb3fd7391d8b551 EBUILD xca-0.8.1.ebuild 1424 RMD160 88e1b53741f514a630e86c967c3eb77f56daa2a7 SHA1 4d5619570f944325aa81a37315c11ab066457c48 SHA256 84a41d15fbaf8553bf791f5a99a34586408b4d35616e88c9e36ffbadddb992f1 MISC ChangeLog 4376 RMD160 e1c9f493cfb5300d77feba0636f65b1c858339a8 SHA1 84428022c2ff90c7fa690518cd196d52ca8f6fe7 SHA256 418b9e558c0260588f2cdd38db9d2844279eb63eb8cce67a8feaffb7ad874ea4 MISC metadata.xml 224 RMD160 74db96ad8aa1d285d83ae93a9f4a767335f55c15 SHA1 d86a171d981b45e7ed0c0b3b5059d2a63c811001 SHA256 9e9ce661a9fdb45a535ad875a247b700a70745359b27533ec29a6a46fa708e86 diff --git a/app-crypt/xca/files/xca-0.6.4-build.patch b/app-crypt/xca/files/xca-0.6.4-build.patch deleted file mode 100644 index c1292b46a990..000000000000 --- a/app-crypt/xca/files/xca-0.6.4-build.patch +++ /dev/null @@ -1,34 +0,0 @@ ---- xca-0.6.4/configure 2007-08-13 20:55:50.000000000 +0200 -+++ xca-0.6.4.new/configure 2007-09-18 14:23:10.000000000 +0200 -@@ -103,17 +103,19 @@ - # check for libs - search_lib() { - for dir in ${DIRS}; do -+for subdir in "" ${subdirs}; do - for dbn in $@; do - for suffix in so dylib obj a; do - for lib in lib out; do -- if test -r "${dir}/${lib}/lib${dbn}.${suffix}"; then -- add_lib "${dir}/${lib}" "${dbn}" "${suffix}" -- echo "Found: lib${dbn}.${suffix} at ${dir}/${lib}" -+ if test -r "${dir}/${lib}/${subdir}/lib${dbn}.${suffix}"; then -+ add_lib "${dir}/${lib}/${subdir}" "${dbn}" "${suffix}" -+ echo "Found: lib${dbn}.${suffix} at ${dir}/${lib}/${subdir}" - return 0 - fi - done - done - done -+done - done - return 1 - } -@@ -123,7 +125,7 @@ - ######################### QT - subdirs="/qt /qt4" - search_includes Qt/qobject.h || err "The QT Library headerfiles were not found. Set QTDIR appropriately." --subdirs="/qt/Qt /qt4/Qt" -+subdirs="/qt/Qt /qt4/Qt /qt4" - search_includes qobject.h || err "The QT Library headerfiles were not found. Set QTDIR appropriately." - search_lib QtGui4 QtGui || err "The QT library was not found." - search_lib c_r || true diff --git a/app-crypt/xca/files/xca-0.7.0-gcc44.patch b/app-crypt/xca/files/xca-0.7.0-gcc44.patch deleted file mode 100644 index 2889b6f00180..000000000000 --- a/app-crypt/xca/files/xca-0.7.0-gcc44.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -ur xca-0.7.0.orig/lib/db.h xca-0.7.0/lib/db.h ---- xca-0.7.0.orig/lib/db.h 2009-09-11 00:08:25.000000000 +0300 -+++ xca-0.7.0/lib/db.h 2009-10-18 20:52:31.000000000 +0300 -@@ -8,6 +8,7 @@ - #ifndef _XCA_DB_H_ - #define _XCA_DB_H_ - -+#include <stdint.h> - #include <sys/types.h> - #include <sys/stat.h> - #include <fcntl.h> diff --git a/app-crypt/xca/xca-0.7.0.ebuild b/app-crypt/xca/xca-0.7.0.ebuild deleted file mode 100644 index 5f04f3350949..000000000000 --- a/app-crypt/xca/xca-0.7.0.ebuild +++ /dev/null @@ -1,60 +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.7.0.ebuild,v 1.4 2009/11/08 20:20:03 nixnut Exp $ - -EAPI="2" - -inherit eutils flag-o-matic toolchain-funcs - -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_prepare() { - epatch "${FILESDIR}"/${PN}-0.6.4-build.patch \ - "${FILESDIR}"/${P}-gcc44.patch - sed -e 's/$(LD) $(LDFLAGS)/$(LD) $(RAW_LDFLAGS)/' -i Makefile Rules.mak || die "sed failed" -} - -src_configure() { - local LINUXDOC - use doc || LINUXDOC='touch $@ && true' - - QTDIR=/usr \ - STRIP="true" \ - LINUXDOC="${LINUXDOC}" \ - CC="$(tc-getCC)" \ - LD="$(tc-getLD)" \ - CFLAGS="${CXXFLAGS}" \ - prefix=/usr \ - ./configure || die "configure failed" -} - -src_compile() { - emake RAW_LDFLAGS="$(raw-ldflags)" || die "emake failed" -} - -src_install() { - emake destdir="${D}" mandir="share/man" install || die "emake install failed" - - dodoc AUTHORS - - insinto /etc/xca - doins misc/*.txt -} |