summaryrefslogtreecommitdiff
path: root/app-admin/diradm
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-11-12 04:31:34 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-11-12 04:31:34 +0000
commitcdc1eda9c1ad611dd737415be2790c8f44812f1c (patch)
treed709955b296b3b94efd9454a6023721a0dae98b5 /app-admin/diradm
parent55d85b00f95c52ff327d35d9cc5bf240ab37f11f (diff)
gentoo auto-resync : 12:11:2023 - 04:31:34
Diffstat (limited to 'app-admin/diradm')
-rw-r--r--app-admin/diradm/Manifest1
-rw-r--r--app-admin/diradm/diradm-2.9.7.1.ebuild69
2 files changed, 0 insertions, 70 deletions
diff --git a/app-admin/diradm/Manifest b/app-admin/diradm/Manifest
index 933bf380110f..375940b45d68 100644
--- a/app-admin/diradm/Manifest
+++ b/app-admin/diradm/Manifest
@@ -1,4 +1,3 @@
DIST diradm-2.9.7.1.tar.bz2 126172 BLAKE2B 23f18a7946187caf1e12ec9d1f67a2c5c06895d837add3c79dd0b043d4745f0fd9b405e5667ebe5480946e4741c7bbff2be8c4281afcb7636353f72904f7e39b SHA512 5052f7b7072cd61eb9c70d23057f6c0d2fa68a151792d7260ca52716c9588c06234d335af84b967df23da4b4a8650502cab3b18900dc15e71f71b0888224993f
EBUILD diradm-2.9.7.1-r1.ebuild 1783 BLAKE2B 880de9237eec4e0728e0dafc967f46c11629f12acba175c095b2f8ac469d5eb9b23b7c61cdeca4a0546ad8d9dd8d1b3c93b8fe3d361a1dd0c1ac5ce1c6231e24 SHA512 c0c6e9197b89e3825c90f14d9d7aee151bfae2d4be7602734af0f13cce0c18c7c90ca8941a1d946ff78e134f1458bba7df725ba07adc99e917cba97163bc3670
-EBUILD diradm-2.9.7.1.ebuild 1770 BLAKE2B 1ae13033af0aa9c6130690309ae0a04e760c9478873323094c906dc79ae53741c6c5da92d9c26c28ec6053100fc185147a09d3f49fe11356b5c63c1f2cd937f4 SHA512 20ca60e206dc56711e757056d87e20b7e7ccbaab0b31acbad06f73d835fcd4f71fb18ddcbacde2bd87e8157dacbc3cae2832a949275442edef0f1fe3e22b8afc
MISC metadata.xml 410 BLAKE2B 0a7f652623aa08561e3fbe452a40030955edf0f20506713162938ed0b3049436d7df02243932013e90d8171a232448a04b473217d6e185d8fbb107847cfe3bfb SHA512 e717ddf67bb381f6a343670112ff14340693e68eea81edc4c8674b0568b2288bb1998750ebe456612264fa82e447c22dac3468af1fd68f0958c56a819bbbf6a4
diff --git a/app-admin/diradm/diradm-2.9.7.1.ebuild b/app-admin/diradm/diradm-2.9.7.1.ebuild
deleted file mode 100644
index ea60e0708244..000000000000
--- a/app-admin/diradm/diradm-2.9.7.1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="A nearly complete nss/shadow suite for managing POSIX users/groups/data in LDAP"
-#HOMEPAGE="http://research.iat.sfu.ca/custom-software/diradm/"
-#SRC_URI="http://research.iat.sfu.ca/custom-software/diradm/${P}.tar.bz2"
-HOMEPAGE="http://orbis-terrarum.net/~robbat2/"
-SRC_URI="http://orbis-terrarum.net/~robbat2/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ppc64 x86"
-IUSE="automount irixpasswd samba test"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="test? ( automount irixpasswd samba )"
-
-RDEPEND=">=net-nds/openldap-2.3
- sys-apps/gawk
- sys-apps/coreutils
- sys-apps/grep
- dev-lang/perl
- app-shells/bash:*
- sys-apps/sed
- virtual/perl-MIME-Base64
- samba? (
- dev-perl/Crypt-SmbHash
- >=net-fs/samba-3.0.6
- )"
-DEPEND="
- ${RDEPEND}
- test? (
- dev-perl/Crypt-SmbHash
- >=net-fs/samba-3.0.6
- dev-util/dejagnu
- net-nds/openldap[-minimal]
- )"
-
-src_configure() {
- econf \
- $(use_enable automount) \
- $(use_enable irixpasswd) \
- $(use_enable samba)
-}
-
-src_test() {
- emake -j1 check
-}
-
-src_install() {
- default
- dodoc CHANGES.prefork KNOWN-BUGS
-
- if use irixpasswd; then
- insinto /etc/openldap/schema
- doins irixpassword.schema
- fi
-}
-
-pkg_postinst() {
- elog "The new diradm pulls many settings from your LDAP configuration."
- elog "But don't forget to customize /etc/diradm.conf for other settings."
- elog "Please see the README to instructions if you problems."
- elog "This package is primarily intended for use with nss_ldap & pam_ldap"
- elog "and populates many default settings from the /etc/ldap.conf used by"
- elog "those packages, with a further fallback to /etc/openldap/ldap.conf"
- elog "for server connection settings only."
-}