Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 483992 - app-admin/duo_unix-1.9.4 - Duo two-factor authentication for Unix systems
Summary: app-admin/duo_unix-1.9.4 - Duo two-factor authentication for Unix systems
Status: UNCONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: Normal enhancement (vote)
Assignee: Default Assignee for New Packages
URL: https://www.duosecurity.com
Whiteboard:
Keywords: EBUILD
Depends on:
Blocks:
 
Reported: 2013-09-06 13:51 UTC by Tony Blyler
Modified: 2014-02-10 21:12 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
duo_unix-1.9.4.ebuild (duo_unix-1.9.4.ebuild,535 bytes, text/plain)
2013-09-06 13:52 UTC, Tony Blyler
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Tony Blyler 2013-09-06 13:51:52 UTC
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
Comment 1 Tony Blyler 2013-09-06 13:52:55 UTC
Created attachment 358060 [details]
duo_unix-1.9.4.ebuild
Comment 2 Tony Blyler 2013-09-11 14:22:39 UTC
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
>}