Hello, Attached is duo_unix-1.9.4.ebuild. duo_unix allows an admin (or ordinary user) to quickly add Duo authentication to any Unix login without setting up secondary user accounts, directory synchronization, servers, or hardware. Check out https://www.duosecurity.com/docs/duounix for more information. This package depends on openssl, zlib, and (optionally) pam. Reproducible: Always
Created attachment 358060 [details] duo_unix-1.9.4.ebuild
Comment on attachment 358060 [details] duo_unix-1.9.4.ebuild ># Copyright 1999-2013 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Header: $ > >EAPI=5 > >DESCRIPTION="Duo two-factor authentication for Unix systems" >HOMEPAGE="https://www.duosecurity.com" >SRC_URI="https://dl.duosecurity.com/${P}.tar.gz" > >LICENSE="GPL-2" >SLOT="0" >KEYWORDS="~amd64 ~x86 ~arm" >IUSE="pam" > >DEPEND="dev-libs/openssl > sys-libs/zlib > pam? ( sys-libs/pam )" >RDEPEND="${DEPEND}" > >src_configure() { > econf \ > $(use_with pam) >} > >src_install() { > emake DESTDIR="${D}" install > > dodoc README >}