blob: 889658a1dc091a52da3a4fe88486be3ef967f34f (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_pwdfile/pam_pwdfile-0.99.ebuild,v 1.5 2007/11/04 15:38:35 flameeyes Exp $
inherit flag-o-matic pam
DESCRIPTION="PAM module for authenticating against passwd-like files."
HOMEPAGE="http://cpbotha.net/pam_pwdfile.html"
SRC_URI="http://cpbotha.net/files/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ppc x86"
IUSE=""
DEPEND="sys-libs/pam"
src_compile() {
# the upstream makefile does CFLAGS in a horrible way
# that '-c' is 100% required here
append-flags -fPIC -Wall -Wformat-security -D_BSD_SOURCE -c
emake -f contrib/Makefile.standalone CFLAGS="${CFLAGS}" || die "emake failed"
}
src_install() {
dopammod ${PN}.so
dodoc INSTALL README changelog contrib/warwick_duncan-cyrus_without_system_accounts.txt
}
|