blob: 1bd9cadd37d886c6b6bb69108b61dcb7926230f7 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit autotools-utils eutils multilib user
DESCRIPTION="Hardened implementation of user account utilities"
HOMEPAGE="https://code.google.com/p/hardened-shadow/"
SRC_URI="http://hardened-shadow.googlecode.com/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="sys-libs/pam
!sys-apps/shadow"
RDEPEND="${DEPEND}
>=sys-auth/pambase-20120417"
DOCS=( README )
pkg_setup() {
# The hardened-shadow group is needed at src_install time,
# so the only place we can create the group is pkg_setup.
enewgroup hardened-shadow
}
src_install() {
autotools-utils_src_install
# Remove pam.d files colliding with pambase.
rm -r "${ED}"/etc/pam.d || die
}
|