blob: 39f4b91964cdfbed3ea875ad94b33f6a14564d62 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_skey/pam_skey-1.1.5-r2.ebuild,v 1.5 2012/01/06 21:13:27 ulm Exp $
EAPI=4
inherit eutils pam autotools multilib
DESCRIPTION="PAM interface for the S/Key authentication system"
HOMEPAGE="http://freshmeat.net/projects/pam_skey/"
SRC_URI="http://dkorunic.net/tarballs/${P}.tar.gz
mirror://gentoo/${P}-patches-3.tar.xz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND=">=sys-libs/pam-0.78-r3
>=sys-auth/skey-1.1.5-r4"
DEPEND="${RDEPEND}
app-arch/xz-utils"
DOCS="README INSTALL"
src_prepare() {
EPATCH_SUFFIX=patch epatch
cd autoconf
eautoconf
eautoheader
mv configure defs.h.in .. || die "mv failed"
}
src_configure() {
econf --libdir="/$(get_libdir)" CFLAGS="${CFLAGS} -fPIC"
}
pkg_postinst() {
elog "To use this, you need to add a line like:"
elog
elog "auth [success=done ignore=ignore auth_err=die default=bad] pam_skey.so"
elog
elog "to an appropriate place in /etc/pam.d/system-auth"
elog "Consult the documentation for instructions."
}
|