OpenPKG CVS Repository
  http://cvs.openpkg.org/
  ____________________________________________________________________________

  Server: cvs.openpkg.org                  Name:   Ralf S. Engelschall
  Root:   /e/openpkg/cvs                   Email:  [EMAIL PROTECTED]
  Module: openpkg-src openpkg-web openpkg$ Date:   19-Dec-2003 12:01:26
  Branch: HEAD                             Handle: 2003121911012105

  Added files:
    openpkg-src/snort       snort.patch
  Modified files:
    openpkg-re/vcheck       vc.snort
    openpkg-src/snort       snort.spec
    openpkg-web             news.txt

  Log:
    upgrading package: snort 2.0.5 -> 2.1.0

  Summary:
    Revision    Changes     Path
    1.7         +1  -1      openpkg-re/vcheck/vc.snort
    1.1         +82 -0      openpkg-src/snort/snort.patch
    1.12        +4  -2      openpkg-src/snort/snort.spec
    1.7825      +1  -0      openpkg-web/news.txt
  ____________________________________________________________________________

  patch -p0 <<'@@ .'
  Index: openpkg-re/vcheck/vc.snort
  ============================================================================
  $ cvs diff -u -r1.6 -r1.7 vc.snort
  --- openpkg-re/vcheck/vc.snort        21 Nov 2003 15:46:05 -0000      1.6
  +++ openpkg-re/vcheck/vc.snort        19 Dec 2003 11:01:21 -0000      1.7
  @@ -2,7 +2,7 @@
   }
   
   prog snort = {
  -  version   = 2.0.5
  +  version   = 2.1.0
     url       = http://www.snort.org/dl/
     regex     = snort-(__VER__)\.tar\.gz
   }
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/snort/snort.patch
  ============================================================================
  $ cvs diff -u -r0 -r1.1 snort.patch
  --- /dev/null 2003-12-19 12:01:26.000000000 +0100
  +++ snort.patch       2003-12-19 12:01:26.000000000 +0100
  @@ -0,0 +1,82 @@
  +Index: src/event_wrapper.h
  +--- src/event_wrapper.h.orig 2003-10-20 17:03:18.000000000 +0200
  ++++ src/event_wrapper.h      2003-12-19 11:45:15.000000000 +0100
  +@@ -1,7 +1,7 @@
  + #ifndef _EVENT_WRAPPER_H
  + #define _EVENT_WRAPPER_H
  + 
  +-#include <stdint.h>
  ++#include <sys/types.h>
  + 
  + #include "log.h"
  + #include "detect.h"
  +Index: src/preprocessors/flow/flow.h
  +--- src/preprocessors/flow/flow.h.orig       2003-10-20 17:03:41.000000000 +0200
  ++++ src/preprocessors/flow/flow.h    2003-12-19 11:44:28.000000000 +0100
  +@@ -1,7 +1,7 @@
  + #ifndef _FLOW_H
  + #define _FLOW_H
  + 
  +-#include <stdint.h>
  ++#include <sys/types.h>
  + 
  + #include "flow_error.h"
  + #include "util_math.h"
  +Index: src/preprocessors/flow/flow_stat.h
  +--- src/preprocessors/flow/flow_stat.h.orig  2003-10-20 17:03:41.000000000 +0200
  ++++ src/preprocessors/flow/flow_stat.h       2003-12-19 11:45:37.000000000 +0100
  +@@ -2,7 +2,7 @@
  + #define _FLOW_STAT_H
  + 
  + #include <stdio.h>
  +-#include <stdint.h>
  ++#include <sys/types.h>
  + #include <time.h>
  + 
  + #include "flow.h"
  +Index: src/preprocessors/flow/portscan/flowps.h
  +--- src/preprocessors/flow/portscan/flowps.h.orig    2003-12-03 16:22:23.000000000 
+0100
  ++++ src/preprocessors/flow/portscan/flowps.h 2003-12-19 11:44:46.000000000 +0100
  +@@ -6,7 +6,7 @@
  + #endif
  + 
  + #include <time.h>
  +-#include <stdint.h>
  ++#include <sys/types.h>
  + 
  + #include "flow.h"
  + #include "unique_tracker.h"
  +Index: src/sfutil/ipobj.c
  +--- src/sfutil/ipobj.c.orig  2003-12-03 16:22:23.000000000 +0100
  ++++ src/sfutil/ipobj.c       2003-12-19 11:43:26.000000000 +0100
  +@@ -19,6 +19,7 @@
  + #include <string.h>
  + 
  + #ifndef WIN32
  ++#include <sys/types.h>
  + #include <sys/socket.h>
  + #include <netinet/in.h>
  + #include <arpa/inet.h>
  +Index: src/sfutil/util_net.c
  +--- src/sfutil/util_net.c.orig       2003-12-03 16:22:23.000000000 +0100
  ++++ src/sfutil/util_net.c    2003-12-19 11:43:40.000000000 +0100
  +@@ -6,6 +6,7 @@
  + 
  + #ifndef WIN32
  + /* for inet_ntoa */
  ++#include <sys/types.h>
  + #include <sys/socket.h>
  + #include <netinet/in.h>
  + #include <arpa/inet.h>
  +Index: src/sfutil/util_net.h
  +--- src/sfutil/util_net.h.orig       2003-10-20 17:03:42.000000000 +0200
  ++++ src/sfutil/util_net.h    2003-12-19 11:44:04.000000000 +0100
  +@@ -11,7 +11,7 @@
  + #ifndef _UTIL_NET_H
  + #define _UTIL_NET_H
  + 
  +-#include <stdint.h>
  ++#include <sys/types.h>
  + 
  + char *inet_ntoax(uint32_t ip);
  + char * mktcpflag_str(int flags);
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/snort/snort.spec
  ============================================================================
  $ cvs diff -u -r1.11 -r1.12 snort.spec
  --- openpkg-src/snort/snort.spec      21 Nov 2003 15:46:08 -0000      1.11
  +++ openpkg-src/snort/snort.spec      19 Dec 2003 11:01:26 -0000      1.12
  @@ -32,8 +32,8 @@
   Distribution: OpenPKG [PLUS]
   Group:        Network
   License:      GPL
  -Version:      2.0.5
  -Release:      20031121
  +Version:      2.1.0
  +Release:      20031219
   
   #   package options
   %option       with_mysql  no
  @@ -41,6 +41,7 @@
   
   #   list of sources
   Source0:      http://www.snort.org/dl/snort-%{version}.tar.gz
  +Patch0:       snort.patch
   
   #   build information
   Prefix:       %{l_prefix}
  @@ -75,6 +76,7 @@
   
   %prep
       %setup -q
  +    %patch -p0
   
   %build
       CC="%{l_cc}" \
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-web/news.txt
  ============================================================================
  $ cvs diff -u -r1.7824 -r1.7825 news.txt
  --- openpkg-web/news.txt      19 Dec 2003 10:53:13 -0000      1.7824
  +++ openpkg-web/news.txt      19 Dec 2003 11:01:23 -0000      1.7825
  @@ -1,3 +1,4 @@
  +19-Dec-2003: Upgraded package: P<snort-2.1.0-20031219>
   19-Dec-2003: Upgraded package: P<ant-1.6.0-20031219>
   19-Dec-2003: Upgraded package: P<mplayer-1.0pre3-20031219>
   19-Dec-2003: Upgraded package: P<gnutls-1.0.2-20031219>
  @@ .
______________________________________________________________________
The OpenPKG Project                                    www.openpkg.org
CVS Repository Commit List                     [EMAIL PROTECTED]

Reply via email to