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 04D2959CB2 for ; Fri, 15 Apr 2016 02:58:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4C0B7E0884; Fri, 15 Apr 2016 02:58:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C2400E0884 for ; Fri, 15 Apr 2016 02:58:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 31365340D3C for ; Fri, 15 Apr 2016 02:58:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3673713FF for ; Fri, 15 Apr 2016 02:58:12 +0000 (UTC) From: "Matt Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Thode" Message-ID: <1460689041.d5402daba60100e4b631c469b20a19080f6f450d.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/stoken/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/stoken/stoken-0.90.ebuild X-VCS-Directories: app-crypt/stoken/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matt Thode X-VCS-Revision: d5402daba60100e4b631c469b20a19080f6f450d X-VCS-Branch: master Date: Fri, 15 Apr 2016 02:58:12 +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: 17acdc1e-9a9c-46a9-9dbe-7e00001e4a03 X-Archives-Hash: f43ea950e27d53081157b5d85018fb3a commit: d5402daba60100e4b631c469b20a19080f6f450d Author: Sergiy Borodych gmail com> AuthorDate: Thu Apr 14 09:06:06 2016 +0000 Commit: Matt Thode gentoo org> CommitDate: Fri Apr 15 02:57:21 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5402dab app-crypt/stoken: update RDEPEND, remove src_install add a required dependency of crypto backend (at least one), update gtk dependency to gtk-3 slot (in upstream from v0.8), src_install is no need to override, all going fine by default Signed-off-by: Matthew Thode gentoo.org> app-crypt/stoken/stoken-0.90.ebuild | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/app-crypt/stoken/stoken-0.90.ebuild b/app-crypt/stoken/stoken-0.90.ebuild index fc4685e..e2740f2 100644 --- a/app-crypt/stoken/stoken-0.90.ebuild +++ b/app-crypt/stoken/stoken-0.90.ebuild @@ -15,7 +15,9 @@ SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" IUSE="gtk" -RDEPEND="gtk? ( x11-libs/gtk+:2 )" +RDEPEND=" + || ( dev-libs/nettle dev-libs/libtomcrypt ) + gtk? ( >=x11-libs/gtk+-3.12:3 )" DEPEND="${RDEPEND}" src_prepare() { @@ -26,12 +28,3 @@ src_prepare() { src_configure() { econf $(use_with gtk) } - -src_install() { - default - dodoc CHANGES COPYING.LIB README.md TODO - doman stoken.1 - if use gtk ; then - doman stoken-gui.1 - fi -}