diff options
author | Carl Perry <edolnx@gentoo.org> | 2003-03-17 07:32:08 +0000 |
---|---|---|
committer | Carl Perry <edolnx@gentoo.org> | 2003-03-17 07:32:08 +0000 |
commit | 19199c57b56fc899d2dbf55085bfafc60c078b60 (patch) | |
tree | 8aca4068cdc8e802eed1a5b8dc0853406c38fe40 /net-dns | |
parent | Added gnucash 1.8.1 which contains many bug fixes and more small (diff) | |
download | gentoo-2-19199c57b56fc899d2dbf55085bfafc60c078b60.tar.gz gentoo-2-19199c57b56fc899d2dbf55085bfafc60c078b60.tar.bz2 gentoo-2-19199c57b56fc899d2dbf55085bfafc60c078b60.zip |
Initial Import of ldapdns
Diffstat (limited to 'net-dns')
-rw-r--r-- | net-dns/ldapdns/Changelog | 8 | ||||
-rw-r--r-- | net-dns/ldapdns/files/digest-ldapdns-2.03 | 1 | ||||
-rw-r--r-- | net-dns/ldapdns/ldapdns-2.03.ebuild | 46 |
3 files changed, 55 insertions, 0 deletions
diff --git a/net-dns/ldapdns/Changelog b/net-dns/ldapdns/Changelog new file mode 100644 index 000000000000..7b01b4af5c90 --- /dev/null +++ b/net-dns/ldapdns/Changelog @@ -0,0 +1,8 @@ +# ChangeLog for net-dns/ldapdns +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/ldapdns/Changelog,v 1.1 2003/03/17 07:32:08 edolnx Exp $ + +*lapdns-2.03 (17 Mar 2003) + + 17 Mar 2003; Carl Perry <edolnx@gentoo.org>, ldapdns-2.03.ebuild : + Initial import. Ebuild submitted by Mark Farver <mfarver@mindbent.org>. diff --git a/net-dns/ldapdns/files/digest-ldapdns-2.03 b/net-dns/ldapdns/files/digest-ldapdns-2.03 new file mode 100644 index 000000000000..04b9689f4f80 --- /dev/null +++ b/net-dns/ldapdns/files/digest-ldapdns-2.03 @@ -0,0 +1 @@ +MD5 4f19050a08c43df4f3dc0bd7c5cefa3d ldapdns-2.03.tar.gz 99061 diff --git a/net-dns/ldapdns/ldapdns-2.03.ebuild b/net-dns/ldapdns/ldapdns-2.03.ebuild new file mode 100644 index 000000000000..665af5659610 --- /dev/null +++ b/net-dns/ldapdns/ldapdns-2.03.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 + +S=${WORKDIR}/${P} +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/glibc + >=net-nds/openldap-2" +RDEPEND="${DEPEND} + >=sys-apps/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" +} + |