From 8d14d3d9d83bac85ca36a0eb1372f1d440c6a06c Mon Sep 17 00:00:00 2001 From: Zoltan Puskas Date: Tue, 31 Jan 2017 22:38:50 -0800 Subject: sys-auth/oath-toolkit: Update to version 2.6.2 (cherry picked from commit c3879f88f49d45bb548681b4d90b683bb7394d94) Package-Manager: Portage-2.3.3, Repoman-2.3.1 Fixes: https://github.com/gentoo/gentoo/pull/3758 Signed-off-by: Robin H. Johnson --- sys-auth/oath-toolkit/oath-toolkit-2.6.2.ebuild | 59 +++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 sys-auth/oath-toolkit/oath-toolkit-2.6.2.ebuild (limited to 'sys-auth/oath-toolkit/oath-toolkit-2.6.2.ebuild') diff --git a/sys-auth/oath-toolkit/oath-toolkit-2.6.2.ebuild b/sys-auth/oath-toolkit/oath-toolkit-2.6.2.ebuild new file mode 100644 index 000000000000..ca54179a895b --- /dev/null +++ b/sys-auth/oath-toolkit/oath-toolkit-2.6.2.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ +EAPI=6 + +inherit pam eutils autotools +DESCRIPTION="Toolkit for using one-time password authentication with HOTP/TOTP algorithms" +HOMEPAGE="http://www.nongnu.org/oath-toolkit/ http://gitorious.org/oath-toolkit/" +SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${P}.tar.gz" +LICENSE="GPL-3 LGPL-2.1" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="pam pskc test" + +RDEPEND=" + pam? ( virtual/pam ) + pskc? ( dev-libs/xmlsec )" +DEPEND="${RDEPEND} + test? ( dev-libs/libxml2 ) + dev-util/gtk-doc-am" + +src_prepare() { + # These tests need git/cvs and don't reflect anything in the final app + sed -i -r \ + -e '/TESTS/s,test-vc-list-files-(git|cvs).sh,,g' \ + gl/tests/Makefile.am + # disable portability warnings, caused by gtk-doc.make + sed -i \ + -e '/AM_INIT_AUTOMAKE/ s:-Wall:\0 -Wno-portability:' \ + {liboath,libpskc}/configure.ac + eautoreconf + default +} + +src_configure() { + econf \ + $(use_enable test xmltest ) \ + $(use_enable pam) \ + $(use_with pam pam-dir $(getpam_mod_dir)) \ + $(use_enable pskc) +} + +src_install() { + default + if use pam; then + newdoc pam_oath/README README.pam + fi + if use pskc; then + doman pskctool/pskctool.1 + fi +} + +src_test() { + # without keep-going, it will bail out after the first testsuite failure, + # skipping the other testsuites. as they are mostly independant, this sucks. + emake --keep-going check + [ $? -ne 0 ] && die "At least one testsuite failed" +} -- cgit v1.2.3-18-g5258