summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2020-11-30 02:06:11 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2020-11-30 02:06:11 +0100
commiteaba3141ee60c71c1600e30c5bfa27ad2005f923 (patch)
tree963189c82bf9be32789b1d8e2a4f3c066a76a11f
parentprofiles: Mask remaining qt3.eclass consumers (diff)
downloadkde-sunset-eaba3141.tar.gz
kde-sunset-eaba3141.tar.bz2
kde-sunset-eaba3141.zip
app-crypt/qca: Drop 1.0-r3
Package-Manager: Portage-3.0.11, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--app-crypt/qca/Manifest1
-rw-r--r--app-crypt/qca/files/qca-1.0-fbsd.patch33
-rw-r--r--app-crypt/qca/files/qca-pathfix.patch11
-rw-r--r--app-crypt/qca/qca-1.0-r3.ebuild56
4 files changed, 0 insertions, 101 deletions
diff --git a/app-crypt/qca/Manifest b/app-crypt/qca/Manifest
index 74e31c28..20d0b5f6 100644
--- a/app-crypt/qca/Manifest
+++ b/app-crypt/qca/Manifest
@@ -1,2 +1 @@
-DIST qca-1.0.tar.bz2 30677 BLAKE2B f85b76632f7f4997c70976764ba74bf3314b850f82bdce1d2d0e176268503c279d0eae98abe762cecbfd2bf523295e2178cd8b667ad5a8f6c45c4dc91ba7cbb8 SHA512 50a0017eaf75d0d896c6f142ab39ef6bd75cfd7f5712f9f059b65b5e0230f04f385c62a7a67ae24f820afe8109578108aa860306e47909038fb7b999a0dcd918
DIST qca-2.2.1.tar.xz 691676 BLAKE2B d5bcc0d6e791811e1efcdbf2e09916fe40ad682b0e59b2993c73a5bd79e09fc28facdec81259a982bee05223c8dfce78b9a6b729ca4e566c0901a13b91575379 SHA512 3a0e8aa7cf3ea9a7244facaf1d521ebca2753af37636e7bf5f21c57ae880ac9682ae7d6d9fa5ce41b73568ff9538214956b89cd41228c2cb828d9068c2031a9c
diff --git a/app-crypt/qca/files/qca-1.0-fbsd.patch b/app-crypt/qca/files/qca-1.0-fbsd.patch
deleted file mode 100644
index ce541a21..00000000
--- a/app-crypt/qca/files/qca-1.0-fbsd.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-diff -x '*~' -ur qca-1.0/configure qca-1.0-fixed/configure
---- qca-1.0/configure 2003-12-10 01:06:43.000000000 +0100
-+++ qca-1.0-fixed/configure 2005-05-24 18:03:08.912751344 +0200
-@@ -1,4 +1,4 @@
--#!/bin/sh
-+#!/bin/bash
-
- show_usage() {
- cat <<EOT
-@@ -17,12 +17,12 @@
- while [ $# -gt 0 ]; do
- case "$1" in
- --prefix=*)
-- PREFIX=`expr "${1}" : "--prefix=\(.*\)"`
-+ PREFIX="${1/--prefix=/}"
- shift
- ;;
-
- --qtdir=*)
-- QTDIR=`expr "${1}" : "--qtdir=\(.*\)"`
-+ QTDIR="${1/--qtdir=/}"
- shift
- ;;
-
-@@ -76,7 +76,7 @@
- echo Warning: qmake not in \$QTDIR/bin/qmake
- echo trying to find it in \$PATH
- fi
-- qm=`type -p qmake`
-+ qm=`which qmake`
- if [ -x "$qm" ]; then
- if [ "$QC_DEBUG" = "Y" ]; then
- echo qmake found in $qm
diff --git a/app-crypt/qca/files/qca-pathfix.patch b/app-crypt/qca/files/qca-pathfix.patch
deleted file mode 100644
index 6a2a5ac7..00000000
--- a/app-crypt/qca/files/qca-pathfix.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- qca.pro 2003-10-22 15:14:43.000000000 +0100
-+++ qca.pro-patched 2005-01-04 15:50:49.928406816 +0000
-@@ -1,7 +1,7 @@
- # qca qmake profile
-
- TEMPLATE = lib
--CONFIG += qt thread release
-+CONFIG += qt thread release no_fixpath
- TARGET = qca
-
- MOC_DIR = .moc
diff --git a/app-crypt/qca/qca-1.0-r3.ebuild b/app-crypt/qca/qca-1.0-r3.ebuild
deleted file mode 100644
index aa9a7e97..00000000
--- a/app-crypt/qca/qca-1.0-r3.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/qca/qca-1.0-r3.ebuild,v 1.11 2008/12/02 23:15:17 ranger Exp $
-
-EAPI=1
-
-inherit eutils qt3
-
-DESCRIPTION="Qt Cryptographic Architecture (QCA)"
-HOMEPAGE="http://delta.affinix.com/qca/"
-SRC_URI="http://delta.affinix.com/download/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc x86"
-IUSE=""
-
-DEPEND="dev-qt/qt-meta:3"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/qca-pathfix.patch
- #This is needed just in bsd, but make no harm in linux
- epatch "${FILESDIR}"/qca-1.0-fbsd.patch
-}
-
-src_compile() {
- ./configure --prefix=/usr || die "configure failed"
- sed -i \
- -e "/^CFLAGS/s:$: ${CFLAGS}:" \
- -e "/^CXXFLAGS/s:$: ${CXXFLAGS}:" \
- -e "/-strip/d" \
- Makefile
- emake || die "emake failed"
-}
-
-src_install() {
- emake INSTALL_ROOT="${D}" install || die "make install failed"
-
- dodir "/usr/include/qca1"
- dodir "/usr/lib/qca1"
- mv "${D}/usr/include"/* "${D}/usr/include/qca1"
- mv "${D}/usr/lib"/* "${D}/usr/lib/qca1"
-
- local _libdir=$(get_libdir)
- if [[ "${_libdir}" != "lib" ]]; then
- mv "${D}"/usr/lib "${D}"/usr/${_libdir}
- fi
-
- cat <<-EOF > "${T}/44qca1"
- LDPATH=/usr/${_libdir}/qca1
- EOF
- doenvd "${T}/44qca1"
-}