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 16D0558973 for ; Tue, 2 Feb 2016 21:27:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E252D21C002; Tue, 2 Feb 2016 21:27:10 +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 91C3721C002 for ; Tue, 2 Feb 2016 21:27:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4CF27340D51 for ; Tue, 2 Feb 2016 21:27:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B2EB78E1 for ; Tue, 2 Feb 2016 21:27:06 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1454448417.a4b005bf0b3c2a069ddeccf667cbb0bf5e63fa25.mrueg@gentoo> Subject: [gentoo-commits] dev/mrueg:master commit in: app-admin/passwordsafe/ X-VCS-Repository: dev/mrueg X-VCS-Files: app-admin/passwordsafe/passwordsafe-0.98_beta.ebuild X-VCS-Directories: app-admin/passwordsafe/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: a4b005bf0b3c2a069ddeccf667cbb0bf5e63fa25 X-VCS-Branch: master Date: Tue, 2 Feb 2016 21:27:06 +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: 8d64d8a3-57cb-43ab-9964-6da58bd07c63 X-Archives-Hash: b9927a1822f6811846974690af917403 commit: a4b005bf0b3c2a069ddeccf667cbb0bf5e63fa25 Author: Manuel Rüger gentoo org> AuthorDate: Tue Feb 2 21:26:57 2016 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Tue Feb 2 21:26:57 2016 +0000 URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=a4b005bf app-admin/passwordsafe: Fix dependencies Package-Manager: portage-2.2.27 app-admin/passwordsafe/passwordsafe-0.98_beta.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/app-admin/passwordsafe/passwordsafe-0.98_beta.ebuild b/app-admin/passwordsafe/passwordsafe-0.98_beta.ebuild index dac9adf..51be156 100644 --- a/app-admin/passwordsafe/passwordsafe-0.98_beta.ebuild +++ b/app-admin/passwordsafe/passwordsafe-0.98_beta.ebuild @@ -16,17 +16,18 @@ SRC_URI="https://github.com/pwsafe/pwsafe/archive/${MY_PV}.tar.gz -> ${P}.tar.gz LICENSE="Artistic-2" SLOT="0" KEYWORDS="~amd64" -IUSE="minimal yubikey +xml" +IUSE="minimal test yubikey +xml" RDEPEND="xml? ( dev-libs/xerces-c ) sys-apps/util-linux - sys-devel/gettext x11-libs/libXt x11-libs/libXtst x11-libs/wxGTK:${WX_GTK_VER}[X] !minimal? ( !!app-misc/pwsafe ) yubikey? ( sys-auth/ykpers )" -DEPEND="${RDEPEND}" +DEPEND="${RDEPEND} + sys-devel/gettext + test? ( dev-cpp/gtest )" S=${WORKDIR}/pwsafe-${MY_PV} @@ -42,6 +43,8 @@ src_prepare() { sed -i docs/pwsafe.1 \ -e 's/PWSAFE/PASSWORDSAFE/' \ -e "s/^.B pwsafe/.B ${PN}/" || die + use test || sed -i -e '/find_package(GTest REQUIRED)/s/^/#/' \ + -e '/add_subdirectory (src\/test)/s/^/#/' CMakeLists.txt || die epatch "${FILESDIR}"/${P}-fix-noyubikey.patch\ "${FILESDIR}"/${P}-fix-yubikey.patch }