From 0c29181b4e19f058de8982a913e31a14dd5e85ce Mon Sep 17 00:00:00 2001 From: Ulrich Müller Date: Mon, 8 Feb 2021 19:03:35 +0100 Subject: sys-auth/otpcalc: Live ebuild MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Ulrich Müller --- sys-auth/otpcalc/metadata.xml | 11 +++++++++++ sys-auth/otpcalc/otpcalc-9999.ebuild | 29 +++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 sys-auth/otpcalc/metadata.xml create mode 100644 sys-auth/otpcalc/otpcalc-9999.ebuild diff --git a/sys-auth/otpcalc/metadata.xml b/sys-auth/otpcalc/metadata.xml new file mode 100644 index 0000000..1135f79 --- /dev/null +++ b/sys-auth/otpcalc/metadata.xml @@ -0,0 +1,11 @@ + + + + + ulm@gentoo.org + + + otpCalc is an RFC2289 and RFC1760 compliant one time password calculator, + written to use the GTK+ library for screen I/O. + + diff --git a/sys-auth/otpcalc/otpcalc-9999.ebuild b/sys-auth/otpcalc/otpcalc-9999.ebuild new file mode 100644 index 0000000..940ec69 --- /dev/null +++ b/sys-auth/otpcalc/otpcalc-9999.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit git-r3 meson + +DESCRIPTION="A One Time Password and S/Key calculator for X" +HOMEPAGE="http://www.killa.net/infosec/otpCalc/" +EGIT_REPO_URI="https://gitlab.com/ulm/otpcalc.git" + +LICENSE="GPL-2+" # bundled crypto functions are not used +SLOT="0" + +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" +} -- cgit v1.2.3-65-gdbad