2012-05-03 21:15:35 +04:00
|
|
|
# Copyright 1999-2012 Gentoo Foundation
|
2012-02-06 16:39:49 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-11 00:17:55 +03:00
|
|
|
# $Id$
|
2012-05-03 21:15:35 +04:00
|
|
|
|
|
|
|
EAPI=4
|
2012-02-06 16:39:49 +04:00
|
|
|
|
|
|
|
inherit eutils
|
|
|
|
|
|
|
|
DESCRIPTION="Samba LDAP management tools"
|
|
|
|
HOMEPAGE="https://gna.org/projects/smbldap-tools/"
|
2012-05-03 21:15:35 +04:00
|
|
|
SRC_URI="http://download.gna.org/smbldap-tools/sources/${PV}/${P}.tar.gz"
|
2012-02-06 16:39:49 +04:00
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
2012-09-14 10:38:16 +04:00
|
|
|
KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 s390 sparc x86"
|
2012-02-06 16:39:49 +04:00
|
|
|
IUSE=""
|
|
|
|
|
2012-05-03 21:15:35 +04:00
|
|
|
RDEPEND="
|
2012-02-06 16:39:49 +04:00
|
|
|
dev-perl/perl-ldap
|
|
|
|
dev-perl/Crypt-SmbHash
|
|
|
|
dev-perl/Digest-SHA1
|
|
|
|
dev-perl/Unicode-MapUTF8
|
2012-05-03 21:15:35 +04:00
|
|
|
dev-perl/IO-Socket-SSL
|
|
|
|
net-nds/openldap
|
|
|
|
net-fs/samba
|
|
|
|
"
|
2012-02-06 16:39:49 +04:00
|
|
|
DEPEND="${RDEPEND}"
|
|
|
|
|
|
|
|
src_install() {
|
2012-05-03 21:15:35 +04:00
|
|
|
default
|
2012-02-06 16:39:49 +04:00
|
|
|
|
2012-05-03 21:15:35 +04:00
|
|
|
newsbin smbldap-config.cmd smbldap-config
|
2012-06-13 10:36:30 +04:00
|
|
|
dosym smbldap-passwd /usr/sbin/smbldap-passwd.cmd
|
2012-02-06 16:39:49 +04:00
|
|
|
|
2012-05-03 21:15:35 +04:00
|
|
|
dodoc CONTRIBUTORS ChangeLog FILES INFRA INSTALL README TODO doc/*conf* doc/smbldap-tools*
|
|
|
|
dodoc -r doc/migration_scripts
|
2012-02-06 16:39:49 +04:00
|
|
|
|
2012-05-03 21:15:35 +04:00
|
|
|
sed -i 's/.CMD//g' smbldap-[gpu]*.8 || die
|
2012-06-13 10:36:30 +04:00
|
|
|
doman smbldap-[gpu]*.8
|
2012-02-06 16:39:49 +04:00
|
|
|
|
2012-05-03 21:15:35 +04:00
|
|
|
insinto /etc/smbldap-tools
|
|
|
|
doins smbldap.conf smbldap_bind.conf
|
2012-02-06 16:39:49 +04:00
|
|
|
|
2012-05-03 21:15:35 +04:00
|
|
|
elog "Remember to read INSTALL when updating."
|
2012-02-06 16:39:49 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postinst() {
|
|
|
|
elog "- A good howto is found on http://download.gna.org/smbldap-tools/docs/samba-ldap-howto/"
|
|
|
|
elog " and http://download.gna.org/smbldap-tools/docs/smbldap-tools/"
|
|
|
|
elog "- The configure script is installed as smbldap-configure.pl. Please run it to configure the tools."
|
2012-05-03 21:15:35 +04:00
|
|
|
elog "- Examples configuration files for Samba and slapd have been copied to ${EPREFIX}/usr/share/doc/${PF},"
|
2012-02-06 16:39:49 +04:00
|
|
|
elog " together with the migration-scripts."
|
2012-05-03 21:15:35 +04:00
|
|
|
elog "- Also remember to read INSTALL when updating."
|
2012-02-06 16:39:49 +04:00
|
|
|
}
|