# HG changeset patch # User Michael Schloh von Bennewitz # Date 1232135857 -3600 # Node ID 161326b4f1f9b95cf892b0c36f9626d5819d78fa # Parent b48a2cd3a7b1391f1cb0c613ae9efe90c90b8e31 Import package vendor original specs for necessary manipulations. diff -r b48a2cd3a7b1 -r 161326b4f1f9 perl-net/perl-net.patch --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-net/perl-net.patch Fri Jan 16 20:57:37 2009 +0100 @@ -0,0 +1,200 @@ +Index: Net-Packet-3.26/Makefile.PL +--- Net-Packet-3.26/Makefile.PL.orig 2006-12-16 16:26:26 +0100 ++++ Net-Packet-3.26/Makefile.PL 2008-01-01 22:05:18 +0100 +@@ -14,7 +14,6 @@ + Net::Libdnet => 0, + Time::HiRes => 0, + Net::IPv6Addr => 0, +- Socket6 => 0, + Bit::Vector => 0, + }, + ABSTRACT_FROM => 'lib/Net/Packet.pm', +Index: Net-Patricia-1.014/libpatricia/patricia.c +--- Net-Patricia-1.014/libpatricia/patricia.c.orig 2005-12-07 21:55:39 +0100 ++++ Net-Patricia-1.014/libpatricia/patricia.c 2008-01-01 22:05:18 +0100 +@@ -38,24 +38,24 @@ + /* prefix_tochar + * convert prefix information to bytes + */ +-u_char * ++unsigned char * + prefix_tochar (prefix_t * prefix) + { + if (prefix == NULL) + return (NULL); + +- return ((u_char *) & prefix->add.sin); ++ return ((unsigned char *) & prefix->add.sin); + } + + int +-comp_with_mask (void *addr, void *dest, u_int mask) ++comp_with_mask (void *addr, void *dest, unsigned int mask) + { + + if ( /* mask/8 == 0 || */ memcmp (addr, dest, mask / 8) == 0) { + int n = mask / 8; + int m = ((-1) << (8 - (mask % 8))); + +- if (mask % 8 == 0 || (((u_char *)addr)[n] & m) == (((u_char *)dest)[n] & m)) ++ if (mask % 8 == 0 || (((unsigned char *)addr)[n] & m) == (((unsigned char *)dest)[n] & m)) + return (1); + } + return (0); +@@ -70,7 +70,7 @@ + int + inet_pton (int af, const char *src, void *dst) + { +- u_long result; ++ unsigned long result; + + if (af == AF_INET) { + result = inet_addr(src); +@@ -104,7 +104,7 @@ + { + if (af == AF_INET) { + int i, c, val; +- u_char xp[4] = {0, 0, 0, 0}; ++ unsigned char xp[4] = {0, 0, 0, 0}; + + for (i = 0; ; i++) { + c = *src++; +@@ -153,7 +153,7 @@ + + struct buffer { + char buffs[16][48+5]; +- u_int i; ++ unsigned int i; + } *buffp; + + # if 0 +@@ -172,7 +172,7 @@ + buff = buffp->buffs[buffp->i++%16]; + } + if (prefix->family == AF_INET) { +- u_char *a; ++ unsigned char *a; + assert (prefix->bitlen <= 32); + a = prefix_touchar (prefix); + if (with_len) { +@@ -272,7 +272,7 @@ + prefix_t * + ascii2prefix (int family, char *string) + { +- u_long bitlen, maxbitlen = 0; ++ unsigned long bitlen, maxbitlen = 0; + char *cp; + struct in_addr sin; + #ifdef HAVE_IPV6 +@@ -491,8 +491,8 @@ + patricia_search_exact (patricia_tree_t *patricia, prefix_t *prefix) + { + patricia_node_t *node; +- u_char *addr; +- u_int bitlen; ++ unsigned char *addr; ++ unsigned int bitlen; + + assert (patricia); + assert (prefix); +@@ -563,8 +563,8 @@ + { + patricia_node_t *node; + patricia_node_t *stack[PATRICIA_MAXBITS + 1]; +- u_char *addr; +- u_int bitlen; ++ unsigned char *addr; ++ unsigned int bitlen; + int cnt = 0; + + assert (patricia); +@@ -662,8 +662,8 @@ + patricia_lookup (patricia_tree_t *patricia, prefix_t *prefix) + { + patricia_node_t *node, *new_node, *parent, *glue; +- u_char *addr, *test_addr; +- u_int bitlen, check_bit, differ_bit; ++ unsigned char *addr, *test_addr; ++ unsigned int bitlen, check_bit, differ_bit; + int i, j, r; + + assert (patricia); +Index: Net-Patricia-1.014/libpatricia/patricia.h +--- Net-Patricia-1.014/libpatricia/patricia.h.orig 2005-12-07 21:54:52 +0100 ++++ Net-Patricia-1.014/libpatricia/patricia.h 2008-01-01 22:05:18 +0100 +@@ -15,10 +15,10 @@ + #ifndef _PATRICIA_H + #define _PATRICIA_H + +-/* typedef unsigned int u_int; */ ++/* typedef unsigned int unsigned int; */ + typedef void (*void_fn_t)(); + /* { from defs.h */ +-#define prefix_touchar(prefix) ((u_char *)&(prefix)->add.sin) ++#define prefix_touchar(prefix) ((unsigned char *)&(prefix)->add.sin) + #define MAXLINE 1024 + #define BIT_TEST(f, b) ((f) & (b)) + /* } */ +@@ -40,15 +40,15 @@ + /* { from mrt.h */ + + typedef struct _prefix4_t { +- u_short family; /* AF_INET | AF_INET6 */ +- u_short bitlen; /* same as mask? */ ++ unsigned short family; /* AF_INET | AF_INET6 */ ++ unsigned short bitlen; /* same as mask? */ + int ref_count; /* reference count */ + struct in_addr sin; + } prefix4_t; + + typedef struct _prefix_t { +- u_short family; /* AF_INET | AF_INET6 */ +- u_short bitlen; /* same as mask? */ ++ unsigned short family; /* AF_INET | AF_INET6 */ ++ unsigned short bitlen; /* same as mask? */ + int ref_count; /* reference count */ + union { + struct in_addr sin; +@@ -61,7 +61,7 @@ + /* } */ + + typedef struct _patricia_node_t { +- u_int bit; /* flag if this node used */ ++ unsigned int bit; /* flag if this node used */ + prefix_t *prefix; /* who we are in patricia tree */ + struct _patricia_node_t *l, *r; /* left and right children */ + struct _patricia_node_t *parent;/* may be used */ +@@ -71,7 +71,7 @@ + + typedef struct _patricia_tree_t { + patricia_node_t *head; +- u_int maxbits; /* for IP, 32 bit addresses */ ++ unsigned int maxbits; /* for IP, 32 bit addresses */ + int num_active_node; /* for debug purpose */ + } patricia_tree_t; + +Index: Net-Pcap-0.16/Makefile.PL +--- Net-Pcap-0.16/Makefile.PL.orig 2007-12-24 00:06:15 +0100 ++++ Net-Pcap-0.16/Makefile.PL 2008-01-01 22:08:20 +0100 +@@ -23,7 +23,8 @@ + } + else { + $options{CCFLAGS} = '-Wall -Wwrite-strings' if $Config{ccname} eq 'gcc' and $] >= 5.006; +- $options{LIBS} = '-lpcap'; ++ $options{INC} = '-I@l_prefix@/include'; ++ $options{LIBS} = '-L@l_prefix@/lib -lpcap'; + } + + for my $arg (@ARGV) { +Index: Net-Pcap-0.16/Pcap.xs +--- Net-Pcap-0.16/Pcap.xs.orig 2008-01-01 05:22:22 +0100 ++++ Net-Pcap-0.16/Pcap.xs 2008-01-01 22:05:18 +0100 +@@ -33,7 +33,7 @@ + #define NEED_sv_2pv_nolen 1 + #include "ppport.h" + +-#include ++#include "pcap.h" + + #ifdef _CYGWIN + #include diff -r b48a2cd3a7b1 -r 161326b4f1f9 perl-net/perl-net.spec --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/perl-net/perl-net.spec Fri Jan 16 20:57:37 2009 +0100 @@ -0,0 +1,399 @@ +## +## perl-net.spec -- OpenPKG RPM Package Specification +## Copyright (c) 2000-2008 OpenPKG Foundation e.V. +## +## Permission to use, copy, modify, and distribute this software for +## any purpose with or without fee is hereby granted, provided that +## the above copyright notice and this permission notice appear in all +## copies. +## +## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED +## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR +## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +## SUCH DAMAGE. +## + +# versions of individual parts +%define V_perl 5.10.0 +%define V_math_base85 0.2 +%define V_net_ipv4addr 0.10 +%define V_net_ipv6addr 0.2 +%define V_net_daemon 0.43 +%define V_net_server 0.97 +%define V_net_ext 1.011 +%define V_libnet 1.22 +%define V_net_netmask 1.9015 +%define V_net_ftp_common 6.1 +%define V_net_snmp 5.2.0 +%define V_net_tftp 0.17 +%define V_net_telnet 3.03 +%define V_net_telnet_cisco 1.10 +%define V_plrpc 0.2020 +%define V_net_imap_simple 1.17 +%define V_net_bgp 0.10 +%define V_net_pcap 0.16 +%define V_net_radius 1.56 +%define V_net_ip 1.25 +%define V_class_gomor 1.01 +%define V_net_packet 3.26 +%define V_net_xmpp 1.02 +%define V_net_jabber 2.0 +%define V_net_patricia 1.014 +%define V_net_irc 0.75 +%define V_ip_country 2.26 +%define V_io_socket_multicast 1.05 +%define V_net_growlclient 0.02 +%define V_net_dhcp 0.66 +%define V_net_proxy 0.12 + +# package information +Name: perl-net +Summary: Perl Modules for use with networks +URL: http://www.cpan.org/ +Vendor: Perl Community +Packager: OpenPKG Foundation e.V. +Distribution: OpenPKG Community +Class: BASE +Group: Perl +License: GPL/Artistic +Version: %{V_perl} +Release: 20090102 + +# package options +%option with_pcap no + +# list of sources +Source0: http://www.cpan.org/modules/by-module/Math/Math-Base85-%{V_math_base85}.tar.gz +Source1: http://www.cpan.org/modules/by-module/Net/Net-IPv4Addr-%{V_net_ipv4addr}.tar.gz +Source2: http://www.cpan.org/modules/by-module/Net/Net-IPv6Addr-%{V_net_ipv6addr}.tar.gz +Source3: http://www.cpan.org/modules/by-module/Net/Net-Daemon-%{V_net_daemon}.tar.gz +Source4: http://www.cpan.org/modules/by-module/Net/Net-Server-%{V_net_server}.tar.gz +Source5: http://www.cpan.org/modules/by-module/Net/Net-ext-%{V_net_ext}.tar.gz +Source6: http://www.cpan.org/modules/by-module/Net/libnet-%{V_libnet}.tar.gz +Source7: http://www.cpan.org/modules/by-module/Net/Net-Netmask-%{V_net_netmask}.tar.gz +Source8: http://www.cpan.org/modules/by-module/Net/Net-FTP-Common-%{V_net_ftp_common}.tar.gz +Source9: http://www.cpan.org/modules/by-module/Net/Net-SNMP-%{V_net_snmp}.tar.gz +Source10: http://www.cpan.org/modules/by-module/Net/Net-TFTP-%{V_net_tftp}.tar.gz +Source11: http://www.cpan.org/modules/by-module/Net/Net-Telnet-%{V_net_telnet}.tar.gz +Source12: http://www.cpan.org/modules/by-module/Net/Net-Telnet-Cisco-%{V_net_telnet_cisco}.tar.gz +Source13: http://www.cpan.org/modules/by-module/Net/Net-Radius-%{V_net_radius}.tar.gz +Source14: http://www.cpan.org/modules/by-module/RPC/PlRPC-%{V_plrpc}.tar.gz +Source15: http://www.cpan.org/modules/by-module/Net/Net-IMAP-Simple-%{V_net_imap_simple}.tar.gz +Source16: http://www.cpan.org/modules/by-module/Net/Net-BGP-%{V_net_bgp}.tar.gz +Source17: http://www.cpan.org/modules/by-module/Net/Net-Pcap-%{V_net_pcap}.tar.gz +Source18: http://www.cpan.org/modules/by-module/Class/Class-Gomor-%{V_class_gomor}.tar.gz +Source19: http://www.cpan.org/modules/by-module/Net/Net-Packet-%{V_net_packet}.tar.gz +Source20: http://www.cpan.org/modules/by-module/Net/Net-IP-%{V_net_ip}.tar.gz +Source21: http://www.cpan.org/modules/by-module/Net/Net-XMPP-%{V_net_xmpp}.tar.gz +Source22: http://www.cpan.org/modules/by-module/Net/Net-Jabber-%{V_net_jabber}.tar.gz +Source23: http://www.cpan.org/modules/by-module/Net/Net-Patricia-%{V_net_patricia}.tar.gz +Source24: http://www.cpan.org/modules/by-module/Net/Net-IRC-%{V_net_irc}.tar.gz +Source25: http://www.cpan.org/modules/by-module/IP/IP-Country-%{V_ip_country}.tar.gz +Source26: http://www.cpan.org/modules/by-module/IO/IO-Socket-Multicast-%{V_io_socket_multicast}.tar.gz +Source27: http://www.cpan.org/modules/by-module/Net/Net-GrowlClient-%{V_net_growlclient}.tar.gz +Source28: http://www.cpan.org/modules/by-module/Net/Net-DHCP-%{V_net_dhcp}.tar.gz +Source29: http://www.cpan.org/modules/by-module/Net/Net-Proxy-%{V_net_proxy}.tar.gz +Patch0: perl-net.patch + +# build information +Prefix: %{l_prefix} +BuildRoot: %{l_buildroot} +BuildPreReq: OpenPKG, openpkg >= 20040130, perl >= %{V_perl}, perl-openpkg >= %{V_perl}-20040126 +PreReq: OpenPKG, openpkg >= 20040130, perl >= %{V_perl} +BuildPreReq: perl-crypto, perl-sys, perl-time, perl-xml, perl-util >= %{V_perl}-20040210 +PreReq: perl-crypto, perl-sys, perl-time, perl-xml, perl-util >= %{V_perl}-20040210 +%if "%{with_pcap}" == "yes" +BuildPreReq: libpcap +PreReq: libpcap +%endif +AutoReq: no +AutoReqProv: no + +%description + Perl modules for use with networks: + - Net::Daemon (%{V_net_daemon}) + - Net::FTP (%{V_libnet}) + - Net::NNTP + - Net::POP3 + - Net::SMTP + - Net::SNPP + - Net::Time + - Net::FTP::Common (%{V_net_ftp_common}) + - Net::Gen (%{V_net_ext}) + - Net::Inet + - Net::TCP + - Net::TCP::Server + - Net::UDP + - Net::UNIX + - Net::UNIX::Server + - Net::Netmask (%{V_net_netmask}) + - Net::SNMP (%{V_net_snmp}) + - Net::Server (%{V_net_server}) + - Net::TFTP (%{V_net_tftp}) + - Net::Telnet (%{V_net_telnet}) + - Net::Telnet::Cisco (%{V_net_telnet_cisco}) + - Net::Radius (%{V_net_radius}) + - RPC::PlServer, RPC::PlClient (%{V_plrpc}) + - Net::IP (%{V_net_ip}) + - Net::IMAP::Simple (%{V_net_imap_simple}) + - Net::BGP (%{V_net_bgp}) +%if "%{with_pcap}" == "yes" + - Net::Pcap (%{V_net_pcap}) + - Net::Packet (%{V_net_packet}) + - Class::Gomor (%{V_class_gomor}) +%endif + - Net::XMPP (%{V_net_xmpp}) + - Net::Jabber (%{V_net_jabber}) + - Net::Patricia (%{V_net_patricia}) + - Net::IPv4Addr (%{V_net_ipv4addr}) + - Net::IPv6Addr (%{V_net_ipv6addr}) + - Net::IRC (%{V_net_irc}) + - IP::Country (%{V_ip_country}) + - IO::Socket::Multicast (%{V_io_socket_multicast}) + - Net::GrowlClient (%{V_net_growlclient}) + - Net::DHCP (%{V_net_dhcp}) + - Net::Proxy (%{V_net_proxy}) + +%track + prog perl-net:Net-Netmask = { + version = %{V_net_netmask} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-Netmask-(__VER__)\.tar\.gz + } + prog perl-net:Net-Ftp-Common = { + version = %{V_net_ftp_common} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-FTP-Common-(__VER__)\.tar\.gz + } + prog perl-net:libnet = { + version = %{V_libnet} + url = http://www.cpan.org/modules/by-module/Net/ + regex = libnet-(__VER__)\.tar\.gz + } + prog perl-net:Net-BGP = { + version = %{V_net_bgp} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-BGP-(__VER__)\.tar\.gz + } + prog perl-net:Net-Daemon = { + version = %{V_net_daemon} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-Daemon-(__VER__)\.tar\.gz + } + prog perl-net:Net-ext = { + version = %{V_net_ext} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-ext-(__VER__)\.tar\.gz + } + prog perl-net:Net-Imap-Simple = { + version = %{V_net_imap_simple} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-IMAP-Simple-(__VER__)\.tar\.gz + } + prog perl-net:Net-Server = { + version = %{V_net_server} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-Server-(__VER__)\.tar\.gz + } + prog perl-net:Net-SNMP = { + version = %{V_net_snmp} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-SNMP-(__VER__)\.tar\.gz + } + prog perl-net:Net-Telnet = { + version = %{V_net_telnet} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-Telnet-(__VER__)\.tar\.gz + } + prog perl-net:Net-Telnet-Cisco = { + version = %{V_net_telnet_cisco} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-Telnet-Cisco-(__VER__)\.tar\.gz + } + prog perl-net:Net-TFTP = { + version = %{V_net_tftp} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-TFTP-(__VER__)\.tar\.gz + } + prog perl-net:PlRPC = { + version = %{V_plrpc} + url = http://www.cpan.org/modules/by-module/RPC/ + regex = PlRPC-(__VER__)\.tar\.gz + } + prog perl-net:Net-Pcap = { + version = %{V_net_pcap} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-Pcap-(__VER__)\.tar\.gz + } + prog perl-net:Net-Radius = { + version = %{V_net_radius} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-Radius-(__VER__)\.tar\.gz + } + prog perl-net:Net-IP = { + version = %{V_net_ip} + url = http://www.cpan.org/authors/id/M/MA/MANU/ + regex = Net-IP-(__VER__)\.tar\.gz + } + prog perl-net:Net-Packet = { + version = %{V_net_packet} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-Packet-(__VER__)\.tar\.gz + } + prog perl-net:Class-Gomor = { + version = %{V_class_gomor} + url = http://www.cpan.org/modules/by-module/Class/ + regex = Class-Gomor-(__VER__)\.tar\.gz + } + prog perl-net:Net-XMPP = { + version = %{V_net_xmpp} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-XMPP-(__VER__)\.tar\.gz + } + prog perl-net:Net-Jabber = { + version = %{V_net_jabber} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-Jabber-(__VER__)\.tar\.gz + } + prog perl-net:Net-Patricia = { + version = %{V_net_patricia} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-Patricia-(__VER__)\.tar\.gz + } + prog perl-net:Net-IPv4Addr = { + version = %{V_net_ipv4addr} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-IPv4Addr-(__VER__)\.tar\.gz + } + prog perl-net:Net-IPv6Addr = { + version = %{V_net_ipv6addr} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-IPv6Addr-(__VER__)\.tar\.gz + } + prog perl-net:Math-Base85 = { + version = %{V_math_base85} + url = http://www.cpan.org/modules/by-module/Math/ + regex = Math-Base85-(__VER__)\.tar\.gz + } + prog perl-net:Net-IRC = { + version = %{V_net_irc} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-IRC-(__VER__)\.tar\.gz + } + prog perl-net:IP-Country = { + version = %{V_ip_country} + url = http://www.cpan.org/modules/by-module/IP/ + regex = IP-Country-(__VER__)\.tar\.gz + } + prog perl-net:IO-Socket-Multicast = { + version = %{V_io_socket_multicast} + url = http://www.cpan.org/modules/by-module/IO/ + regex = IO-Socket-Multicast-(__VER__)\.tar\.gz + } + prog perl-net:Net-GrowlClient = { + version = %{V_net_growlclient} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-GrowlClient-(__VER__)\.tar\.gz + } + prog perl-net:Net-DHCP = { + version = %{V_net_dhcp} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-DHCP-(__VER__)\.tar\.gz + } + prog perl-net:Net-Proxy = { + version = %{V_net_proxy} + url = http://www.cpan.org/modules/by-module/Net/ + regex = Net-Proxy-(__VER__)\.tar\.gz + } + +%prep + %setup -q -c + %setup -q -T -D -a 1 + %setup -q -T -D -a 2 + %setup -q -T -D -a 3 + %setup -q -T -D -a 4 + %setup -q -T -D -a 5 + %setup -q -T -D -a 6 + %setup -q -T -D -a 7 + %setup -q -T -D -a 8 + %setup -q -T -D -a 9 + %setup -q -T -D -a 10 + %setup -q -T -D -a 11 + %setup -q -T -D -a 12 + %setup -q -T -D -a 13 + %setup -q -T -D -a 14 + %setup -q -T -D -a 15 + %setup -q -T -D -a 16 + %setup -q -T -D -a 17 + %setup -q -T -D -a 18 + %setup -q -T -D -a 19 + %setup -q -T -D -a 20 + %setup -q -T -D -a 21 + %setup -q -T -D -a 22 + %setup -q -T -D -a 23 + %setup -q -T -D -a 24 + %setup -q -T -D -a 25 + %setup -q -T -D -a 26 + %setup -q -T -D -a 27 + ( + %setup -q -T -D -a 28 + ) || true + %setup -q -T -D -a 29 + sed <%{PATCH0} -e 's;@l_prefix@;%{l_prefix};g' | %{l_patch} -p0 -b + +%build + +%install + rm -rf $RPM_BUILD_ROOT + %{l_prefix}/bin/perl-openpkg prepare + %{l_prefix}/bin/perl-openpkg -d %{SOURCE0} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE1} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE2} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE3} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE4} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE5} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE6} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE7} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE8} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE9} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE10} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE11} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE12} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE13} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE14} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE15} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE16} configure build install +%if "%{with_pcap}" == "yes" + %{l_prefix}/bin/perl-openpkg -d %{SOURCE17} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE18} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE19} \ + -A "INC='-I. %{l_cppflags}'" \ + -A "LIBS='%{l_ldflags} -lpcap'" \ + configure build install +%endif + %{l_prefix}/bin/perl-openpkg -d %{SOURCE20} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE21} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE22} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE23} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE24} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE25} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE26} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE27} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE28} configure build install + %{l_prefix}/bin/perl-openpkg -d %{SOURCE29} configure build install + %{l_prefix}/bin/perl-openpkg -F perl-openpkg-files fixate cleanup + %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std} `cat perl-openpkg-files` + +%files -f files + +%clean + rm -rf $RPM_BUILD_ROOT +