-
Notifications
You must be signed in to change notification settings - Fork 0
/
NetIdent.spec
42 lines (35 loc) · 980 Bytes
/
NetIdent.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
%include perl-header.spec
Summary: Ident client
Name: perl-module-Net-Ident
Version: 1.20
Release: 3
Group: System Environment/Base
Copyright: GPL/Artistic
Source: Net-Ident-%{version}.tar.gz
BuildRoot: /var/tmp/%{name}-root
Requires: perl = %{perl_version}
BuildRequires: perl = %{perl_version}
%description
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 (which supersedes RFC931). 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.
%prep
%setup -q -n Net-Ident-%{version}
%build
perl Makefile.PL
make
%install
rm -rf $RPM_BUILD_ROOT
mkdir -p $RPM_BUILD_ROOT%{perl_prefix}
%{pmake_install}
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,bin,bin)
%doc README Changes
%{site_perl}/Net/*
%{site_perl_arch}/auto/Net/Ident
%{perl_prefix}/man/man3/*