blob: 84e97139baabbda92c69471aed2576273a0f543e (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/pam_smb/pam_smb-2.0.0_rc6.ebuild,v 1.2 2004/10/17 09:57:07 dholm Exp $
DESCRIPTION="The PAM SMB module, which allows authentication against a SMB (such as the Win_x families) server."
HOMEPAGE="http://www.csn.ul.ie/~airlied/pam_smb/"
MY_P=${P/_rc/-rc}
S=${WORKDIR}/${MY_P}
SRC_URI="mirror://samba/pam_smb/v2/${MY_P}.tar.gz
http://www.csn.ul.ie/~airlied/pam_smb/v2/${MY_P}.tar.gz"
DEPEND=">=sys-libs/pam-0.75"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc"
IUSE=""
SLOT="0"
src_compile() {
econf --disable-root-only || die
emake || die
}
src_install() {
exeinto /lib/security
doexe pamsmbm/pam_smb_auth.so
exeinto /usr/sbin
doexe pamsmbd/pamsmbd
dodoc BUGS CHANGES COPYING README TODO INSTALL \
faq/{pam_smb_faq.sgml,additions.txt}
docinto pam.d
dodoc pam_smb.conf*
exeinto /etc/init.d
newexe ${FILESDIR}/pamsmbd-init pamsmbd
}
pkg_postinst() {
einfo
einfo "You must create /etc/pam_smb.conf yourself, containing"
einfo "your domainname, PDC and BDC. See example files in docdir."
einfo
}
|