[CVS] OpenPKG: openpkg-src/unifdef/ unifdef.spec

2009-11-28 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   29-Nov-2009 01:00:24
  Branch: HEAD Handle: 200911291800

  Modified files:
openpkg-src/unifdef unifdef.spec

  Log:
upgrading package: unifdef 1.295 -> 1.317

  Summary:
RevisionChanges Path
1.2 +2  -2  openpkg-src/unifdef/unifdef.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/unifdef/unifdef.spec
  
  $ cvs diff -u -r1.1 -r1.2 unifdef.spec
  --- openpkg-src/unifdef/unifdef.spec  27 Nov 2009 12:12:24 -  1.1
  +++ openpkg-src/unifdef/unifdef.spec  29 Nov 2009 00:00:18 -  1.2
  @@ -31,8 +31,8 @@
   Class:EVAL
   Group:Language
   License:  BSD
  -Version:  1.295
  -Release:  20091127
  +Version:  1.317
  +Release:  20091129
   
   #   list of sources
   Source0:  http://dotat.at/prog/unifdef/unifdef-%{version}.tar.gz
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/ispell/ ispell.patch ispell.spec

2009-11-28 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   29-Nov-2009 00:46:25
  Branch: HEAD Handle: 2009112823462400

  Modified files:
openpkg-src/ispell  ispell.patch ispell.spec

  Log:
fix building under FreeBSD >= 8

  Summary:
RevisionChanges Path
1.5 +117 -6 openpkg-src/ispell/ispell.patch
1.62+1  -1  openpkg-src/ispell/ispell.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/ispell/ispell.patch
  
  $ cvs diff -u -r1.4 -r1.5 ispell.patch
  --- openpkg-src/ispell/ispell.patch   12 Jun 2005 19:23:13 -  1.4
  +++ openpkg-src/ispell/ispell.patch   28 Nov 2009 23:46:24 -  1.5
  @@ -1,6 +1,7 @@
   config.X 10 Jun 2005 18:16:04 -  1.1.1.1
  -+++ config.X 10 Jun 2005 19:53:17 -
  -@@ -211,9 +211,6 @@
  +Index: config.X
  +--- config.X.orig2005-05-25 16:13:53 +0200
   config.X 2009-11-29 00:43:10 +0100
  +@@ -214,9 +214,6 @@

#include 
#include 
  @@ -10,9 +11,10 @@

/*
** Things that normally go in a Makefile.  Define these just like you
   ispell.c 10 Jun 2005 18:16:05 -  1.1.1.1
  -+++ ispell.c 10 Jun 2005 19:53:17 -
  -@@ -507,6 +507,11 @@
  +Index: ispell.c
  +--- ispell.c.orig2005-05-25 16:13:53 +0200
   ispell.c 2009-11-29 00:43:10 +0100
  +@@ -511,6 +511,11 @@
#else /* MINIMENU */
(void) printf ("\t!MINIMENU\n");
#endif /* MINIMENU */
  @@ -24,3 +26,112 @@
(void) printf ("\tMINWORD = %d\n", MINWORD);
#ifdef MSDOS
(void) printf ("\tMSDOS\n");
  +Index: term.c
  +--- term.c.orig  2005-04-15 01:11:36 +0200
   term.c   2009-11-29 00:43:10 +0100
  +@@ -86,8 +86,12 @@
  + #include "ispell.h"
  + #include "proto.h"
  + #include "msgs.h"
  ++#ifdef BSD4_4
  ++#define USG
  ++#endif
  + #ifdef USG
  +-#include 
  ++#include 
  ++#include 
  + #else
  + #ifndef __DJGPP__
  + #include 
  +@@ -166,8 +170,8 @@
  + }
  + 
  + #ifdef USG
  +-static struct termiosbuf;
  +-static struct termioosbuf;
  ++static struct termios   sbuf;
  ++static struct termios   osbuf;
  + #else
  + static struct sgttybsbuf;
  + static struct sgttybosbuf;
  +@@ -276,7 +280,7 @@
  + (void) fprintf (stderr, TERM_C_NO_BATCH);
  + exit (1);
  + }
  +-(void) ioctl (0, TCGETA, (char *) &osbuf);
  ++tcgetattr(STDIN_FILENO, &osbuf);
  + termchanged = 1;
  + 
  + sbuf = osbuf;
  +@@ -285,7 +289,7 @@
  + sbuf.c_iflag &= ~(INLCR | IGNCR | ICRNL);
  + sbuf.c_cc[VMIN] = 1;
  + sbuf.c_cc[VTIME] = 1;
  +-(void) ioctl (0, TCSETAW, (char *) &sbuf);
  ++tcsetattr(STDIN_FILENO, TCSANOW, &sbuf);
  + 
  + uerasechar = osbuf.c_cc[VERASE];
  + ukillchar = osbuf.c_cc[VKILL];
  +@@ -373,7 +377,7 @@
  + if (te)
  + tputs (te, 1, iputch);
  + #ifdef USG
  +-(void) ioctl (0, TCSETAW, (char *) &osbuf);
  ++tcsetattr(STDIN_FILENO, TCSANOW, &osbuf);
  + #else
  + (void) ioctl (0, TIOCSETP, (char *) &osbuf);
  + #ifdef TIOCSLTC
  +@@ -394,7 +398,7 @@
  + if (te)
  + tputs (te, 1, iputch);
  + #ifdef USG
  +-(void) ioctl (0, TCSETAW, (char *) &osbuf);
  ++tcsetattr(STDIN_FILENO, TCSANOW, &osbuf);
  + #else
  + (void) ioctl (0, TIOCSETP, (char *) &osbuf);
  + #ifdef TIOCSLTC
  +@@ -413,7 +417,7 @@
  + if (termchanged)
  + {
  + #ifdef USG
  +-(void) ioctl (0, TCSETAW, (char *) &sbuf);
  ++tcsetattr(STDIN_FILENO, TCSANOW, &sbuf);
  + #else
  + (void) ioctl (0, TIOCSETP, (char *) &sbuf);
  + #ifdef TIOCSLTC
  +@@ -481,7 +485,7 @@
  + argv[i] = NULL;
  + 
  + #ifdef USG
  +-(void) ioctl (0, TCSETAW, (char *) &osbuf);
  ++tcsetattr(STDIN_FILENO, TCSANOW, &osbuf);
  + #else
  + (void) ioctl (0, TIOCSETP, (char *) &osbuf);
  + #ifdef TIOCSLTC
  +@@ -527,7 +531,7 @@
  + #endif
  + 
  + #ifdef USG
  +-(void) ioctl (0, TCSETAW, (char *) &sbuf);
  ++tcsetattr(STDIN_FILENO, TCSANOW, &sbuf);
  + #else
  + (void) ioctl (0, TIOCSETP, (char *) &sbuf);
  + #ifdef TIOCSLTC
  +@@ -563,7 +567,7 @@
  + #endif
  + 
  + #ifdef USG
  +-(void) ioctl (0, TCSETAW, (char *) &osbuf);
  ++tcsetattr(STDIN_FILENO, TCSANOW, &osbuf);
  + #else
  + (void) ioctl (0, TIOCSETP, (char *) &osbuf);
  + #ifdef TIOCSLTC
  +@@ -611,7 +615,7 @@
  + #endif
  + 
  + #ifdef USG
  +-(void) ioctl (0, TCSETAW, (char *) &sbuf);
  ++tcsetattr(STDIN_FILENO, TCSANOW, &sbuf);
  + #else
  + (void) ioctl (0, TIOCSETP, (char *) &sbuf);
  + #ifdef TIOCS

[CVS] OpenPKG: openpkg-src/libssh2/ libssh2.patch libssh2.spec

2009-11-28 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Nov-2009 22:59:49
  Branch: HEAD Handle: 2009112821594900

  Modified files:
openpkg-src/libssh2 libssh2.patch libssh2.spec

  Log:
upgrading package: libssh2 1.2.1 -> 1.2.2

  Summary:
RevisionChanges Path
1.16+21 -5  openpkg-src/libssh2/libssh2.patch
1.33+5  -3  openpkg-src/libssh2/libssh2.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/libssh2/libssh2.patch
  
  $ cvs diff -u -r1.15 -r1.16 libssh2.patch
  --- openpkg-src/libssh2/libssh2.patch 14 Sep 2009 20:06:02 -  1.15
  +++ openpkg-src/libssh2/libssh2.patch 28 Nov 2009 21:59:49 -  1.16
  @@ -1,8 +1,23 @@
  -Index: libssh-0.3.4/include/libssh/priv.h
   libssh-0.3.4/include/libssh/priv.h.orig  2006-12-29 16:03:59 +0100
  -+++ libssh-0.3.4/include/libssh/priv.h   2007-01-09 17:44:24 +0100
  -@@ -549,4 +549,8 @@
  - } ;
  +Index: libssh-0.3.91/cmake/Modules/DefineCompilerFlags.cmake
  +--- libssh-0.3.91/cmake/Modules/DefineCompilerFlags.cmake.orig   
2009-10-29 20:22:21 +0100
   libssh-0.3.91/cmake/Modules/DefineCompilerFlags.cmake2009-11-28 
22:55:02 +0100
  +@@ -13,11 +13,6 @@
  +   add_definitions(-fPIC)
  + endif (WITH_FPIC)
  + 
  +-check_c_compiler_flag("-fstack-protector" WITH_STACK_PROTECTOR)
  +-if (WITH_STACK_PROTECTOR)
  +-  add_definitions(-fstack-protector)
  +-endif (WITH_STACK_PROTECTOR)
  +-
  + check_c_compiler_flag("-D_FORTIFY_SOURCE=2" WITH_FORTIFY_SOURCE)
  + if (WITH_FORTIFY_SOURCE)
  +   add_definitions(-D_FORTIFY_SOURCE=2)
  +Index: libssh-0.3.91/include/libssh/priv.h
  +--- libssh-0.3.91/include/libssh/priv.h.orig 2009-10-29 20:22:21 +0100
   libssh-0.3.91/include/libssh/priv.h  2009-11-28 22:55:02 +0100
  +@@ -245,5 +245,9 @@
  + }
#endif

   +#include 
  @@ -10,3 +25,4 @@
   +#include 
   +
#endif /* _LIBSSH_PRIV_H */
  + /* vim: set ts=2 sw=2 et cindent: */
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/libssh2/libssh2.spec
  
  $ cvs diff -u -r1.32 -r1.33 libssh2.spec
  --- openpkg-src/libssh2/libssh2.spec  29 Sep 2009 21:16:24 -  1.32
  +++ openpkg-src/libssh2/libssh2.spec  28 Nov 2009 21:59:49 -  1.33
  @@ -22,8 +22,8 @@
   ##
   
   #   package version
  -%define   V_libssh21.2.1
  -%define   V_libssh 0.3.4
  +%define   V_libssh21.2.2
  +%define   V_libssh 0.3.91
   
   #   package information
   Name: libssh2
  @@ -36,7 +36,7 @@
   Group:SSH
   License:  BSD-style
   Version:  %{V_libssh2}
  -Release:  20090929
  +Release:  20091128
   
   #   package options
   %option   with_perl  no
  @@ -102,6 +102,8 @@
 -DCMAKE_BUILD_TYPE=Release \
 -DWITH_STATIC_LIB=ON \
 -DWITH_LIBZ=OFF \
  +  -DWITH_SFTP=OFF \
  +  -DWITH_SERVER=OFF \
 ..
 %{l_make} %{l_mflags}
   ) || exit $?
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/dhtml/ dhtml.spec

2009-11-28 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Nov-2009 17:28:11
  Branch: HEAD Handle: 2009112816281100

  Modified files:
openpkg-src/dhtml   dhtml.spec

  Log:
modifying package: dhtml-0 20091127 -> 20091128

  Summary:
RevisionChanges Path
1.190   +14 -3  openpkg-src/dhtml/dhtml.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/dhtml/dhtml.spec
  
  $ cvs diff -u -r1.189 -r1.190 dhtml.spec
  --- openpkg-src/dhtml/dhtml.spec  27 Nov 2009 09:12:46 -  1.189
  +++ openpkg-src/dhtml/dhtml.spec  28 Nov 2009 16:28:11 -  1.190
  @@ -67,6 +67,7 @@
   %define   V_oat  2.8
   %define   V_extjs3.0.3
   %define   V_raphael  1.2.4
  +%define   V_svgweb   2009-11-23-Gelatinous-Cube
   
   #   package information
   Name: dhtml
  @@ -79,7 +80,7 @@
   Group:HTML
   License:  Open Source
   Version:  0
  -Release:  20091127
  +Release:  20091128
   
   #   list of sources
   Source0:  
ftp://ftp.openpkg.org/sources/CPY/VERSIONED/dhtml/prototype-%{V_prototype}.js
  @@ -127,7 +128,8 @@
   Source42: http://switch.dl.sourceforge.net/oat/oat-%{V_oat}.tar.gz
   Source43: http://extjs.com/deploy/ext-%{V_extjs}.zip
   Source44: 
ftp://ftp.openpkg.org/sources/CPY/VERSIONED/dhtml/raphael-%{V_raphael}.js
  -Source45: dhtml.txt
  +Source45: http://svgweb.googlecode.com/files/svgweb-%{V_svgweb}.zip
  +Source46: dhtml.txt
   
   #   build information
   Prefix:   %{l_prefix}
  @@ -368,6 +370,11 @@
   url   = http://raphaeljs.com/
   regex = Download\s+v\.\ (__VER__)
   }
  +prog dhtml:svgweb = {
  +version   = %{V_svgweb}
  +url   = http://code.google.com/p/svgweb/downloads/list
  +regex = svgweb-(.*?)\.zip
  +}
   
   %prep
   %setup -q -c -T
  @@ -411,6 +418,7 @@
   mkdir ext-%{V_extjs}
   %{l_prefix}/bin/unzip -q -x %{SOURCE43}
   chmod -R a+r MochiKit-%{V_mochikit}
  +%{l_prefix}/bin/unzip -q -x %{SOURCE45}
   
   %build
   
  @@ -450,7 +458,8 @@
   $RPM_BUILD_ROOT%{l_prefix}/share/dhtml/excanvas \
   $RPM_BUILD_ROOT%{l_prefix}/share/dhtml/oat \
   $RPM_BUILD_ROOT%{l_prefix}/share/dhtml/ext \
  -$RPM_BUILD_ROOT%{l_prefix}/share/dhtml/raphael
  +$RPM_BUILD_ROOT%{l_prefix}/share/dhtml/raphael \
  +$RPM_BUILD_ROOT%{l_prefix}/share/dhtml/svgweb
   ( echo "Alias /openpkg-dhtml/ %{l_prefix}/share/dhtml/"
 echo ""
 echo "Options   Indexes"
  @@ -596,6 +605,8 @@
   ext-%{V_extjs}/[A-Z]*
   cp -rp ext-%{V_extjs}/* \
   $RPM_BUILD_ROOT%{l_prefix}/share/dhtml/ext/
  +cp -rp svgweb/src/svg* \
  +$RPM_BUILD_ROOT%{l_prefix}/share/dhtml/svgweb/
   %{l_shtool} install -c -m 644 \
   %{SOURCE raphael-%{V_raphael}.js} \
   $RPM_BUILD_ROOT%{l_prefix}/share/dhtml/raphael/raphael.js
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/imagemagick/ imagemagick.spec

2009-11-28 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Nov-2009 16:04:54
  Branch: HEAD Handle: 2009112815045400

  Modified files:
openpkg-src/imagemagick imagemagick.spec

  Log:
upgrading package: imagemagick 6.5.8.0 -> 6.5.8.1

  Summary:
RevisionChanges Path
1.620   +2  -2  openpkg-src/imagemagick/imagemagick.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/imagemagick/imagemagick.spec
  
  $ cvs diff -u -r1.619 -r1.620 imagemagick.spec
  --- openpkg-src/imagemagick/imagemagick.spec  26 Nov 2009 08:26:07 -  
1.619
  +++ openpkg-src/imagemagick/imagemagick.spec  28 Nov 2009 15:04:54 -  
1.620
  @@ -23,7 +23,7 @@
   
   #   package version
   %define   V_major 6.5.8
  -%define   V_minor 0
  +%define   V_minor 1
   %define   V_dist  %{V_major}-%{V_minor}
   %define   V_opkg  %{V_major}.%{V_minor}
   
  @@ -38,7 +38,7 @@
   Group:Graphics
   License:  ImageMagick
   Version:  %{V_opkg}
  -Release:  20091126
  +Release:  20091128
   
   #   package options
   %option   with_perl   no
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/openldap/ openldap.spec

2009-11-28 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Nov-2009 16:02:29
  Branch: HEAD Handle: 2009112815022800

  Modified files:
openpkg-src/openldapopenldap.spec

  Log:
upgrading package: openldap 2.4.19 -> 2.4.20

  Summary:
RevisionChanges Path
1.233   +2  -2  openpkg-src/openldap/openldap.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/openldap/openldap.spec
  
  $ cvs diff -u -r1.232 -r1.233 openldap.spec
  --- openpkg-src/openldap/openldap.spec6 Oct 2009 17:59:10 -   
1.232
  +++ openpkg-src/openldap/openldap.spec28 Nov 2009 15:02:28 -  
1.233
  @@ -31,8 +31,8 @@
   Class:BASE
   Group:LDAP
   License:  GPL
  -Version:  2.4.19
  -Release:  20091006
  +Version:  2.4.20
  +Release:  20091128
   
   #   package options
   %option   with_server   yes
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/groovy/ groovy.spec

2009-11-28 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  r...@openpkg.org
  Module: openpkg-src  Date:   28-Nov-2009 16:01:15
  Branch: HEAD Handle: 2009112815011300

  Modified files:
openpkg-src/groovy  groovy.spec

  Log:
upgrading package: groovy 1.6.5 -> 1.6.6

  Summary:
RevisionChanges Path
1.36+2  -2  openpkg-src/groovy/groovy.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/groovy/groovy.spec
  
  $ cvs diff -u -r1.35 -r1.36 groovy.spec
  --- openpkg-src/groovy/groovy.spec14 Oct 2009 09:07:31 -  1.35
  +++ openpkg-src/groovy/groovy.spec28 Nov 2009 15:01:13 -  1.36
  @@ -22,7 +22,7 @@
   ##
   
   #   packaqge version
  -%define   V_groovy 1.6.5
  +%define   V_groovy 1.6.6
   %define   V_gant   1.8.1
   
   #   package information
  @@ -36,7 +36,7 @@
   Group:Language
   License:  BSD-style
   Version:  %{V_groovy}
  -Release:  20091014
  +Release:  20091128
   
   #   list of sources
   Source0:  
http://dist.codehaus.org/groovy/distributions/groovy-binary-%{V_groovy}.zip
  @@ .
__
OpenPKG http://openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org