blob: 9c0061ee2323a572b139347a91cf6f257538105d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/pam_usb/pam_usb-0.3.2.ebuild,v 1.2 2005/03/29 01:18:59 scox Exp $
inherit eutils
DESCRIPTION="A PAM module that enables authentication using an USB-Storage device (such as an USB Pen) through DSA private/public keys."
SRC_URI="mirror://sourceforge/pamusb/${P}.tar.gz"
HOMEPAGE="http://www.pamusb.org/"
IUSE="pam ssl"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc ~sparc ~alpha ~mips ~amd64"
RDEPEND="sys-libs/pam"
DEPEND="ssl? ( dev-libs/openssl )
sys-libs/pam
sys-apps/hotplug-base"
src_compile() {
emake || die "make failed"
}
src_install() {
dodir /lib/security /usr/bin /usr/share/man/man1
dodir /etc/hotplug.d /etc/pam.d /etc/pam_usb
einstall DESTDIR=${D} || die "einstall failed"
dodoc AUTHORS COPYING Changelog README
}
|