diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2004-12-23 23:00:17 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2004-12-23 23:00:17 +0000 |
commit | e9ee8303dc0b0a5919bc1384380cc6f8e02c32e4 (patch) | |
tree | b0f1516b7da3e0acdf9b36bdb7b6d79541fb824c /app-admin/diradm/diradm-2.1.ebuild | |
parent | Moving to sci-biology/embassy-hmmer (diff) | |
download | gentoo-2-e9ee8303dc0b0a5919bc1384380cc6f8e02c32e4.tar.gz gentoo-2-e9ee8303dc0b0a5919bc1384380cc6f8e02c32e4.tar.bz2 gentoo-2-e9ee8303dc0b0a5919bc1384380cc6f8e02c32e4.zip |
New major revision, from a forked tree (by myself).
Diffstat (limited to 'app-admin/diradm/diradm-2.1.ebuild')
-rw-r--r-- | app-admin/diradm/diradm-2.1.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/app-admin/diradm/diradm-2.1.ebuild b/app-admin/diradm/diradm-2.1.ebuild new file mode 100644 index 000000000000..493949d63f69 --- /dev/null +++ b/app-admin/diradm/diradm-2.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/diradm/diradm-2.1.ebuild,v 1.1 2004/12/23 23:00:17 robbat2 Exp $ + +DESCRIPTION="diradm is for managing posix users/groups in an LDAP directory" +BASE_URI="http://research.iat.sfu.ca/custom-software/" +HOMEPAGE="${BASE_URI}/${PN}" +SRC_URI="${BASE_URI}/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc" +IUSE="samba" +DEPEND="net-nds/openldap + sys-apps/gawk + sys-apps/coreutils + sys-apps/grep + dev-lang/perl + app-shells/bash + sys-apps/sed + dev-perl/MIME-Base64 + samba? ( + dev-perl/Crypt-SmbHash + >=net-fs/samba-3 + )" + +src_compile() { + local myconf + myconf="`use_enable samba`" + econf ${myconf} || die + emake +} + +src_install() { + make install DESTDIR="${D}" || die + dodoc CHANGES* README AUTHORS COPYING ChangeLog NEWS README.prefork THANKS +} + +pkg_postinst() { + einfo "The new diradm pulls many settings from your LDAP configuration." + einfo "But don't forget to customize /etc/diradm.conf for other settings." +} |