summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcelo Góes <vanquirius@gentoo.org>2005-07-29 21:03:11 +0000
committerMarcelo Góes <vanquirius@gentoo.org>2005-07-29 21:03:11 +0000
commit15c600a879f9713a46659d06ecd12f721ec7f53a (patch)
tree508b1e4d8a1d22165f64c74f495f8c1b3352a4a3 /net-dns/ldapdns/ldapdns-2.03.ebuild
parentstable on sh. (diff)
downloadgentoo-2-15c600a879f9713a46659d06ecd12f721ec7f53a.tar.gz
gentoo-2-15c600a879f9713a46659d06ecd12f721ec7f53a.tar.bz2
gentoo-2-15c600a879f9713a46659d06ecd12f721ec7f53a.zip
bug 87104
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-dns/ldapdns/ldapdns-2.03.ebuild')
-rw-r--r--net-dns/ldapdns/ldapdns-2.03.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/net-dns/ldapdns/ldapdns-2.03.ebuild b/net-dns/ldapdns/ldapdns-2.03.ebuild
deleted file mode 100644
index 43d2d953161f..000000000000
--- a/net-dns/ldapdns/ldapdns-2.03.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/ldapdns/ldapdns-2.03.ebuild,v 1.10 2005/03/03 18:18:57 ciaranm Exp $
-
-DESCRIPTION="A tiny, fast authoritative nameserver that queries LDAP and can be updated instantly"
-SRC_URI="http://www.nimh.org/dl/${P}.tar.gz"
-HOMEPAGE="http://www.nimh.org/code/ldapdns/"
-IUSE=""
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86"
-
-DEPEND="virtual/libc
- >=net-nds/openldap-2"
-RDEPEND="${DEPEND}
- >=sys-process/daemontools-0.70
- sys-apps/ucspi-tcp"
-
-src_compile() {
- local myconf="--prefix=/usr "
-
- cd ${S}
- ./configure ${myconf}
- emake || die "Compilation failed"
-}
-
-src_install() {
- einstall || die "Installation failed"
-
-
- dodoc AUTHORS CHANGELOG FAQ INSTALL COPYING NEWS README* TODO
-}
-
-pkg_postinst() {
-
- groupadd &>/dev/null nofiles
-
- id &>/dev/null ldapdns || \
- useradd -g nofiles -d /nonexistent -s /bin/false ldapdns
- id &>/dev/null dnslog || \
- useradd -g nofiles -d /nonexistent -s /bin/false dnslog
-
- einfo "Read the readme.configure and use ldapdns-conf to setup"
-}