diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-17 10:05:46 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-17 10:05:46 +0000 |
commit | feac3fb77e080dbe7b4471db7c8e050503ef5f02 (patch) | |
tree | 397dea00dd3240f96f730ffecb1ad72b91418304 | |
parent | DNS2GO EULA (diff) | |
download | historical-feac3fb77e080dbe7b4471db7c8e050503ef5f02.tar.gz historical-feac3fb77e080dbe7b4471db7c8e050503ef5f02.tar.bz2 historical-feac3fb77e080dbe7b4471db7c8e050503ef5f02.zip |
repoman'd
-rw-r--r-- | net-dns/bind/bind-8.2.3.ebuild | 102 | ||||
-rw-r--r-- | net-dns/bind/bind-9.2.1-r1.ebuild | 5 | ||||
-rw-r--r-- | net-dns/bind/files/bind-8.1.2-fds.patch | 43 | ||||
-rw-r--r-- | net-dns/bind/files/bind-8.2-glibc21.patch | 27 | ||||
-rw-r--r-- | net-dns/bind/files/digest-bind-8.2.3 | 2 | ||||
-rw-r--r-- | net-dns/ddclient/ddclient-3.6.2.ebuild | 6 | ||||
-rw-r--r-- | net-dns/dlint/dlint-1.4.0.ebuild | 11 | ||||
-rw-r--r-- | net-dns/dns2go/dns2go-1.1-r2.ebuild | 5 | ||||
-rw-r--r-- | net-dns/dnsmasq/dnsmasq-1.6.ebuild | 7 | ||||
-rw-r--r-- | net-dns/dnswalk/dnswalk-2.0.2.ebuild | 16 | ||||
-rw-r--r-- | net-dns/ez-ipupdate/ez-ipupdate-3.0.11_beta7.ebuild | 6 | ||||
-rw-r--r-- | net-dns/hesiod/hesiod-3.0.2.ebuild | 20 | ||||
-rw-r--r-- | net-dns/pdnsd/pdnsd-1.1.6-r7.ebuild | 17 |
13 files changed, 55 insertions, 212 deletions
diff --git a/net-dns/bind/bind-8.2.3.ebuild b/net-dns/bind/bind-8.2.3.ebuild deleted file mode 100644 index b7ccbe6214f1..000000000000 --- a/net-dns/bind/bind-8.2.3.ebuild +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/bind-8.2.3.ebuild,v 1.3 2002/07/11 06:30:45 drobbins Exp $ - -A="bind-src.tar.gz bind-doc.tar.gz" -S=${WORKDIR}/src -DESCRIPTION="Name Server" -SRC_URI="ftp://ftp.isc.org/isc/bind/src/8.2.3/bind-src.tar.gz - ftp://ftp.isc.org/isc/bind/src/8.2.3/bind-doc.tar.gz" -HOMEPAGE="http://www.isc.org/products/BIND" - -KEYWORDS="x86" -LICENSE="as-is" -SLOT="0" - -DEPEND="virtual/glibc - >=sys-apps/groff-1.16.1 - >=sys-devel/flex-2.5.4" - -src_unpack() { - unpack ${A} - cd ${S} - patch -p2 < ${FILESDIR}/bind-8.1.2-fds.patch - - cd ${S}/port/linux - cp Makefile.set Makefile.set.orig - sed -e "s:^'CC=.*:'CC=gcc':" \ - -e "s:^'YACC=.*:'YACC=bison -y':" \ - -e "s:CDEBUG=-O -g:CDEBUG=${CFLAGS}:" Makefile.set.orig > Makefile.set -} - -src_compile() { - - try make clean depend -# cd lib -# for i in bsd dst isc irs inet dnssafe nameser cylink resolv . -# do -# cp $i/Makefile $i/Makefile.orig -# sed -e "s:SYSTYPE= bsdos:SYSTYPE= linux:" $i/Makefile.orig > $i/Makefile -# done -# cd .. - try make SYSTYPE=linux -} - -src_install() { - into /usr - for x in addr dig dnsquery host mkservdb nslookup nsupdate - do - dobin bin/${x}/${x} - done - - for x in dnskeygen irpd named named-bootconf named-xfer ndc - do - dosbin bin/${x}/${x} - done - - dodoc CHANGES DNSSEC SUPPORT README LICENSE* TODO - docinto conf - dodoc conf/README - docinto conf/recursive - dodoc conf/recursive/* - docinto conf/recursive/pri - dodoc conf/recursive/pri/* - docinto conf/workstation - dodoc conf/workstation/* - docinto conf/workstation/pri - dodoc conf/workstation/pri/* - dodir /etc/rc.d/init.d - cp ${O}/files/named ${D}/etc/rc.d/init.d - cp ${O}/files/named.conf ${D}/usr/doc/${PF}/conf/workstation/named.conf.gentoolinux - dodir /etc/bind - dodir /var/bind - - cd ${WORKDIR}/doc/html - docinto html - dodoc * - - cd ${WORKDIR}/doc/man - for i in *.1 *.3 *.5 *.7 *.8 - do - doman $i - done -} - -pkg_config() { - . ${ROOT}/etc/rc.d/config/functions - - if [ -e ${ROOT}/etc/bind/named.conf ]; then - echo "You already have a named.conf in ${ROOT}/etc/bind/named.conf, not creating one." - else - install -m0644 ${ROOT}/usr/doc/${PF}/conf/workstation/named.conf.gentoolinux ${ROOT}/etc/bind/named.conf - mkdir ${ROOT}/var/bind/pri - gzip -d ${ROOT}/usr/doc/${PF}/conf/workstation/root.cache.gz - gzip -d ${ROOT}/usr/doc/${PF}/conf/workstation/pri/*.gz - install -m0644 ${ROOT}/usr/doc/${PF}/conf/workstation/root.cache ${ROOT}/var/bind/root.cache - install -m0644 ${ROOT}/usr/doc/${PF}/conf/workstation/pri/* ${ROOT}/var/bind/pri/ - fi - echo; - - ${ROOT}/usr/sbin/rc-update add named - echo; einfo "BIND enabled." -} diff --git a/net-dns/bind/bind-9.2.1-r1.ebuild b/net-dns/bind/bind-9.2.1-r1.ebuild index 70c07d03a564..bf92540e027e 100644 --- a/net-dns/bind/bind-9.2.1-r1.ebuild +++ b/net-dns/bind/bind-9.2.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/bind-9.2.1-r1.ebuild,v 1.2 2002/07/09 21:38:29 nitro Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/bind-9.2.1-r1.ebuild,v 1.3 2002/07/17 10:05:46 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="BIND - Name Server" @@ -11,8 +11,7 @@ KEYWORDS="x86" LICENSE="as-is" SLOT="0" -DEPEND="virtual/glibc sys-apps/groff" -RDEPEND="virtual/glibc" +DEPEND="sys-apps/groff" src_compile() { local myconf diff --git a/net-dns/bind/files/bind-8.1.2-fds.patch b/net-dns/bind/files/bind-8.1.2-fds.patch deleted file mode 100644 index 54a3404d2d9f..000000000000 --- a/net-dns/bind/files/bind-8.1.2-fds.patch +++ /dev/null @@ -1,43 +0,0 @@ ---- bind-8.1.2/src/lib/isc/eventlib.c~ Fri Mar 20 18:26:24 1998 -+++ bind-8.1.2/src/lib/isc/eventlib.c Wed Jan 6 17:44:03 1999 -@@ -290,9 +290,9 @@ - evPrintf(ctx, 4, - "pselect(%d, 0x%lx, 0x%lx, 0x%lx, %d.%09ld)\n", - ctx->fdMax+1, -- (u_long)ctx->rdLast.fds_bits[0], -- (u_long)ctx->wrLast.fds_bits[0], -- (u_long)ctx->exLast.fds_bits[0], -+ __FDS_BITS(&ctx->rdLast)[0], -+ __FDS_BITS(&ctx->wrLast)[0], -+ __FDS_BITS(&ctx->exLast)[0], - tp ? tp->tv_sec : -1, - tp ? tp->tv_nsec : -1); - ---- bind-8.1.2/src/lib/isc/ev_files.c~ Thu Feb 5 20:53:52 1998 -+++ bind-8.1.2/src/lib/isc/ev_files.c Wed Jan 6 17:46:18 1999 -@@ -139,9 +139,9 @@ - evPrintf(ctx, 5, - "evSelectFD(fd %d, mask 0x%x): new masks: 0x%lx 0x%lx 0x%lx\n", - fd, eventmask, -- (u_long)ctx->rdNext.fds_bits[0], -- (u_long)ctx->wrNext.fds_bits[0], -- (u_long)ctx->exNext.fds_bits[0]); -+ __FDS_BITS(&ctx->rdNext)[0], -+ __FDS_BITS(&ctx->wrNext)[0], -+ __FDS_BITS(&ctx->exNext)[0]); - - return (0); - } -@@ -250,9 +250,9 @@ - evPrintf(ctx, 5, - "evDeselectFD(fd %d, mask 0x%x): new masks: 0x%lx 0x%lx 0x%lx\n", - del->fd, eventmask, -- (u_long)ctx->rdNext.fds_bits[0], -- (u_long)ctx->wrNext.fds_bits[0], -- (u_long)ctx->exNext.fds_bits[0]); -+ __FDS_BITS(&ctx->rdNext)[0], -+ __FDS_BITS(&ctx->wrNext)[0], -+ __FDS_BITS(&ctx->exNext)[0]); - - /* Couldn't free it before now since we were using fields out of it. */ - FREE(del); diff --git a/net-dns/bind/files/bind-8.2-glibc21.patch b/net-dns/bind/files/bind-8.2-glibc21.patch deleted file mode 100644 index 161ec3544c2b..000000000000 --- a/net-dns/bind/files/bind-8.2-glibc21.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- bind-8.2/src/port/linux/include/port_after.h~ Sat Feb 27 02:04:21 1999 -+++ bind-8.2/src/port/linux/include/port_after.h Tue Mar 16 19:30:14 1999 -@@ -63,24 +63,4 @@ - #define PF_INET6 AF_INET6 - #endif - --#ifndef HAS_INET6_STRUCTS --/* Replace with structure from later rev of O/S if known. */ --struct in6_addr { -- u_int8_t s6_addr[16]; --}; -- --/* Replace with structure from later rev of O/S if known. */ --struct sockaddr_in6 { --#ifdef HAVE_SA_LEN -- u_int8_t sin6_len; /* length of this struct */ -- u_int8_t sin6_family; /* AF_INET6 */ --#else -- u_int16_t sin6_family; /* AF_INET6 */ --#endif -- u_int16_t sin6_port; /* transport layer port # */ -- u_int32_t sin6_flowinfo; /* IPv6 flow information */ -- struct in6_addr sin6_addr; /* IPv6 address */ -- u_int32_t sin6_scope_id; /* set of interfaces for a scope */ --}; --#endif /* HAS_INET6_STRUCTS */ - #endif /* ! PORT_AFTER_H */ diff --git a/net-dns/bind/files/digest-bind-8.2.3 b/net-dns/bind/files/digest-bind-8.2.3 deleted file mode 100644 index 2e9e6e127b73..000000000000 --- a/net-dns/bind/files/digest-bind-8.2.3 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 02263c12fde91ef0fe03f07ed263a9f3 bind-src.tar.gz 1313049 -MD5 c26474bb791552cc0cbc5af72190a772 bind-doc.tar.gz 1486379 diff --git a/net-dns/ddclient/ddclient-3.6.2.ebuild b/net-dns/ddclient/ddclient-3.6.2.ebuild index a005196a62da..0ef041810e66 100644 --- a/net-dns/ddclient/ddclient-3.6.2.ebuild +++ b/net-dns/ddclient/ddclient-3.6.2.ebuild @@ -1,13 +1,17 @@ # Copyright 1999-2001 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-dns/ddclient/ddclient-3.6.2.ebuild,v 1.2 2002/07/11 06:30:45 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/ddclient/ddclient-3.6.2.ebuild,v 1.3 2002/07/17 10:05:46 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="A perl based client for dyndns" SRC_URI="http://burry.ca:4141/ddclient/${P}.tar.gz" HOMEPAGE="http://burry.ca:4141/ddclient/" + RDEPEND="sys-devel/perl" + SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" src_unpack() { unpack ${P}.tar.gz diff --git a/net-dns/dlint/dlint-1.4.0.ebuild b/net-dns/dlint/dlint-1.4.0.ebuild index 26dcf249da76..061e5016ce76 100644 --- a/net-dns/dlint/dlint-1.4.0.ebuild +++ b/net-dns/dlint/dlint-1.4.0.ebuild @@ -1,15 +1,20 @@ # 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/dlint/dlint-1.4.0.ebuild,v 1.3 2002/07/11 06:30:46 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/dlint/dlint-1.4.0.ebuild,v 1.4 2002/07/17 10:05:46 seemant Exp $ MY_P=${PN}${PV} S=${WORKDIR}/${MY_P} DESCRIPTION="Dlint analyzes any DNS zone you specify, and reports any problems it finds by displaying errors and warnings" SRC_URI="http://www.domtools.com/pub/${MY_P}.tar.gz" HOMEPAGE="http://www.domtools.com/dns/dlint.shtml" + SLOT="0" -KEYWORDS="*" -DEPEND="net-dns/bind-tools sys-devel/perl sys-apps/bash" +KEYWORDS="x86" +LICENSE="GPL-2" + +DEPEND="net-dns/bind-tools + sys-devel/perl + sys-apps/bash" src_compile() { diff --git a/net-dns/dns2go/dns2go-1.1-r2.ebuild b/net-dns/dns2go/dns2go-1.1-r2.ebuild index 40619915d780..7cce05a05af6 100644 --- a/net-dns/dns2go/dns2go-1.1-r2.ebuild +++ b/net-dns/dns2go/dns2go-1.1-r2.ebuild @@ -1,12 +1,15 @@ # 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/dns2go/dns2go-1.1-r2.ebuild,v 1.2 2002/07/11 06:30:46 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/dns2go/dns2go-1.1-r2.ebuild,v 1.3 2002/07/17 10:05:46 seemant Exp $ S=${WORKDIR}/dns2go-1.1-1 DESCRIPTION="Dns2Go Linux Client v1.1" SRC_URI="http://home.planetinternet.be/~felixdv/d2gsetup.tar.gz" HOMEPAGE="http://www.dns2go.com" + SLOT="0" +LICENSE="DNS2GO" +KEYWORDS="x86" DEPENDS="virtual/glibc" diff --git a/net-dns/dnsmasq/dnsmasq-1.6.ebuild b/net-dns/dnsmasq/dnsmasq-1.6.ebuild index ce215d8b823b..fb188de2dc91 100644 --- a/net-dns/dnsmasq/dnsmasq-1.6.ebuild +++ b/net-dns/dnsmasq/dnsmasq-1.6.ebuild @@ -1,14 +1,17 @@ # 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/dnsmasq/dnsmasq-1.6.ebuild,v 1.1 2002/06/29 00:55:03 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/dnsmasq/dnsmasq-1.6.ebuild,v 1.2 2002/07/17 10:05:46 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="Proxy DNS server" SRC_URI="http://www.thekelleys.org.uk/dnsmasq/${P}.tar.gz" HOMEPAGE="http://www.thekelleys.org.uk/dnsmasq/" + DEPEND="virtual/glibc" -LICENSE="GPL-2" + SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" src_unpack() { unpack ${A} ; cd ${S} diff --git a/net-dns/dnswalk/dnswalk-2.0.2.ebuild b/net-dns/dnswalk/dnswalk-2.0.2.ebuild index cacef29b5c21..d724f3e6976b 100644 --- a/net-dns/dnswalk/dnswalk-2.0.2.ebuild +++ b/net-dns/dnswalk/dnswalk-2.0.2.ebuild @@ -1,19 +1,24 @@ # Copyright 1999-2001 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-dns/dnswalk/dnswalk-2.0.2.ebuild,v 1.2 2002/07/11 06:30:46 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/dnswalk/dnswalk-2.0.2.ebuild,v 1.3 2002/07/17 10:05:46 seemant Exp $ S=${WORKDIR} DESCRIPTION="dnswalk is a DNS database debugger" SRC_URI="http://www.visi.com/~barr/dnswalk/${P}.tar.gz" HOMEPAGE="http://www.visi.com/~barr/dnswalk/" -DEPEND=">=sys-devel/perl-5.6.1 >=dev-perl/Net-DNS-0.12" -RDEPEND="${DEPEND}" +DEPEND=">=dev-perl/Net-DNS-0.12" + + +SLOT="0" +LICENSE="as-is" +KEYWORDS="x86" src_compile() { mv dnswalk dnswalk.orig - sed 's/#!\/usr\/contrib\/bin\/perl/#!\/usr\/bin\/perl/' dnswalk.orig > dnswalk + sed 's:#!/usr/contrib/bin/perl:#!/usr/bin/perl:' \ + dnswalk.orig > dnswalk } @@ -21,7 +26,8 @@ src_install () { dobin dnswalk - dodoc CHANGES README TODO do-dnswalk makereports sendreports rfc1912.txt dnswalk.errors + dodoc CHANGES README TODO \ + do-dnswalk makereports sendreports rfc1912.txt dnswalk.errors doman dnswalk.1 } diff --git a/net-dns/ez-ipupdate/ez-ipupdate-3.0.11_beta7.ebuild b/net-dns/ez-ipupdate/ez-ipupdate-3.0.11_beta7.ebuild index 9e0dc3135795..1e372080b105 100644 --- a/net-dns/ez-ipupdate/ez-ipupdate-3.0.11_beta7.ebuild +++ b/net-dns/ez-ipupdate/ez-ipupdate-3.0.11_beta7.ebuild @@ -1,13 +1,15 @@ # 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/ez-ipupdate/ez-ipupdate-3.0.11_beta7.ebuild,v 1.2 2002/07/11 06:30:46 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/ez-ipupdate/ez-ipupdate-3.0.11_beta7.ebuild,v 1.3 2002/07/17 10:05:46 seemant Exp $ S="${WORKDIR}/${PN}-3.0.11b7" SRC_URI="http://gusnet.cx/proj/ez-ipupdate/dist/${PN}-3.0.11b7.tar.gz" HOMEPAGE="http://gusnet.cx/proj/ez-ipupdate" DESCRIPTION="Dynamic DNS client for lots of dynamic dns services" -LICENSE="GPL-2" + SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" DEPEND="virtual/glibc" diff --git a/net-dns/hesiod/hesiod-3.0.2.ebuild b/net-dns/hesiod/hesiod-3.0.2.ebuild index 4399caa66eaf..15b819021286 100644 --- a/net-dns/hesiod/hesiod-3.0.2.ebuild +++ b/net-dns/hesiod/hesiod-3.0.2.ebuild @@ -1,17 +1,18 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/hesiod/hesiod-3.0.2.ebuild,v 1.1 2002/06/29 00:55:03 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/hesiod/hesiod-3.0.2.ebuild,v 1.2 2002/07/17 10:05:46 seemant Exp $ +S=${WORKDIR}/${P} DESCRIPTION="Hesiod is a system which uses existing DNS functionality to provide access to databases of information that changes infrequently." - +SRC_URI="ftp://athena-dist.mit.edu/pub/ATHENA/${PN}/${P}.tar.gz" HOMEPAGE="ftp://athena-dist.mit.edu/pub/ATHENA/hesiod" + +SLOT="0" LICENSE="ISC" +KEYWORDS="x86" + DEPEND="virtual/glibc" -#RDEPEND="" -SRC_URI="ftp://athena-dist.mit.edu/pub/ATHENA/${PN}/${P}.tar.gz" -SLOT="0" -S=${WORKDIR}/${P} src_unpack() { unpack ${A} @@ -50,11 +51,4 @@ src_compile() { src_install () { make DESTDIR=${D} install || die - #make \ - # prefix=${D}/usr \ - # mandir=${D}/usr/share/man \ - # infodir=${D}/usr/share/info \ - # install || die - # Again, verify the Makefiles! We don't want anything falling - # outside of ${D}. } diff --git a/net-dns/pdnsd/pdnsd-1.1.6-r7.ebuild b/net-dns/pdnsd/pdnsd-1.1.6-r7.ebuild index a17f78d111e0..0d94b3af5abd 100644 --- a/net-dns/pdnsd/pdnsd-1.1.6-r7.ebuild +++ b/net-dns/pdnsd/pdnsd-1.1.6-r7.ebuild @@ -1,23 +1,24 @@ # Copyright 1999-2000 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.6-r7.ebuild,v 1.2 2002/07/11 06:30:46 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/pdnsd/pdnsd-1.1.6-r7.ebuild,v 1.3 2002/07/17 10:05:46 seemant 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/" -SLOT="0" DEPEND="virtual/glibc" +SLOT="0" +LICENSE="BSD | GPL-2" +KEYWORDS="x86" + src_compile() { - ./configure \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --sysconfdir=/etc/pdnsd \ - --with-cachedir=/var/lib/pdnsd \ - --host=${CHOST} || die "bad configure" + econf \ + --sysconfdir=/etc/pdnsd \ + --with-cachedir=/var/lib/pdnsd \ + || die "bad configure" emake all || die "compile problem" } |