summaryrefslogtreecommitdiff
path: root/net/p5-Net-Whois-Raw/pkg-descr
diff options
context:
space:
mode:
Diffstat (limited to 'net/p5-Net-Whois-Raw/pkg-descr')
-rw-r--r--net/p5-Net-Whois-Raw/pkg-descr16
1 files changed, 16 insertions, 0 deletions
diff --git a/net/p5-Net-Whois-Raw/pkg-descr b/net/p5-Net-Whois-Raw/pkg-descr
new file mode 100644
index 000000000000..c2c25508e744
--- /dev/null
+++ b/net/p5-Net-Whois-Raw/pkg-descr
@@ -0,0 +1,16 @@
+Net::Whois::Raw - Perl extension for retrieving unparsed raw whois
+information. There is also a simple way of checking whether a domain
+is registered or not.
+
+Usage:
+ use Net::Whois::Raw;
+
+ $s = whois('perl.com');
+ $s = whois('freebsd.org');
+ $s = whois('freebsd.org.ua');
+
+ $Net::Whois::Raw::CHECK_FAIL = 1;
+
+ print "Hurry up!\n" if !whois('microsoft.com');
+
+-- Alex Kapranoff <kappa@freebsd.org.ua>