You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
776 B
Bash
31 lines
776 B
Bash
8 years ago
|
# Copyright 1999-2016 Gentoo Foundation
|
||
11 years ago
|
# Distributed under the terms of the GNU General Public License v2
|
||
8 years ago
|
# $Id$
|
||
11 years ago
|
|
||
8 years ago
|
EAPI=6
|
||
11 years ago
|
|
||
|
DESCRIPTION="Shell scripts to manage POSIX accounts in an LDAP."
|
||
10 years ago
|
HOMEPAGE="http://contribs.martymac.org/"
|
||
|
SRC_URI="http://contribs.martymac.org/${PN}/${P}.tgz"
|
||
11 years ago
|
|
||
10 years ago
|
RESTRICT="mirror"
|
||
|
|
||
11 years ago
|
LICENSE="GPL-2"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
|
IUSE=""
|
||
|
|
||
|
DEPEND=""
|
||
|
RDEPEND="net-nds/openldap
|
||
|
app-arch/sharutils"
|
||
|
|
||
8 years ago
|
DOCS=( CHANGELOG README TODO )
|
||
|
|
||
11 years ago
|
src_compile() {
|
||
|
emake DESTDIR="${EROOT}" PREFIX="${EROOT}usr" LIBDIR="${EROOT}var/lib/${PN}" MANDIR="${EROOT}usr/share/man" ETCDIR="${EROOT}etc/${PN}" configure
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
7 years ago
|
emake DESTDIR="${ED%/}" PREFIX="${EROOT}usr" LIBDIR="${EROOT}var/lib/${PN}" MANDIR="${EROOT}usr/share/man" ETCDIR="${EROOT}etc/${PN}" install
|
||
11 years ago
|
}
|