From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1253719-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 972EB1382C5
	for <garchives@archives.gentoo.org>; Sun, 21 Feb 2021 21:17:13 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id DD8A4E08F1;
	Sun, 21 Feb 2021 21:17:12 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id BF7CBE08F1
	for <gentoo-commits@lists.gentoo.org>; Sun, 21 Feb 2021 21:17:12 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 7E1E2340FD8
	for <gentoo-commits@lists.gentoo.org>; Sun, 21 Feb 2021 21:17:11 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id DF02E2A9
	for <gentoo-commits@lists.gentoo.org>; Sun, 21 Feb 2021 21:17:09 +0000 (UTC)
From: "Ulrich Müller" <ulm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" <ulm@gentoo.org>
Message-ID: <1613942216.cb84b86affddeac37fa826f4d2c5d82910d88571.ulm@gentoo>
Subject: [gentoo-commits] repo/dev/ulm:master commit in: sys-auth/otpcalc/
X-VCS-Repository: repo/dev/ulm
X-VCS-Files: sys-auth/otpcalc/otpcalc-9999.ebuild
X-VCS-Directories: sys-auth/otpcalc/
X-VCS-Committer: ulm
X-VCS-Committer-Name: Ulrich Müller
X-VCS-Revision: cb84b86affddeac37fa826f4d2c5d82910d88571
X-VCS-Branch: master
Date: Sun, 21 Feb 2021 21:17:09 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: a5f0e49a-5a89-4546-9879-8dbb9b30b2c6
X-Archives-Hash: 5c2d0f0ce590f94ece404347a7bca6e0

commit:     cb84b86affddeac37fa826f4d2c5d82910d88571
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 21 21:16:56 2021 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Feb 21 21:16:56 2021 +0000
URL:        https://gitweb.gentoo.org/repo/dev/ulm.git/commit/?id=cb84b86a

sys-auth/otpcalc: Sync live ebuild from Gentoo repo

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 sys-auth/otpcalc/otpcalc-9999.ebuild | 22 +++++++---------------
 1 file changed, 7 insertions(+), 15 deletions(-)

diff --git a/sys-auth/otpcalc/otpcalc-9999.ebuild b/sys-auth/otpcalc/otpcalc-9999.ebuild
index 940ec69..b6de04d 100644
--- a/sys-auth/otpcalc/otpcalc-9999.ebuild
+++ b/sys-auth/otpcalc/otpcalc-9999.ebuild
@@ -3,27 +3,19 @@
 
 EAPI=7
 
-inherit git-r3 meson
+inherit git-r3 meson xdg
 
-DESCRIPTION="A One Time Password and S/Key calculator for X"
-HOMEPAGE="http://www.killa.net/infosec/otpCalc/"
+DESCRIPTION="A One Time Password and S/Key calculator for GTK+"
+HOMEPAGE="http://www.killa.net/infosec/otpCalc/
+	https://gitlab.com/ulm/otpcalc"
+#SRC_URI="https://gitlab.com/ulm/${PN}/-/archive/${PV}/${P}.tar.bz2"
 EGIT_REPO_URI="https://gitlab.com/ulm/otpcalc.git"
 
-LICENSE="GPL-2+" # bundled crypto functions are not used
+LICENSE="GPL-2+"
 SLOT="0"
+#KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
 
 RDEPEND="dev-libs/openssl:0=
 	x11-libs/gtk+:3"
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
-
-src_configure() {
-	local emesonargs=( -Dlibcrypto=enabled )
-	meson_src_configure
-}
-
-src_install() {
-	meson_src_install
-	dosym otpCalc /usr/bin/otpcalc
-	newman - otpcalc.1 <<< ".so man1/otpCalc.1"
-}