summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Ahlberg <aliz@gentoo.org>2002-08-05 15:43:25 +0000
committerDaniel Ahlberg <aliz@gentoo.org>2002-08-05 15:43:25 +0000
commite481aafdd648f56c0ff9d87d2fe17417ab55f63c (patch)
tree249175b12a0b26cbb99a728ee97e9c86cb23dda3 /net-dns
parentsmall fix0r (diff)
downloadgentoo-2-e481aafdd648f56c0ff9d87d2fe17417ab55f63c.tar.gz
gentoo-2-e481aafdd648f56c0ff9d87d2fe17417ab55f63c.tar.bz2
gentoo-2-e481aafdd648f56c0ff9d87d2fe17417ab55f63c.zip
Version bump, also includes security fix!
Diffstat (limited to 'net-dns')
-rw-r--r--net-dns/pdnsd/ChangeLog8
-rw-r--r--net-dns/pdnsd/files/digest-pdnsd-1.1.7a1
-rw-r--r--net-dns/pdnsd/pdnsd-1.1.7a.ebuild38
3 files changed, 46 insertions, 1 deletions
diff --git a/net-dns/pdnsd/ChangeLog b/net-dns/pdnsd/ChangeLog
index b38b5f35c65c..177ab2425dd8 100644
--- a/net-dns/pdnsd/ChangeLog
+++ b/net-dns/pdnsd/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-misc/pdnsd
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/net-dns/pdnsd/ChangeLog,v 1.1 2002/06/29 00:55:03 bangert Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/pdnsd/ChangeLog,v 1.2 2002/08/05 15:43:25 aliz Exp $
+
+*pdnsd-1.1.7a (05 Aug 2002)
+
+ 05 Aug 2002; Daniel Ahlberg <aliz@gentoo.org> pdnsd-1.1.7a.ebuild:
+ Version bump that includes security fix, ebuild submitted
+ by tuxisuau <tuxisuau@7a69ezine.org>.
*pdnsd-1.1.6-r7 (1 Feb 2002)
diff --git a/net-dns/pdnsd/files/digest-pdnsd-1.1.7a b/net-dns/pdnsd/files/digest-pdnsd-1.1.7a
new file mode 100644
index 000000000000..ea2f48f09a50
--- /dev/null
+++ b/net-dns/pdnsd/files/digest-pdnsd-1.1.7a
@@ -0,0 +1 @@
+MD5 9e51a4e4ac14cc537ee3204d3e4ac8ff pdnsd-1.1.7a.tar.bz2 221084
diff --git a/net-dns/pdnsd/pdnsd-1.1.7a.ebuild b/net-dns/pdnsd/pdnsd-1.1.7a.ebuild
new file mode 100644
index 000000000000..2a75912a33de
--- /dev/null
+++ b/net-dns/pdnsd/pdnsd-1.1.7a.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header: /var/cvsroot/gentoo-x86/net-dns/pdnsd/pdnsd-1.1.7a.ebuild,v 1.1 2002/08/05 15:43:25 aliz Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="Proxy DNS server with permanent caching"
+SRC_URI="http://home.t-online.de/home/Moestl/${P}.tar.bz2"
+HOMEPAGE="http://home.t-online.de/home/Moestl/"
+
+DEPEND="virtual/glibc"
+
+SLOT="0"
+LICENSE="BSD | GPL-2"
+KEYWORDS="x86"
+
+src_compile() {
+
+ econf \
+ --sysconfdir=/etc/pdnsd \
+ --with-cachedir=/var/lib/pdnsd \
+ || die "bad configure"
+
+ emake all || die "compile problem"
+}
+
+src_install() {
+
+ make DESTDIR=${D} install || die
+
+ dodoc AUTHORS COPYING* ChangeLog* NEWS README THANKS TODO
+ docinto contrib ; dodoc contrib/{README,dhcp2pdnsd,pdnsd_dhcp.pl}
+ docinto html ; dodoc doc/html/*
+ docinto txt ; dodoc doc/txt/*
+ newdoc doc/pdnsd.conf pdnsd.conf.sample
+
+ exeinto /etc/init.d ; newexe ${FILESDIR}/pdnsd.rc6 pdnsd
+}
+