diff options
author | Carl Perry <edolnx@gentoo.org> | 2003-06-01 21:44:39 +0000 |
---|---|---|
committer | Carl Perry <edolnx@gentoo.org> | 2003-06-01 21:44:39 +0000 |
commit | a58d3ab92020447b8249ad8176d0c2b862f30cd8 (patch) | |
tree | 0740d29cc017f5be7be78deb83b881e4b4bdf32f /net-dns/ldapdns | |
parent | Cleanup & version bumped. Closes #21964. (diff) | |
download | gentoo-2-a58d3ab92020447b8249ad8176d0c2b862f30cd8.tar.gz gentoo-2-a58d3ab92020447b8249ad8176d0c2b862f30cd8.tar.bz2 gentoo-2-a58d3ab92020447b8249ad8176d0c2b862f30cd8.zip |
Updated to latest stable version and unmasked
Diffstat (limited to 'net-dns/ldapdns')
-rw-r--r-- | net-dns/ldapdns/ChangeLog | 9 | ||||
-rw-r--r-- | net-dns/ldapdns/Manifest | 2 | ||||
-rw-r--r-- | net-dns/ldapdns/files/digest-ldapdns-2.04 | 1 | ||||
-rw-r--r-- | net-dns/ldapdns/ldapdns-2.04.ebuild | 46 |
4 files changed, 57 insertions, 1 deletions
diff --git a/net-dns/ldapdns/ChangeLog b/net-dns/ldapdns/ChangeLog index 3638ca3e427a..667dd1f96471 100644 --- a/net-dns/ldapdns/ChangeLog +++ b/net-dns/ldapdns/ChangeLog @@ -1,8 +1,15 @@ # 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:33:04 edolnx Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/ldapdns/ChangeLog,v 1.2 2003/06/01 21:44:39 edolnx Exp $ + +*lapdns-2.04 (01 Jun 2003) + + 01 Jun 2003; Carl Perry <edolnx@gentoo.org>, ldapdns-2.04.ebuild : + New version that fixes some bugs. Unmasked as it's working fine on + x86. *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/Manifest b/net-dns/ldapdns/Manifest index 8366d238f5e7..7d7e2c9cd650 100644 --- a/net-dns/ldapdns/Manifest +++ b/net-dns/ldapdns/Manifest @@ -1,3 +1,5 @@ MD5 810618cd9ebd88531bae2caddecc6582 ChangeLog 386 MD5 4c2921992742d9ba15a564dea3af0fc0 ldapdns-2.03.ebuild 1043 +MD5 4c2921992742d9ba15a564dea3af0fc0 ldapdns-2.04.ebuild 1043 MD5 87c558c39b51b905f9272fd860140816 files/digest-ldapdns-2.03 63 +MD5 c6ce7d541758b912a1c8fe354c3e40be files/digest-ldapdns-2.04 64 diff --git a/net-dns/ldapdns/files/digest-ldapdns-2.04 b/net-dns/ldapdns/files/digest-ldapdns-2.04 new file mode 100644 index 000000000000..c27f779105d3 --- /dev/null +++ b/net-dns/ldapdns/files/digest-ldapdns-2.04 @@ -0,0 +1 @@ +MD5 28a7e14a6cb5bce9b15d75a8ba03fa9a ldapdns-2.04.tar.gz 119270 diff --git a/net-dns/ldapdns/ldapdns-2.04.ebuild b/net-dns/ldapdns/ldapdns-2.04.ebuild new file mode 100644 index 000000000000..80ece4e7d866 --- /dev/null +++ b/net-dns/ldapdns/ldapdns-2.04.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" +} + |