blob: 61ef81ec4d716403aeee9e29a50aca3244a7bf71 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_mktemp/pam_mktemp-1.0.3.ebuild,v 1.3 2007/10/27 14:05:01 angelos Exp $
inherit toolchain-funcs pam
DESCRIPTION="Create per-user private temporary directories during login"
HOMEPAGE="http://www.openwall.com/pam/"
SRC_URI="http://www.openwall.com/pam/modules/${PN}/${P}.tar.gz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="virtual/pam"
RDEPEND="${DEPEND}"
src_compile() {
emake \
CC="$(tc-getCC)" \
CFLAGS="${CFLAGS} -fPIC" \
LDFLAGS="${LDFLAGS} --shared -Wl,--version-script,\$(MAP)" \
|| die "emake failed"
}
src_install() {
dopammod pam_mktemp.so
dodoc README
}
pkg_postinst() {
elog "To enable pam_mktemp put something like"
elog
elog "session optional pam_mktemp.so"
elog
elog "into /etc/pam.d/system-auth!"
}
|