| 1 |
phajdan.jr |
1.1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
|
|
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
phajdan.jr |
1.3 |
# $Header: /var/cvsroot/gentoo-x86/sys-apps/hardened-shadow/hardened-shadow-0.9.ebuild,v 1.2 2012/05/24 04:17:40 vapier Exp $
|
| 4 |
phajdan.jr |
1.1 |
|
| 5 |
|
|
EAPI=4
|
| 6 |
|
|
|
| 7 |
vapier |
1.2 |
inherit autotools-utils eutils multilib user
|
| 8 |
phajdan.jr |
1.1 |
|
| 9 |
|
|
DESCRIPTION="Hardened implementation of user account utilities"
|
| 10 |
|
|
HOMEPAGE="http://code.google.com/p/hardened-shadow/"
|
| 11 |
|
|
SRC_URI="http://hardened-shadow.googlecode.com/files/${P}.tar.gz"
|
| 12 |
|
|
|
| 13 |
|
|
LICENSE="BSD"
|
| 14 |
|
|
SLOT="0"
|
| 15 |
|
|
KEYWORDS="~x86"
|
| 16 |
|
|
IUSE=""
|
| 17 |
|
|
|
| 18 |
|
|
DEPEND="sys-libs/pam
|
| 19 |
|
|
!sys-apps/shadow"
|
| 20 |
|
|
RDEPEND="${DEPEND}
|
| 21 |
|
|
sys-auth/pambase"
|
| 22 |
|
|
|
| 23 |
|
|
pkg_setup() {
|
| 24 |
|
|
# The hardened-shadow group is needed at src_install time,
|
| 25 |
|
|
# so the only place we can create the group is pkg_setup.
|
| 26 |
|
|
enewgroup hardened-shadow
|
| 27 |
|
|
}
|