diff options
author | heinz <heinz@pkgsrc.org> | 2005-10-16 17:42:46 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2005-10-16 17:42:46 +0000 |
commit | 5a049255a88d042de01d34dde26f05e43a6fc4a1 (patch) | |
tree | 1f7fc2e9714ebb5557b58d0a18779b6f98bd47b1 | |
parent | ea9310e16a8e654524108f3eb6b584f81011d596 (diff) | |
download | pkgsrc-5a049255a88d042de01d34dde26f05e43a6fc4a1.tar.gz |
Initial version of the Net::Ident perl module.
Net::Ident is a module that looks up the username on the remote side of
a TCP/IP connection through the ident (auth/tap) protocol described in
RFC1413. Note that this requires the remote site to run a daemon (often
called identd) to provide the requested information, so it is not always
available for all TCP/IP connections.
-rw-r--r-- | net/p5-Net-Ident/DESCR | 5 | ||||
-rw-r--r-- | net/p5-Net-Ident/Makefile | 21 | ||||
-rw-r--r-- | net/p5-Net-Ident/PLIST | 1 | ||||
-rw-r--r-- | net/p5-Net-Ident/distinfo | 6 | ||||
-rw-r--r-- | net/p5-Net-Ident/patches/patch-aa | 13 |
5 files changed, 46 insertions, 0 deletions
diff --git a/net/p5-Net-Ident/DESCR b/net/p5-Net-Ident/DESCR new file mode 100644 index 00000000000..4422d9b404e --- /dev/null +++ b/net/p5-Net-Ident/DESCR @@ -0,0 +1,5 @@ +Net::Ident is a module that looks up the username on the remote side of +a TCP/IP connection through the ident (auth/tap) protocol described in +RFC1413. Note that this requires the remote site to run a daemon (often +called identd) to provide the requested information, so it is not always +available for all TCP/IP connections. diff --git a/net/p5-Net-Ident/Makefile b/net/p5-Net-Ident/Makefile new file mode 100644 index 00000000000..60bc8a7453d --- /dev/null +++ b/net/p5-Net-Ident/Makefile @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/10/16 17:42:46 heinz Exp $ +# + +DISTNAME= Net-Ident-1.20 +PKGNAME= p5-${DISTNAME} +SVR4_PKGNAME= p5nid +CATEGORIES= net perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Net/} + +MAINTAINER= heinz@NetBSD.org +HOMEPAGE= http://search.cpan.org/dist/Net-Ident/ +COMMENT= Perl module implementing the client side of the ident protocol + +PKG_INSTALLATION_TYPES= overwrite pkgviews + +USE_LANGUAGES= #empty + +PERL5_PACKLIST= auto/Net/Ident/.packlist + +.include "../../lang/perl5/module.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/net/p5-Net-Ident/PLIST b/net/p5-Net-Ident/PLIST new file mode 100644 index 00000000000..2ad074e4792 --- /dev/null +++ b/net/p5-Net-Ident/PLIST @@ -0,0 +1 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2005/10/16 17:42:46 heinz Exp $ diff --git a/net/p5-Net-Ident/distinfo b/net/p5-Net-Ident/distinfo new file mode 100644 index 00000000000..5ea448425c6 --- /dev/null +++ b/net/p5-Net-Ident/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1.1.1 2005/10/16 17:42:46 heinz Exp $ + +SHA1 (Net-Ident-1.20.tar.gz) = 1780c4048c9f9b49477103bf2a6f6d2ec1aafe52 +RMD160 (Net-Ident-1.20.tar.gz) = 5d6693739d62f8fc5a6677f5d775338e6c56ebdc +Size (Net-Ident-1.20.tar.gz) = 24983 bytes +SHA1 (patch-aa) = d3135c66f80fde092aa04684698238dc93f014f0 diff --git a/net/p5-Net-Ident/patches/patch-aa b/net/p5-Net-Ident/patches/patch-aa new file mode 100644 index 00000000000..e8b8bb4db48 --- /dev/null +++ b/net/p5-Net-Ident/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1.1.1 2005/10/16 17:42:46 heinz Exp $ + +--- Ident.pm.orig Fri Aug 27 00:58:15 1999 ++++ Ident.pm +@@ -25,6 +25,8 @@ use vars qw(@ISA @EXPORT_OK $DEBUG $VERS + 'debug' => \&_set_debug, + ); + ++# avoid "called too early to check prototype" messages ++sub _export_hooks (); + # put the export hooks in the standard Exporter structures + _export_hooks(); + # for compatibility mode, uncomment the next line @@ s/^#\s*// @@ |