summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchim Gottinger <achim@gentoo.org>2000-12-11 18:54:13 +0000
committerAchim Gottinger <achim@gentoo.org>2000-12-11 18:54:13 +0000
commit8ac71e1018f80fc3f5880b70ef50b16ac2c2b25d (patch)
tree139ab7b6b2be5677d62ff52fc3708c6009e3aaea /net-nds
parent*** empty log message *** (diff)
downloadhistorical-8ac71e1018f80fc3f5880b70ef50b16ac2c2b25d.tar.gz
historical-8ac71e1018f80fc3f5880b70ef50b16ac2c2b25d.tar.bz2
historical-8ac71e1018f80fc3f5880b70ef50b16ac2c2b25d.zip
*** empty log message ***
Diffstat (limited to 'net-nds')
-rw-r--r--net-nds/openldap/files/digest-openldap-2.0.11
-rw-r--r--net-nds/openldap/openldap-2.0.1.ebuild52
-rw-r--r--net-nds/ypbind/files/digest-ypbind-1.6-r11
-rw-r--r--net-nds/ypbind/ypbind-1.6-r1.ebuild38
4 files changed, 0 insertions, 92 deletions
diff --git a/net-nds/openldap/files/digest-openldap-2.0.1 b/net-nds/openldap/files/digest-openldap-2.0.1
deleted file mode 100644
index 82b93ef36aed..000000000000
--- a/net-nds/openldap/files/digest-openldap-2.0.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 baf9391cca80b520925f88fdecf7153d openldap-2.0.1.tgz
diff --git a/net-nds/openldap/openldap-2.0.1.ebuild b/net-nds/openldap/openldap-2.0.1.ebuild
deleted file mode 100644
index d910dace0fb9..000000000000
--- a/net-nds/openldap/openldap-2.0.1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Achim Gottinger <achim@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/net-nds/openldap/openldap-2.0.1.ebuild,v 1.2 2000/09/15 20:09:15 drobbins Exp $
-
-A=${P}.tgz
-S=${WORKDIR}/${P}
-DESCRIPTION="LDAP suite of application and development tools"
-SRC_URI="ftp://ftp.OpenLDAP.org/pub/OpenLDAP/openldap-release/"${A}
-HOMEPAGE="http://www.OpenLDAP.org/"
-
-src_compile() {
- cd ${S}
- try ./configure --host=${CHOST} --enable-wrappers --enable-passwd \
- --enable-shell --enable-shared --enable-static \
- --prefix=/usr --sysconfdir=/etc --localstatedir=/var/state
- try make depend
- try make
- cd tests
- try make
-}
-
-src_install() {
- cd ${S}
- try make prefix=${D}/usr sysconfdir=${D}/etc/openldap localstatedir=${D}/var/state install
- prepman
-
- dodoc ANNOUNCEMENT CHANGES COPYRIGHT README LICENSE
- docinto rfc
- dodoc doc/rfc/*.txt
- docinto devel
- dodoc doc/devel/*
-
- dodir /etc/rc.d/init.d
- cp ${O}/files/slapd ${D}/etc/rc.d/init.d
- cp ${O}/files/slurpd ${D}/etc/rc.d/init.d
-
- cd ${D}/etc/openldap
-
- for i in *
- do
- cp $i $i.orig
- sed -e "s:${D}::" $i.orig > $i
- rm $i.orig
- done
-}
-
-
-
-
-
-
diff --git a/net-nds/ypbind/files/digest-ypbind-1.6-r1 b/net-nds/ypbind/files/digest-ypbind-1.6-r1
deleted file mode 100644
index 69538539ae69..000000000000
--- a/net-nds/ypbind/files/digest-ypbind-1.6-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 903b483e2434230c63407216380b6fc9 ypbind-mt-1.6.tar.gz
diff --git a/net-nds/ypbind/ypbind-1.6-r1.ebuild b/net-nds/ypbind/ypbind-1.6-r1.ebuild
deleted file mode 100644
index 6846a805b74a..000000000000
--- a/net-nds/ypbind/ypbind-1.6-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Achim Gottinger <achim@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/net-nds/ypbind/ypbind-1.6-r1.ebuild,v 1.5 2000/11/01 04:44:22 achim Exp $
-
-P=ypbind-1.6
-A=ypbind-mt-1.6.tar.gz
-S=${WORKDIR}/ypbind-mt-1.6
-DESCRIPTION="Multithreaded NIS bind service"
-SRC_URI="ftp://ftp.de.kernel.org/pub/linux/utils/net/NIS/"${A}
-HOMEPAGE="http://www.suse.de/~kukuk/nis/ypbind-mt/index.html"
-
-DEPEND=">=sys-libs/glibc-2.1.3"
-
-src_unpack() {
- unpack ${A}
-}
-
-src_compile() {
- cd ${S}
- try ./configure --host=${CHOST} --prefix=/usr --sysconfdir=/etc/yp --with-catgets
- try make
-}
-
-src_install() {
- cd ${S}
- try make DESTDIR=${D} install
- insinto /etc/rc.d/init.d
- doins ${O}/files/ypbind
- dodoc AUTHORS ChangeLog COPYING README THANKS TODO
- insinto /etc/yp
- doins etc/yp.conf
- prepman
-}
-
-
-
-