blob: 658c5d3eb05b368743affd85bc745190425d7c4e (
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
47
48
49
50
|
# Copyright 1999-2010 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.4 2010/10/10 10:38:31 phajdan.jr Exp $
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-2.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=">=sys-libs/pam-0.78-r3
>=sys-auth/skey-1.1.5-r4"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
EPATCH_SUFFIX=patch epatch
cd autoconf
eautoconf
eautoheader
mv configure defs.h.in .. || die "mv failed"
}
src_compile() {
econf --libdir="/$(get_libdir)" CFLAGS="${CFLAGS} -fPIC" \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dodoc README INSTALL
}
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."
}
|