commit:     b08ea59982a5edca11ba9095bd81bbd7aa8dfb19
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 28 01:02:50 2015 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Wed Jan 28 01:02:50 2015 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=b08ea599

[app-crypt/qca] Moved to tree

---
 app-crypt/qca/files/qca-disable-pgp-test.patch |  13 ---
 app-crypt/qca/metadata.xml                     |  18 ----
 app-crypt/qca/qca-2.1.0.3.ebuild               | 133 -------------------------
 3 files changed, 164 deletions(-)

diff --git a/app-crypt/qca/files/qca-disable-pgp-test.patch 
b/app-crypt/qca/files/qca-disable-pgp-test.patch
deleted file mode 100644
index 7944e3c..0000000
--- a/app-crypt/qca/files/qca-disable-pgp-test.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/unittest/CMakeLists.txt b/unittest/CMakeLists.txt
-index f4d9eb9..67ef281 100644
---- a/unittest/CMakeLists.txt
-+++ b/unittest/CMakeLists.txt
-@@ -23,7 +23,7 @@ add_subdirectory(keylengthunittest)
- add_subdirectory(keystore)
- add_subdirectory(macunittest)
- add_subdirectory(metatype)
--add_subdirectory(pgpunittest)
-+# add_subdirectory(pgpunittest)
- add_subdirectory(pipeunittest)
- add_subdirectory(pkits)
- add_subdirectory(rsaunittest)

diff --git a/app-crypt/qca/metadata.xml b/app-crypt/qca/metadata.xml
deleted file mode 100644
index 71e6485..0000000
--- a/app-crypt/qca/metadata.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-<herd>crypto</herd>
-<herd>qt</herd>
-<herd>kde</herd>
-<use>
-       <flag name="botan">Enable botan plugin</flag>
-       <flag name="gcrypt">Enable gcrypt plugin</flag>
-       <flag name="gpg">Enable GnuPG plugin</flag>
-       <flag name="logger">Enable logger plugin</flag>
-       <flag name="nss">Enable NSS plugin</flag>
-       <flag name="openssl">Enable OpenSSL plugin</flag>
-       <flag name="pkcs11">Enable PKCS#11 plugin</flag>
-       <flag name="sasl">Enable SASL plugin</flag>
-       <flag name="softstore">Enable softstore plugin</flag>
-</use>
-</pkgmetadata>

diff --git a/app-crypt/qca/qca-2.1.0.3.ebuild b/app-crypt/qca/qca-2.1.0.3.ebuild
deleted file mode 100644
index 5c646cf..0000000
--- a/app-crypt/qca/qca-2.1.0.3.ebuild
+++ /dev/null
@@ -1,133 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI=5
-
-MY_PN="${PN}-qt5"
-inherit multilib cmake-utils multibuild
-
-DESCRIPTION="Qt Cryptographic Architecture (QCA)"
-HOMEPAGE="http://delta.affinix.com/qca/";
-SRC_URI="mirror://kde/stable/${MY_PN}/${PV}/src/${MY_PN}-${PV}.tar.xz"
-
-LICENSE="LGPL-2.1"
-SLOT="2"
-KEYWORDS="~amd64"
-
-IUSE="botan debug doc examples gcrypt gpg logger nss openssl pkcs11 +qt4 qt5 
sasl softstore test"
-REQUIRED_USE="|| ( qt4 qt5 )"
-
-RDEPEND="
-       !app-crypt/qca-cyrus-sasl
-       !app-crypt/qca-gnupg
-       !app-crypt/qca-logger
-       !app-crypt/qca-ossl
-       !app-crypt/qca-pkcs11
-       botan? ( dev-libs/botan )
-       gcrypt? ( dev-libs/libgcrypt:= )
-       gpg? ( app-crypt/gnupg )
-       nss? ( dev-libs/nss )
-       openssl? ( dev-libs/openssl:0 )
-       pkcs11? (
-               dev-libs/openssl:0
-               dev-libs/pkcs11-helper
-       )
-       qt4? ( dev-qt/qtcore:4 )
-       qt5? (
-               dev-qt/qtcore:5
-               dev-qt/qtconcurrent:5
-               dev-qt/qtnetwork:5
-       )
-       sasl? ( dev-libs/cyrus-sasl:2 )
-"
-DEPEND="${RDEPEND}
-       doc? ( app-doc/doxygen )
-       test? (
-               qt4? ( dev-qt/qttest:4 )
-               qt5? ( dev-qt/qttest:5 )
-       )
-"
-
-DOCS=( README TODO )
-
-S=${WORKDIR}/${MY_PN}-${PV}
-
-PATCHES=( "${FILESDIR}/${PN}-disable-pgp-test.patch" )
-
-qca_plugin_use() {
-       echo "-DWITH_${2:-$1}_PLUGIN=$(use $1 && echo yes || echo no)"
-}
-
-pkg_setup() {
-       MULTIBUILD_VARIANTS=()
-       if use qt4; then
-               MULTIBUILD_VARIANTS+=(qt4)
-       fi
-
-       if use qt5; then
-               MULTIBUILD_VARIANTS+=(qt5)
-       fi
-}
-
-src_configure() {
-       myconfigure() {
-               local mycmakeargs=(
-                       $(qca_plugin_use botan)
-                       $(qca_plugin_use gcrypt)
-                       $(qca_plugin_use gpg gnupg)
-                       $(qca_plugin_use logger)
-                       $(qca_plugin_use nss)
-                       $(qca_plugin_use openssl ossl)
-                       $(qca_plugin_use pkcs11)
-                       $(qca_plugin_use sasl cyrus-sasl)
-                       $(qca_plugin_use softstore)
-                       $(cmake-utils_use_build test TESTS)
-               )
-
-               if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then
-                       mycmakeargs+=(
-                               -DQT4_BUILD=ON
-                               
-DQCA_PLUGINS_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)/qt4/plugins"
-                               
-DQCA_FEATURE_INSTALL_DIR="${EPREFIX}/usr/share/qt4/mkspecs/features"
-                       )
-               fi
-
-               if [[ ${MULTIBUILD_VARIANT} = qt5 ]]; then
-                       mycmakeargs+=(
-                               
-DQCA_PLUGINS_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)/qt5/plugins"
-                               
-DQCA_FEATURE_INSTALL_DIR="${EPREFIX}/usr/$(get_libdir)/qt5/mkspecs/features"
-                       )
-               fi
-
-               cmake-utils_src_configure
-       }
-
-       multibuild_foreach_variant myconfigure
-}
-
-src_compile() {
-       multibuild_foreach_variant cmake-utils_src_compile
-}
-
-src_install() {
-       multibuild_foreach_variant cmake-utils_src_install
-
-       if use doc; then
-               pushd "${BUILD_DIR}" >/dev/null
-               doxygen Doxyfile.in || die
-               dohtml apidocs/html/*
-               popd >/dev/null
-       fi
-
-       if use examples; then
-               insinto /usr/share/doc/${PF}
-               doins -r "${S}"/examples
-       fi
-
-       cmake-utils_src_install
-}
-
-src_test() {
-       multibuild_foreach_variant cmake-utils_src_test
-}

Reply via email to