blob: b6deac3e90e5be9d907f9e046a3580aff1452eb1 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/diradm/diradm-1.1.ebuild,v 1.2 2003/07/05 09:47:49 robbat2 Exp $
DESCRIPTION="diradm is for managing posix users/groups in an LDAP directory"
HOMEPAGE="http://www.hits.at/diradm/"
SRC_URI="http://www.hits.at/diradm/diradm-1.1.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="net-nds/openldap
sys-apps/fileutils
sys-apps/grep
sys-apps/sed"
S=${WORKDIR}/${P}
src_install() {
# Binary
dosbin diradm
# Config file
insinto /etc
doins diradm.conf
# Docs
dodoc CHANGES COPYING README
}
pkg_postinst() {
einfo "Don't forget to customize /etc/diradm.conf for your LDAP schema"
}
|