diff --git a/README.md b/README.md index c635538..7f2c60e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # perl-Net-Pcap +The Net::Pcap module is a Perl binding to the LBL pcap(3) packet capture library. + diff --git a/perl-Net-Pcap-0.17-gcc-4.7.patch b/perl-Net-Pcap-0.17-gcc-4.7.patch new file mode 100644 index 0000000..5d99fee --- /dev/null +++ b/perl-Net-Pcap-0.17-gcc-4.7.patch @@ -0,0 +1,12 @@ +diff -Nru Net-Pcap-0.17.orig/Makefile.PL Net-Pcap-0.17/Makefile.PL +--- Net-Pcap-0.17.orig/Makefile.PL 2012-11-28 00:06:02.000000000 +0100 ++++ Net-Pcap-0.17/Makefile.PL 2013-03-21 11:17:57.896608616 +0100 +@@ -22,8 +22,6 @@ + cygwin_pcap_headers(); + } + else { +- $options{CCFLAGS} = "-Wall -Wwrite-strings" +- if $Config{ccname} eq "gcc" and $] >= 5.006; + $options{LIBS} = '-lpcap'; + } + diff --git a/perl-Net-Pcap.spec b/perl-Net-Pcap.spec new file mode 100644 index 0000000..94d769d --- /dev/null +++ b/perl-Net-Pcap.spec @@ -0,0 +1,63 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-Net-Pcap +Version: 0.17 +Release: 1mamba +Summary: Net::Pcap - Interface to pcap(3) LBL packet capture library +Group: System/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://www.cpan.org +Source: http://www.cpan.org/authors/id/S/SA/SAPER/Net-Pcap-%{version}.tar.gz +Patch0: perl-Net-Pcap-0.17-gcc-4.7.patch +License: GPL +Requires: perl >= %perl_major_ver +BuildRequires: perl-devel >= %perl_major_ver +BuildRequires: libpcap-devel +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +The Net::Pcap module is a Perl binding to the LBL pcap(3) packet capture library. + +%prep +%setup -q -n Net-Pcap-%{version} +%patch0 -p1 + +%build +perl Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor +%make +%make test + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall_perl +packlist=`find %{buildroot} -name .packlist` +[ -z "$packlist" ] && exit 1 || cat $packlist | \ + sed "s,%buildroot,,g;s,.*/man/.*,&.gz,g" | \ + sort -u > .packlist && rm $packlist + +strid=`echo $packlist | sed 's,.*auto\(.*\)/.packlist,\1,'` +for dir in `find %{buildroot} -type d | grep $strid`; do + echo "%dir ${dir#%buildroot}" >> .packlist +done + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +rm -f .packlist + +%files -f .packlist +%defattr(-,root,root) + +%changelog +* Thu Mar 21 2013 Automatic Build System 0.17-1mamba +- automatic version update by autodist + +* Fri Feb 06 2009 Silvan Calarco 0.16-1mamba +- automatic update by autodist + +* Wed Nov 05 2008 Silvan Calarco 0.14-2mamba +- automatic rebuild by autodist + +* Thu Oct 11 2007 Silvan Calarco 0.14-1mamba +- package created by autospec