diff options
author | miwi <miwi@FreeBSD.org> | 2008-06-21 06:15:45 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-06-21 06:15:45 +0800 |
commit | 2c4a52e74377f0b54c26b4b26e275058fed32be1 (patch) | |
tree | 87393c769e43d1fdb17ae004568fade3c8adbf83 | |
parent | 654e0cebe48cc776290bcabfd39d76de537c3e98 (diff) | |
download | freebsd-ports-gnome-2c4a52e74377f0b54c26b4b26e275058fed32be1.tar.gz freebsd-ports-gnome-2c4a52e74377f0b54c26b4b26e275058fed32be1.tar.zst freebsd-ports-gnome-2c4a52e74377f0b54c26b4b26e275058fed32be1.zip |
POE::Component::IRC::Plugin::QueryDNS is a POE::Component::IRC plugin
that provides DNS query facilities to the channels it occupies and via
private messaging.
It uses POE::Component::Client::DNS to do non-blocking DNS queries. By
default the plugin attempts to use POE::Component::IRC's internal
PoCo-Client-DNS resolver object, but will spawn its own copy. You can
supply your own resolver object via the constructor.
WWW: http://search.cpan.org/dist/POE-Component-IRC-Plugin-QueryDNS/
-rw-r--r-- | irc/Makefile | 1 | ||||
-rw-r--r-- | irc/p5-POE-Component-IRC-Plugin-QueryDNS/Makefile | 35 | ||||
-rw-r--r-- | irc/p5-POE-Component-IRC-Plugin-QueryDNS/distinfo | 3 | ||||
-rw-r--r-- | irc/p5-POE-Component-IRC-Plugin-QueryDNS/pkg-descr | 10 | ||||
-rw-r--r-- | irc/p5-POE-Component-IRC-Plugin-QueryDNS/pkg-plist | 13 |
5 files changed, 62 insertions, 0 deletions
diff --git a/irc/Makefile b/irc/Makefile index e9c01e33b322..6d0800ef3325 100644 --- a/irc/Makefile +++ b/irc/Makefile @@ -85,6 +85,7 @@ SUBDIR += p5-POE-Component-IRC-Plugin-Bollocks SUBDIR += p5-POE-Component-IRC-Plugin-CoreList SUBDIR += p5-POE-Component-IRC-Plugin-POE-Knee + SUBDIR += p5-POE-Component-IRC-Plugin-QueryDNS SUBDIR += p5-POE-Component-IRC-Plugin-QueryDNSBL SUBDIR += p5-POE-Component-IRC-Plugin-RSS-Headlines SUBDIR += p5-POE-Component-Server-IRC diff --git a/irc/p5-POE-Component-IRC-Plugin-QueryDNS/Makefile b/irc/p5-POE-Component-IRC-Plugin-QueryDNS/Makefile new file mode 100644 index 000000000000..83b561756d83 --- /dev/null +++ b/irc/p5-POE-Component-IRC-Plugin-QueryDNS/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: p5-POE-Component-IRC-Plugin-QueryDNS +# Date created: 20.06.2008 +# Whom: Martin Wilke <miwi@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= POE-Component-IRC-Plugin-QueryDNS +PORTVERSION= 0.06 +CATEGORIES= irc perl5 devel +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= miwi@FreeBSD.org +COMMENT= A POE::Component::IRC plugin for IRC based DNS queries + +BUILD_DEPENDS= ${SITE_PERL}/POE.pm:${PORTSDIR}/devel/p5-POE \ + ${SITE_PERL}/POE/Component/IRC.pm:${PORTSDIR}/irc/p5-POE-Component-IRC \ + p5-POE-Component-Client-DNS>=1.00:${PORTSDIR}/dns/p5-POE-Component-Client-DNS +RUN_DEPENDS= ${SITE_PERL}/POE.pm:${PORTSDIR}/devel/p5-POE \ + ${SITE_PERL}/POE/Component/IRC.pm:${PORTSDIR}/irc/p5-POE-Component-IRC \ + p5-POE-Component-Client-DNS>=1.00:${PORTSDIR}/dns/p5-POE-Component-Client-DNS + +PLIST_SUB= EXAMPLESDIR="share/examples/${PORTNAME}" +PERL_CONFIGURE= yes + +MAN3= POE::Component::IRC::Plugin::QueryDNS.3 + +post-install: +.ifndef(NOPORTEXAMPLES) + @${MKDIR} ${EXAMPLESDIR} + ${INSTALL_SCRIPT} ${WRKSRC}/examples/* ${EXAMPLESDIR} +.endif + +.include <bsd.port.mk> diff --git a/irc/p5-POE-Component-IRC-Plugin-QueryDNS/distinfo b/irc/p5-POE-Component-IRC-Plugin-QueryDNS/distinfo new file mode 100644 index 000000000000..ced3b1798f31 --- /dev/null +++ b/irc/p5-POE-Component-IRC-Plugin-QueryDNS/distinfo @@ -0,0 +1,3 @@ +MD5 (POE-Component-IRC-Plugin-QueryDNS-0.06.tar.gz) = 68e03a0e2af03a2b0cbd766ad5988f9a +SHA256 (POE-Component-IRC-Plugin-QueryDNS-0.06.tar.gz) = a41455b58ad4601f7530efe92286d8b8d140324f2b20976fd43bedf93318cafe +SIZE (POE-Component-IRC-Plugin-QueryDNS-0.06.tar.gz) = 22004 diff --git a/irc/p5-POE-Component-IRC-Plugin-QueryDNS/pkg-descr b/irc/p5-POE-Component-IRC-Plugin-QueryDNS/pkg-descr new file mode 100644 index 000000000000..cbe16ee71289 --- /dev/null +++ b/irc/p5-POE-Component-IRC-Plugin-QueryDNS/pkg-descr @@ -0,0 +1,10 @@ +POE::Component::IRC::Plugin::QueryDNS is a POE::Component::IRC plugin +that provides DNS query facilities to the channels it occupies and via +private messaging. + +It uses POE::Component::Client::DNS to do non-blocking DNS queries. By +default the plugin attempts to use POE::Component::IRC's internal +PoCo-Client-DNS resolver object, but will spawn its own copy. You can +supply your own resolver object via the constructor. + +WWW: http://search.cpan.org/dist/POE-Component-IRC-Plugin-QueryDNS/ diff --git a/irc/p5-POE-Component-IRC-Plugin-QueryDNS/pkg-plist b/irc/p5-POE-Component-IRC-Plugin-QueryDNS/pkg-plist new file mode 100644 index 000000000000..ffd32ac3ca56 --- /dev/null +++ b/irc/p5-POE-Component-IRC-Plugin-QueryDNS/pkg-plist @@ -0,0 +1,13 @@ +%%SITE_PERL%%/POE/Component/IRC/Plugin/QueryDNS.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component/IRC/Plugin/QueryDNS/.packlist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/synopsis.pl +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component/IRC/Plugin/QueryDNS +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component/IRC/Plugin +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component/IRC +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE/Component +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/POE +@dirrmtry %%SITE_PERL%%/POE/Component/IRC/Plugin +@dirrmtry %%SITE_PERL%%/POE/Component/IRC +@dirrmtry %%SITE_PERL%%/POE/Component +@dirrmtry %%SITE_PERL%%/POE |