1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-02 06:03:50 +00:00

pear-Net_DNS2 provides (roughly) the same functionality as Net_DNS, but

using PHP5 objects, exceptions for error handling, better sockets support.

This release is (in most cases) 2x - 10x faster than Net_DNS, as well as
includes more RR's (including DNSSEC RR's), and improved sockets and streams
support.

WWW: http://pear.php.net/package/Net_DNS2/
This commit is contained in:
Wen Heping 2010-10-27 01:26:24 +00:00
parent 38ca080f91
commit 8a130b4765
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=263638
4 changed files with 53 additions and 0 deletions

View File

@ -120,6 +120,7 @@
SUBDIR += pdnsd
SUBDIR += pear-File_DNS
SUBDIR += pear-Net_DNS
SUBDIR += pear-Net_DNS2
SUBDIR += posadis
SUBDIR += poweradmin
SUBDIR += powerdns

View File

@ -0,0 +1,41 @@
# Ports collection makefile for: pear-Net_DNS2
# Date created: Oct 27, 2010
# Whom: Wen Heping <wen@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= Net_DNS2
PORTVERSION= 1.0.0
CATEGORIES= dns net pear
MAINTAINER= wen@FreeBSD.org
COMMENT= PHP5 Resolver library used to communicate with a DNS server
BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear
RUN_DEPENDS= ${BUILD_DEPENDS}
FILES= Net/DNS2.php \
Net/DNS2/BitMap.php Net/DNS2/Exception.php Net/DNS2/Header.php \
Net/DNS2/Lookups.php Net/DNS2/Packet/Request.php Net/DNS2/Packet/Response.php \
Net/DNS2/Packet.php Net/DNS2/Question.php Net/DNS2/RR/A.php \
Net/DNS2/RR/AAAA.php Net/DNS2/RR/AFSDB.php Net/DNS2/RR/ANY.php \
Net/DNS2/RR/APL.php Net/DNS2/RR/CERT.php Net/DNS2/RR/CNAME.php \
Net/DNS2/RR/DHCID.php Net/DNS2/RR/DLV.php Net/DNS2/RR/DNAME.php \
Net/DNS2/RR/DNSKEY.php Net/DNS2/RR/DS.php Net/DNS2/RR/EID.php \
Net/DNS2/RR/HINFO.php Net/DNS2/RR/HIP.php Net/DNS2/RR/IPSECKEY.php \
Net/DNS2/RR/ISDN.php Net/DNS2/RR/KEY.php Net/DNS2/RR/KX.php \
Net/DNS2/RR/LOC.php Net/DNS2/RR/MX.php Net/DNS2/RR/NAPTR.php \
Net/DNS2/RR/NIMLOC.php Net/DNS2/RR/NS.php Net/DNS2/RR/NSAP.php \
Net/DNS2/RR/NSEC.php Net/DNS2/RR/NSEC3.php Net/DNS2/RR/NSEC3PARAM.php \
Net/DNS2/RR/OPT.php Net/DNS2/RR/PTR.php Net/DNS2/RR/PX.php \
Net/DNS2/RR/RP.php Net/DNS2/RR/RRSIG.php Net/DNS2/RR/RT.php \
Net/DNS2/RR/SIG.php Net/DNS2/RR/SOA.php Net/DNS2/RR/SPF.php \
Net/DNS2/RR/SRV.php Net/DNS2/RR/SSHFP.php Net/DNS2/RR/TKEY.php \
Net/DNS2/RR/TSIG.php Net/DNS2/RR/TXT.php Net/DNS2/RR/X25.php \
Net/DNS2/RR.php Net/DNS2/Resolver.php Net/DNS2/Socket/Sockets.php \
Net/DNS2/Socket/Streams.php Net/DNS2/Socket.php Net/DNS2/Updater.php
.include <bsd.port.pre.mk>
.include "${PORTSDIR}/devel/pear/bsd.pear.mk"
.include <bsd.port.post.mk>

View File

@ -0,0 +1,3 @@
MD5 (PEAR/Net_DNS2-1.0.0.tgz) = e27d4ff463736af3e2a70cd824b3c619
SHA256 (PEAR/Net_DNS2-1.0.0.tgz) = c14d435b4494679d21be6da431112fdbb524d0bd7fc1745be5320af41f5b8064
SIZE (PEAR/Net_DNS2-1.0.0.tgz) = 47459

View File

@ -0,0 +1,8 @@
pear-Net_DNS2 provides (roughly) the same functionality as Net_DNS, but
using PHP5 objects, exceptions for error handling, better sockets support.
This release is (in most cases) 2x - 10x faster than Net_DNS, as well as
includes more RR's (including DNSSEC RR's), and improved sockets and streams
support.
WWW: http://pear.php.net/package/Net_DNS2/