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          Date:   28-Jul-2003 14:59:17
  Branch: OPENPKG_1_STABLE HEAD            Handle: 2003072813591402

  Modified files:
    openpkg-web             news.txt
  Modified files:           (Branch: OPENPKG_1_STABLE)
    openpkg-src/bind        bind.spec
    openpkg-src/radius      radius.spec
    openpkg-src/unrar       unrar.patch unrar.spec

  Log:
    MFC: all changes since last merge

  Summary:
    Revision    Changes     Path
    1.37.2.7    +11 -4      openpkg-src/bind/bind.spec
    1.21.2.3    +8  -1      openpkg-src/radius/radius.spec
    1.1.2.2     +23 -0      openpkg-src/unrar/unrar.patch
    1.11.2.3    +1  -1      openpkg-src/unrar/unrar.spec
    1.5864      +3  -0      openpkg-web/news.txt
  ____________________________________________________________________________

  patch -p0 <<'@@ .'
  Index: openpkg-src/bind/bind.spec
  ============================================================================
  $ cvs diff -u -r1.37.2.6 -r1.37.2.7 bind.spec
  --- openpkg-src/bind/bind.spec        26 Jul 2003 13:36:14 -0000      1.37.2.6
  +++ openpkg-src/bind/bind.spec        28 Jul 2003 12:59:15 -0000      1.37.2.7
  @@ -37,7 +37,7 @@
   Group:        DNS
   License:      ISC
   Version:      %{V_bind}
  -Release:      1.20030726
  +Release:      1.20030728
   
   #   package options
   %option       with_dlz_mysql      no
  @@ -121,14 +121,21 @@
       lf=""
       li=""
   %if "%{with_dlz_mysql}" == "yes"
  -    cf=`mysql_config --cflags`
  +    cf="$cf `mysql_config --cflags`"
  +    lf="$lf `mysql_config --libs`"
  +%endif
  +%if "%{with_dlz_postgres}" == "yes"
  +    case "%{l_target}" in
  +        *-solaris*) li="$li -lresolv" ;;
  +    esac
  +%endif
       cf=`eval echo $cf`
  -    lf=`mysql_config --libs`
       lf=`eval echo $lf`
  -%endif
  +    li=`eval echo $li`
       CC="%{l_cc}" \
       CFLAGS="%{l_cflags -O} $cf" \
       LDFLAGS="%{l_ldflags} $lf" \
  +    LIBS="$li" \
       ./configure \
           --prefix=%{l_prefix} \
           --sysconfdir=%{l_prefix}/etc/bind \
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/radius/radius.spec
  ============================================================================
  $ cvs diff -u -r1.21.2.2 -r1.21.2.3 radius.spec
  --- openpkg-src/radius/radius.spec    24 Jul 2003 20:50:27 -0000      1.21.2.2
  +++ openpkg-src/radius/radius.spec    28 Jul 2003 12:59:16 -0000      1.21.2.3
  @@ -33,7 +33,7 @@
   Group:        Network
   License:      GPL
   Version:      1.1
  -Release:      1.20030724
  +Release:      1.20030728
   
   #   list of sources
   Source0:      ftp://ftp.gnu.org/gnu/radius/radius-%{version}.tar.gz
  @@ -56,6 +56,13 @@
   
   %prep
       %setup -q
  +    case "%{l_target}" in
  +        *-solaris2.6)
  +            %{l_shtool} subst \
  +                -e 's;socklen_t;int;g' \
  +                radiusd/radiusd.c
  +            ;;
  +    esac
   
   %build
       CC="%{l_cc}" \
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/unrar/unrar.patch
  ============================================================================
  $ cvs diff -u -r1.1.2.1 -r1.1.2.2 unrar.patch
  --- openpkg-src/unrar/unrar.patch     24 Jul 2003 20:50:54 -0000      1.1.2.1
  +++ openpkg-src/unrar/unrar.patch     28 Jul 2003 12:59:16 -0000      1.1.2.2
  @@ -16,3 +16,26 @@
    
    
    #endif
  +--- rarvm.cpp.orig   2003-05-15 10:37:58.000000000 +0200
  ++++ rarvm.cpp        2003-07-28 14:36:01.000000000 +0200
  +@@ -376,16 +376,16 @@
  +       case VM_PUSHA:
  +         {
  +           const int RegCount=sizeof(R)/sizeof(R[0]);
  +-          for (int I=0,SP=R[7]-4;I<RegCount;I++,SP-=4)
  +-            SET_VALUE(false,(uint *)&Mem[SP & VM_MEMMASK],R[I]);
  ++          for (int I=0,SPTR=R[7]-4;I<RegCount;I++,SPTR-=4)
  ++            SET_VALUE(false,(uint *)&Mem[SPTR & VM_MEMMASK],R[I]);
  +           R[7]-=RegCount*4;
  +         }
  +         break;
  +       case VM_POPA:
  +         {
  +           const int RegCount=sizeof(R)/sizeof(R[0]);
  +-          for (uint I=0,SP=R[7];I<RegCount;I++,SP+=4)
  +-            R[7-I]=GET_VALUE(false,(uint *)&Mem[SP & VM_MEMMASK]);
  ++          for (uint I=0,SPTR=R[7];I<RegCount;I++,SPTR+=4)
  ++            R[7-I]=GET_VALUE(false,(uint *)&Mem[SPTR & VM_MEMMASK]);
  +         }
  +         break;
  +       case VM_PUSHF:
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/unrar/unrar.spec
  ============================================================================
  $ cvs diff -u -r1.11.2.2 -r1.11.2.3 unrar.spec
  --- openpkg-src/unrar/unrar.spec      24 Jul 2003 20:50:54 -0000      1.11.2.2
  +++ openpkg-src/unrar/unrar.spec      28 Jul 2003 12:59:16 -0000      1.11.2.3
  @@ -33,7 +33,7 @@
   Group:        Archiver
   License:      freely distributable
   Version:      3.2.2
  -Release:      1.20030724
  +Release:      1.20030728
   
   #   list of sources
   Source0:      http://files10.rarlab.com/rar/unrarsrc-%{version}.tar.gz
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-web/news.txt
  ============================================================================
  $ cvs diff -u -r1.5863 -r1.5864 news.txt
  --- openpkg-web/news.txt      28 Jul 2003 12:37:32 -0000      1.5863
  +++ openpkg-web/news.txt      28 Jul 2003 12:59:14 -0000      1.5864
  @@ -1,3 +1,6 @@
  +28-Jul-2003: Upgraded package: P<unrar-3.2.2-1.20030728>
  +28-Jul-2003: Upgraded package: P<radius-1.1-1.20030728>
  +28-Jul-2003: Upgraded package: P<bind-9.2.2-1.20030728>
   28-Jul-2003: Upgraded package: P<unrar-3.2.2-20030728>
   28-Jul-2003: New package: P<gpp-2.1-1.20030728>
   28-Jul-2003: Upgraded package: P<gpp-2.1-20030728>
  @@ .
______________________________________________________________________
The OpenPKG Project                                    www.openpkg.org
CVS Repository Commit List                     [EMAIL PROTECTED]

Reply via email to