summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2011-08-05 22:31:45 +0000
committerMarkos Chandras <hwoarang@gentoo.org>2011-08-05 22:31:45 +0000
commit5ebd9e111ab070ed2c9318d726c1466acdb84703 (patch)
tree6ecb7e91bfc02783acaa0fa8f5ba311097f2b253 /app-crypt
parentRemove old ebuild. Requested by Arfrever (diff)
downloadgentoo-2-5ebd9e111ab070ed2c9318d726c1466acdb84703.tar.gz
gentoo-2-5ebd9e111ab070ed2c9318d726c1466acdb84703.tar.bz2
gentoo-2-5ebd9e111ab070ed2c9318d726c1466acdb84703.zip
Remove old ebuild. Requested by Arfrever
(Portage version: 2.2.0_alpha50/cvs/Linux x86_64)
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/qca/ChangeLog5
-rw-r--r--app-crypt/qca/qca-2.0.2-r2.ebuild75
2 files changed, 4 insertions, 76 deletions
diff --git a/app-crypt/qca/ChangeLog b/app-crypt/qca/ChangeLog
index 963d40dafbea..90a5862ef895 100644
--- a/app-crypt/qca/ChangeLog
+++ b/app-crypt/qca/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-crypt/qca
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca/ChangeLog,v 1.89 2011/07/17 09:00:12 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca/ChangeLog,v 1.90 2011/08/05 22:31:41 hwoarang Exp $
+
+ 05 Aug 2011; Markos Chandras <hwoarang@gentoo.org> -qca-2.0.2-r2.ebuild:
+ Remove old ebuild. Requested by Arfrever
17 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> qca-2.0.3.ebuild:
ppc/ppc64 stable wrt #364405
diff --git a/app-crypt/qca/qca-2.0.2-r2.ebuild b/app-crypt/qca/qca-2.0.2-r2.ebuild
deleted file mode 100644
index b3945bf26f89..000000000000
--- a/app-crypt/qca/qca-2.0.2-r2.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca/qca-2.0.2-r2.ebuild,v 1.13 2010/03/26 23:32:41 yngwin Exp $
-
-EAPI="2"
-inherit eutils multilib qt4-r2
-
-DESCRIPTION="Qt Cryptographic Architecture (QCA)"
-HOMEPAGE="http://delta.affinix.com/qca/"
-SRC_URI="http://delta.affinix.com/download/${PN}/${PV%.*}/${P}.tar.bz2"
-
-LICENSE="LGPL-2"
-SLOT="2"
-KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE="aqua debug doc examples"
-RESTRICT="test"
-
-DEPEND="x11-libs/qt-core:4[debug?]"
-RDEPEND="${DEPEND}
- !<app-crypt/qca-1.0-r3:0"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-pcfilespath.patch
-
- use aqua && sed -i \
- -e "s|QMAKE_LFLAGS_SONAME =.*|QMAKE_LFLAGS_SONAME = -Wl,-install_name,|g" \
- src/src.pro
-}
-
-src_configure() {
- use prefix || EPREFIX=
-
- _libdir=$(get_libdir)
-
- # Ensure proper rpath
- export EXTRA_QMAKE_RPATH="${EPREFIX}/usr/${_libdir}/qca2"
-
- ./configure \
- --prefix="${EPREFIX}"/usr \
- --qtdir="${EPREFIX}"/usr \
- --includedir="${EPREFIX}"/usr/include/qca2 \
- --libdir="${EPREFIX}"/usr/${_libdir}/qca2 \
- --certstore-path="${EPREFIX}"/etc/ssl/certs/ca-certificates.crt \
- --no-separate-debug-info \
- --disable-tests \
- --$(use debug && echo debug || echo release) \
- --no-framework \
- || die "configure failed"
-
- eqmake4
-}
-
-src_install() {
- emake INSTALL_ROOT="${D}" install || die
- dodoc README TODO || die
-
- cat <<-EOF > "${WORKDIR}"/44qca2
- LDPATH="${EPREFIX}/usr/${_libdir}/qca2"
- EOF
- doenvd "${WORKDIR}"/44qca2 || die
-
- if use doc; then
- dohtml "${S}"/apidocs/html/* || die
- fi
-
- if use examples; then
- insinto /usr/share/doc/${PF}/
- doins -r "${S}"/examples || die
- fi
-
- # add the proper rpath for packages that do CONFIG += crypto
- echo "QMAKE_RPATHDIR += \"${EPREFIX}/usr/${_libdir}/qca2\"" >> \
- "${D%/}${EPREFIX}/usr/share/qt4/mkspecs/features/crypto.prf" \
- || die "failed to add rpath to crypto.prf"
-}