mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 09:49:18 -04:00
add p5-POE-Component-Client-DNS
POE component for non-blocking/concurrent DNS queries PR: 32779 Submitted by: Sergey Skvortsov <skv@protey.ru>
This commit is contained in:
parent
03f0ef55d3
commit
498b77f3cf
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=51482
11 changed files with 93 additions and 0 deletions
|
@ -396,6 +396,7 @@
|
||||||
SUBDIR += p5-OLE-Storage_Lite
|
SUBDIR += p5-OLE-Storage_Lite
|
||||||
SUBDIR += p5-ORBit
|
SUBDIR += p5-ORBit
|
||||||
SUBDIR += p5-POE
|
SUBDIR += p5-POE
|
||||||
|
SUBDIR += p5-POE-Component-Client-DNS
|
||||||
SUBDIR += p5-POE-Component-JobQueue
|
SUBDIR += p5-POE-Component-JobQueue
|
||||||
SUBDIR += p5-POE-Component-Pcap
|
SUBDIR += p5-POE-Component-Pcap
|
||||||
SUBDIR += p5-POE-Component-RSS
|
SUBDIR += p5-POE-Component-RSS
|
||||||
|
|
27
devel/p5-POE-Component-Client-DNS/Makefile
Normal file
27
devel/p5-POE-Component-Client-DNS/Makefile
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
# New ports collection makefile for: POE-Component-Client-DNS
|
||||||
|
# Date created: 10 Dec 2001
|
||||||
|
# Whom: Sergey Skvortsov <skv@protey.ru>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= POE-Component-Client-DNS
|
||||||
|
PORTVERSION= 0.93
|
||||||
|
CATEGORIES= devel perl5 net
|
||||||
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN} \
|
||||||
|
http://poe.perl.org/poedown/
|
||||||
|
MASTER_SITE_SUBDIR= POE
|
||||||
|
PKGNAMEPREFIX= p5-
|
||||||
|
|
||||||
|
MAINTAINER= skv@protey.ru
|
||||||
|
|
||||||
|
BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/POE.pm:${PORTSDIR}/devel/p5-POE \
|
||||||
|
${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Net/DNS.pm:${PORTSDIR}/net/p5-Net-DNS
|
||||||
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||||
|
|
||||||
|
PERL_CONFIGURE= yes
|
||||||
|
|
||||||
|
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
||||||
|
MAN3= POE::Component::Client::DNS.3
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
1
devel/p5-POE-Component-Client-DNS/distinfo
Normal file
1
devel/p5-POE-Component-Client-DNS/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (POE-Component-Client-DNS-0.93.tar.gz) = 74394008d7169311fe6beb7e327723ba
|
1
devel/p5-POE-Component-Client-DNS/pkg-comment
Normal file
1
devel/p5-POE-Component-Client-DNS/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
||||||
|
POE component for non-blocking/concurrent DNS queries
|
8
devel/p5-POE-Component-Client-DNS/pkg-descr
Normal file
8
devel/p5-POE-Component-Client-DNS/pkg-descr
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
POE::Component::Client::DNS is a wrapper for non-blocking Net::DNS.
|
||||||
|
It lets other tasks to run while something is waiting for a nameserver
|
||||||
|
to respond, and it lets several DNS queries run in parallel.
|
||||||
|
|
||||||
|
WWW: http://search.cpan.org/search?dist=POE-Component-Client-DNS
|
||||||
|
|
||||||
|
-- Sergey Skvortsov
|
||||||
|
skv@protey.ru
|
9
devel/p5-POE-Component-Client-DNS/pkg-plist
Normal file
9
devel/p5-POE-Component-Client-DNS/pkg-plist
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client/DNS/.packlist
|
||||||
|
lib/perl5/site_perl/%%PERL_VER%%/POE/Component/Client/DNS.pm
|
||||||
|
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client/DNS
|
||||||
|
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component/Client 2>/dev/null || true
|
||||||
|
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component 2>/dev/null || true
|
||||||
|
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE 2>/dev/null || true
|
||||||
|
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client 2>/dev/null || true
|
||||||
|
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component 2>/dev/null || true
|
||||||
|
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE 2>/dev/null || true
|
27
dns/p5-POE-Component-Client-DNS/Makefile
Normal file
27
dns/p5-POE-Component-Client-DNS/Makefile
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
# New ports collection makefile for: POE-Component-Client-DNS
|
||||||
|
# Date created: 10 Dec 2001
|
||||||
|
# Whom: Sergey Skvortsov <skv@protey.ru>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= POE-Component-Client-DNS
|
||||||
|
PORTVERSION= 0.93
|
||||||
|
CATEGORIES= devel perl5 net
|
||||||
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN} \
|
||||||
|
http://poe.perl.org/poedown/
|
||||||
|
MASTER_SITE_SUBDIR= POE
|
||||||
|
PKGNAMEPREFIX= p5-
|
||||||
|
|
||||||
|
MAINTAINER= skv@protey.ru
|
||||||
|
|
||||||
|
BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/POE.pm:${PORTSDIR}/devel/p5-POE \
|
||||||
|
${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Net/DNS.pm:${PORTSDIR}/net/p5-Net-DNS
|
||||||
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||||
|
|
||||||
|
PERL_CONFIGURE= yes
|
||||||
|
|
||||||
|
MANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
|
||||||
|
MAN3= POE::Component::Client::DNS.3
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
1
dns/p5-POE-Component-Client-DNS/distinfo
Normal file
1
dns/p5-POE-Component-Client-DNS/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (POE-Component-Client-DNS-0.93.tar.gz) = 74394008d7169311fe6beb7e327723ba
|
1
dns/p5-POE-Component-Client-DNS/pkg-comment
Normal file
1
dns/p5-POE-Component-Client-DNS/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
||||||
|
POE component for non-blocking/concurrent DNS queries
|
8
dns/p5-POE-Component-Client-DNS/pkg-descr
Normal file
8
dns/p5-POE-Component-Client-DNS/pkg-descr
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
POE::Component::Client::DNS is a wrapper for non-blocking Net::DNS.
|
||||||
|
It lets other tasks to run while something is waiting for a nameserver
|
||||||
|
to respond, and it lets several DNS queries run in parallel.
|
||||||
|
|
||||||
|
WWW: http://search.cpan.org/search?dist=POE-Component-Client-DNS
|
||||||
|
|
||||||
|
-- Sergey Skvortsov
|
||||||
|
skv@protey.ru
|
9
dns/p5-POE-Component-Client-DNS/pkg-plist
Normal file
9
dns/p5-POE-Component-Client-DNS/pkg-plist
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client/DNS/.packlist
|
||||||
|
lib/perl5/site_perl/%%PERL_VER%%/POE/Component/Client/DNS.pm
|
||||||
|
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client/DNS
|
||||||
|
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component/Client 2>/dev/null || true
|
||||||
|
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE/Component 2>/dev/null || true
|
||||||
|
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/POE 2>/dev/null || true
|
||||||
|
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component/Client 2>/dev/null || true
|
||||||
|
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE/Component 2>/dev/null || true
|
||||||
|
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/POE 2>/dev/null || true
|
Loading…
Add table
Reference in a new issue