From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E1C3D1387B1 for ; Sun, 19 Jan 2014 21:11:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6FEB8E0E0D; Sun, 19 Jan 2014 21:11:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C09F8E0E0C for ; Sun, 19 Jan 2014 21:11:57 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9C32433F825 for ; Sun, 19 Jan 2014 21:11:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id C48B01807D for ; Sun, 19 Jan 2014 21:11:54 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1389958484.cfed968e0afecdd1e686184919b4e9ecc32e9914.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: app-crypt/qca/, dev-libs/qoauth/ X-VCS-Repository: proj/qt X-VCS-Files: app-crypt/qca/metadata.xml app-crypt/qca/qca-9999.ebuild dev-libs/qoauth/qoauth-9999.ebuild X-VCS-Directories: app-crypt/qca/ dev-libs/qoauth/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: cfed968e0afecdd1e686184919b4e9ecc32e9914 X-VCS-Branch: master Date: Sun, 19 Jan 2014 21:11:54 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0982ac4b-1852-482d-9b37-763dc924f73e X-Archives-Hash: a644d9ce6c5d07db35ed863d16655377 commit: cfed968e0afecdd1e686184919b4e9ecc32e9914 Author: Uwe L. Korn xhochy com> AuthorDate: Thu Aug 29 13:05:04 2013 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Fri Jan 17 11:34:44 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=cfed968e [app-crypt/qca] Add qt5 supporting 9999 ebuild --- app-crypt/qca/metadata.xml | 16 ++++++++ app-crypt/qca/qca-9999.ebuild | 84 ++++++++++++++++++++++++++++++++++++++ dev-libs/qoauth/qoauth-9999.ebuild | 2 +- 3 files changed, 101 insertions(+), 1 deletion(-) diff --git a/app-crypt/qca/metadata.xml b/app-crypt/qca/metadata.xml new file mode 100644 index 0000000..379ecd4 --- /dev/null +++ b/app-crypt/qca/metadata.xml @@ -0,0 +1,16 @@ + + + + + + Enable botan plugin + Enable cyrus-sasl plugin + Enable gcrypt plugin + Enable GnuPG plugin + Enable logger plugin + Enable NSS plugin + Enable OpenSSL plugin + Enable PKCS#11 plugin + Enable softstore plugin + + diff --git a/app-crypt/qca/qca-9999.ebuild b/app-crypt/qca/qca-9999.ebuild new file mode 100644 index 0000000..60a8531 --- /dev/null +++ b/app-crypt/qca/qca-9999.ebuild @@ -0,0 +1,84 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit cmake-utils git-r3 + +DESCRIPTION="Qt Cryptographic Architecture (QCA)" +HOMEPAGE="http://delta.affinix.com/qca/" +EGIT_REPO_URI="git://anongit.kde.org/${PN}.git" + +LICENSE="LGPL-2.1" +SLOT="2" +KEYWORDS="" +IUSE="botan debug doc examples gcrypt gpg logger nss openssl pkcs11 +qt4 qt5 sasl softstore test" + +RDEPEND=" + botan? ( dev-libs/botan ) + sasl? ( dev-libs/cyrus-sasl ) + 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-1.02 + ) + qt4? ( dev-qt/qtcore:4 ) + qt5? ( + dev-qt/qtcore:5 + dev-qt/qtconcurrent:5 + dev-qt/qtnetwork:5 + )" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen ) + test? ( + qt4? ( dev-qt/qttest:4 ) + qt5? ( dev-qt/qttest:5 ) + ) + ! []" + echo "-DWITH_${2:-$1}_PLUGIN=$(use $1 && echo yes || echo no)" +} + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use qt4 QT4_BUILD) + $(cmake-utils_use test BUILD_TESTS) + $(with_plugin_use botan) + $(with_plugin_use sasl cyrus-sasl) + $(with_plugin_use gcrypt) + $(with_plugin_use gpg gnupg) + $(with_plugin_use logger) + $(with_plugin_use nss) + $(with_plugin_use openssl ossl) + $(with_plugin_use pkcs11) + $(with_plugin_use softstore) + ) + + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + + if use doc; then + pushd "${BUILD_DIR}" + doxygen Doxyfile + dohtml apidocs/html/* + popd + fi + + if use examples; then + insinto /usr/share/doc/${PF}/ + doins -r "${S}"/examples + fi +} diff --git a/dev-libs/qoauth/qoauth-9999.ebuild b/dev-libs/qoauth/qoauth-9999.ebuild index 11f3347..d6def63 100644 --- a/dev-libs/qoauth/qoauth-9999.ebuild +++ b/dev-libs/qoauth/qoauth-9999.ebuild @@ -21,7 +21,7 @@ DEPEND="${COMMON_DEPEND} test? ( dev-qt/qttest:4 ) " RDEPEND="${COMMON_DEPEND} - app-crypt/qca-ossl:2[debug?] + || ( ~app-crypt/qca-9999:2[debug?,openssl,qt4]