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

2005-09-13 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   14-Sep-2005 08:52:20
  Branch: HEAD Handle: 2005091407522000

  Modified files:
openpkg-src/inkscapeinkscape.spec

  Log:
fix tracking and upgrade to latest version

  Summary:
RevisionChanges Path
1.3 +4  -4  openpkg-src/inkscape/inkscape.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/inkscape/inkscape.spec
  
  $ cvs diff -u -r1.2 -r1.3 inkscape.spec
  --- openpkg-src/inkscape/inkscape.spec24 Mar 2005 11:19:05 -  
1.2
  +++ openpkg-src/inkscape/inkscape.spec14 Sep 2005 06:52:20 -  
1.3
  @@ -32,8 +32,8 @@
   Class:EVAL
   Group:Graphics
   License:  GPL
  -Version:  0.40
  -Release:  20050121
  +Version:  0.42.2
  +Release:  20050914
   
   #   list of sources
   Source0:  
http://osdn.dl.sourceforge.net/inkscape/inkscape-%{version}.tar.bz2
  @@ -63,8 +63,8 @@
   %track
   prog inkscape = {
   version   = %{version}
  -url   = ftp://ftp.inkscape.org/pub/inkscape/
  -regex = inkscape-(__VER__)\.tar\.gz
  +url   = http://prdownloads.sourceforge.net/inkscape/
  +regex = inkscape-(__VER__)\.tar\.bz2
   }
   
   %prep
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2005-09-13 Thread Matthias Kurz
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Matthias Kurz
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   13-Sep-2005 21:47:25
  Branch: HEAD Handle: 2005091320472500

  Modified files:
openpkg-src/binutilsbinutils.patch binutils.spec

  Log:
Problems with --disable-nls under Solaris

- Prevent inclusion of , when ENABLE_NLS is not set.
  When ENABLE_NLS is not set, some parts of binutils are declaring dummy
  versions of bindtextdomain, texdomain etc.
   under Solaris includes , which leads to problems,
  because the dummy definitions conflict with the definitions in libintl.h.
- Finally the dummy routines lead to a compilation error in gprof.c, because
  they generate a warning ("statement without effect", or so) and the
  compiler switch -Werror is used.

Real errors happen only in the current CVS version, but there where many
warnings in 2.16.1, so i applied the patch anyway.

  Summary:
RevisionChanges Path
1.14+64 -0  openpkg-src/binutils/binutils.patch
1.65+1  -1  openpkg-src/binutils/binutils.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/binutils/binutils.patch
  
  $ cvs diff -u -r1.13 -r1.14 binutils.patch
  --- openpkg-src/binutils/binutils.patch   3 May 2005 17:59:39 -   
1.13
  +++ openpkg-src/binutils/binutils.patch   13 Sep 2005 19:47:25 -  
1.14
  @@ -36,3 +36,67 @@
  i[3-7]86-*-bsd* | i[3-7]86-*-freebsd[123] | i[3-7]86-*-freebsd[123]\.* | 
i[3-7]86-*-freebsd4\.[01234] | i[3-7]86-*-freebsd4\.[01234]\.* | 
i[3-7]86-*-freebsd*aout*)
COREFILE=trad-core.lo
TRAD_HEADER='"hosts/i386bsd.h"'
  +
  +-
  +
  +Fight problems with --disable-nls under Solaris
  +
  +Index: binutils/bucomm.h
  +--- binutils/bucomm.h.orig   2005-08-16 21:35:21.0 +0200
   binutils/bucomm.h2005-09-13 16:55:29.276456000 +0200
  +@@ -125,6 +125,11 @@
  + # endif /* HAVE_ALLOCA_H */
  + #endif
  + 
  ++#ifndef ENABLE_NLS
  ++# define _LIBINTL_H
  ++# define _LIBGETTEXT_H
  ++#endif
  ++
  + #ifdef HAVE_LOCALE_H
  + # include 
  + #endif
  +Index: gas/asintl.h
  +--- gas/asintl.h.orig2005-05-05 11:12:43.0 +0200
   gas/asintl.h 2005-09-13 16:58:29.082469000 +0200
  +@@ -20,6 +20,11 @@
  +Software Foundation, 51 Franklin Street - Fifth Floor, Boston, MA
  +02110-1301, USA.  */
  + 
  ++#ifndef ENABLE_NLS
  ++# define _LIBINTL_H
  ++# define _LIBGETTEXT_H
  ++#endif
  ++
  + #ifdef HAVE_LOCALE_H
  + # include 
  + #endif
  +Index: gprof/gprof.c
  +--- gprof/gprof.c.orig   2005-04-23 19:13:31.0 +0200
   gprof/gprof.c2005-09-13 17:13:52.242443000 +0200
  +@@ -189,8 +189,10 @@
  + #if defined (HAVE_SETLOCALE)
  +   setlocale (LC_CTYPE, "");
  + #endif
  ++#ifdef ENABLE_NLS
  +   bindtextdomain (PACKAGE, LOCALEDIR);
  +   textdomain (PACKAGE);
  ++#endif
  + 
  +   whoami = argv[0];
  +   xmalloc_set_program_name (whoami);
  +Index: ld/ld.h
  +--- ld/ld.h.orig 2005-06-09 04:05:46.0 +0200
   ld/ld.h  2005-09-13 17:24:03.767249000 +0200
  +@@ -23,6 +23,11 @@
  + #ifndef LD_H
  + #define LD_H
  + 
  ++#ifndef ENABLE_NLS
  ++# define _LIBINTL_H
  ++# define _LIBGETTEXT_H
  ++#endif
  ++
  + #ifdef HAVE_LOCALE_H
  + # include 
  + #endif
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-src/binutils/binutils.spec
  
  $ cvs diff -u -r1.64 -r1.65 binutils.spec
  --- openpkg-src/binutils/binutils.spec9 Sep 2005 05:55:27 -   
1.64
  +++ openpkg-src/binutils/binutils.spec13 Sep 2005 19:47:25 -  
1.65
  @@ -33,7 +33,7 @@
   Group:Utility
   License:  GPL
   Version:  2.16.1
  -Release:  20050909
  +Release:  20050913
   
   #   list of sources
   Source0:  
ftp://sources.redhat.com/pub/binutils/releases/binutils-%{version}.tar.bz2
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2005-09-13 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   13-Sep-2005 21:25:24
  Branch: HEAD Handle: 2005091320252400

  Modified files:
openpkg-src/kwiki   kwiki.spec

  Log:
modifying package: kwiki-0.38 20050908 -> 20050913

  Summary:
RevisionChanges Path
1.61+2  -2  openpkg-src/kwiki/kwiki.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/kwiki/kwiki.spec
  
  $ cvs diff -u -r1.60 -r1.61 kwiki.spec
  --- openpkg-src/kwiki/kwiki.spec  8 Sep 2005 19:17:38 -   1.60
  +++ openpkg-src/kwiki/kwiki.spec  13 Sep 2005 19:25:24 -  1.61
  @@ -94,7 +94,7 @@
   %define   V_kwiki_pagestats 0.05
   %define   V_kwiki_purple0.04
   %define   V_kwiki_test  0.03
  -%define   V_kwiki_attachments   0.17
  +%define   V_kwiki_attachments   0.18
   %define   V_kwiki_opensearch0.02
   %define   V_kwiki_urlblock  0.05
   %define   V_kwiki_cacheddisplay 0.04
  @@ -119,7 +119,7 @@
   Group:Web
   License:  GPL/Artistic
   Version:  %{V_kwiki}
  -Release:  20050908
  +Release:  20050913
   
   #   list of sources
   Source0:  
http://www.cpan.org/authors/id/I/IN/INGY/Spoon-%{V_spoon}.tar.gz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2005-09-13 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   13-Sep-2005 21:07:25
  Branch: HEAD Handle: 2005091320072500

  Modified files:
openpkg-src/uvscan  uvscan.spec

  Log:
upgrading package: uvscan 4.32.4570 -> 4.32.4580

  Summary:
RevisionChanges Path
1.284   +2  -2  openpkg-src/uvscan/uvscan.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/uvscan/uvscan.spec
  
  $ cvs diff -u -r1.283 -r1.284 uvscan.spec
  --- openpkg-src/uvscan/uvscan.spec30 Aug 2005 17:26:47 -  1.283
  +++ openpkg-src/uvscan/uvscan.spec13 Sep 2005 19:07:25 -  1.284
  @@ -25,7 +25,7 @@
   #   package versions
   %define   V_engine  4.32
   %define   V_engine_comp 432
  -%define   V_datfiles4570
  +%define   V_datfiles4580
   
   #   package information
   Name: uvscan
  @@ -38,7 +38,7 @@
   Group:Filesystem
   License:  Commercial/Free-Trial
   Version:  %{V_engine}.%{V_datfiles}
  -Release:  20050830
  +Release:  20050913
   
   #   list of sources
   Source0:  
ftp://ftp.mcafee.com/pub/antivirus/datfiles/4.x/dat-%{V_datfiles}.tar
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2005-09-13 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   13-Sep-2005 21:07:00
  Branch: HEAD Handle: 2005091320065800

  Modified files:
openpkg-src/libxdifflibxdiff.spec

  Log:
upgrading package: libxdiff 0.12 -> 0.14

  Summary:
RevisionChanges Path
1.7 +2  -2  openpkg-src/libxdiff/libxdiff.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/libxdiff/libxdiff.spec
  
  $ cvs diff -u -r1.6 -r1.7 libxdiff.spec
  --- openpkg-src/libxdiff/libxdiff.spec7 Sep 2005 08:18:13 -   
1.6
  +++ openpkg-src/libxdiff/libxdiff.spec13 Sep 2005 19:06:58 -  
1.7
  @@ -32,8 +32,8 @@
   Class:EVAL
   Group:Text
   License:  LGPL
  -Version:  0.12
  -Release:  20050907
  +Version:  0.14
  +Release:  20050913
   
   #   list of sources
   Source0:  http://www.xmailserver.org/libxdiff-%{version}.tar.gz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2005-09-13 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   13-Sep-2005 21:07:00
  Branch: HEAD Handle: 200509132007

  Modified files:
openpkg-src/johnjohn.spec

  Log:
upgrading package: john 1.6.38 -> 1.6.39

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

  patch -p0 <<'@@ .'
  Index: openpkg-src/john/john.spec
  
  $ cvs diff -u -r1.1 -r1.2 john.spec
  --- openpkg-src/john/john.spec12 May 2005 19:15:56 -  1.1
  +++ openpkg-src/john/john.spec13 Sep 2005 19:07:00 -  1.2
  @@ -32,8 +32,8 @@
   Class:EVAL
   Group:System
   License:  GPL
  -Version:  1.6.38
  -Release:  20050512
  +Version:  1.6.39
  +Release:  20050913
   
   #   list of sources
   Source0:  http://www.openwall.com/john/c/john-%{version}.tar.gz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2005-09-13 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   13-Sep-2005 12:33:26
  Branch: HEAD Handle: 2005091311332600

  Modified files:
openpkg-src/libxml  libxml.spec

  Log:
upgrading package: libxml 2.6.21 -> 2.6.22

  Summary:
RevisionChanges Path
1.97+2  -2  openpkg-src/libxml/libxml.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/libxml/libxml.spec
  
  $ cvs diff -u -r1.96 -r1.97 libxml.spec
  --- openpkg-src/libxml/libxml.spec5 Sep 2005 06:02:30 -   1.96
  +++ openpkg-src/libxml/libxml.spec13 Sep 2005 10:33:26 -  1.97
  @@ -32,8 +32,8 @@
   Class:BASE
   Group:SGML
   License:  LGPL
  -Version:  2.6.21
  -Release:  20050905
  +Version:  2.6.22
  +Release:  20050913
   
   #   list of sources
   Source0:  ftp://xmlsoft.org/libxml2-%{version}.tar.gz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2005-09-13 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   13-Sep-2005 12:33:25
  Branch: HEAD Handle: 2005091311332500

  Modified files:
openpkg-src/tidytidy.spec

  Log:
upgrading package: tidy 20050826 -> 20050912

  Summary:
RevisionChanges Path
1.180   +3  -3  openpkg-src/tidy/tidy.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/tidy/tidy.spec
  
  $ cvs diff -u -r1.179 -r1.180 tidy.spec
  --- openpkg-src/tidy/tidy.spec27 Aug 2005 17:32:31 -  1.179
  +++ openpkg-src/tidy/tidy.spec13 Sep 2005 10:33:25 -  1.180
  @@ -23,8 +23,8 @@
   ##
   
   #   package version
  -%define   V_opkg 20050826
  -%define   V_src  050826
  +%define   V_opkg 20050912
  +%define   V_src  050912
   %define   V_doc  050705
   
   #   package information
  @@ -38,7 +38,7 @@
   Group:Text
   License:  GPL
   Version:  %{V_opkg}
  -Release:  20050827
  +Release:  20050913
   
   #   list of sources
   Source0:  http://tidy.sourceforge.net/src/tidy_src_%{V_src}.tgz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-src/mozilla-mplayer/ mozilla-mplayer.spec

2005-09-13 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   13-Sep-2005 12:33:21
  Branch: HEAD Handle: 2005091311332000

  Modified files:
openpkg-src/mozilla-mplayer
mozilla-mplayer.spec

  Log:
upgrading package: mozilla-mplayer 3.05 -> 3.10

  Summary:
RevisionChanges Path
1.29+2  -2  openpkg-src/mozilla-mplayer/mozilla-mplayer.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/mozilla-mplayer/mozilla-mplayer.spec
  
  $ cvs diff -u -r1.28 -r1.29 mozilla-mplayer.spec
  --- openpkg-src/mozilla-mplayer/mozilla-mplayer.spec  6 Aug 2005 15:48:38 
-   1.28
  +++ openpkg-src/mozilla-mplayer/mozilla-mplayer.spec  13 Sep 2005 10:33:20 
-  1.29
  @@ -32,8 +32,8 @@
   Class:EVAL
   Group:Web
   License:  GPL
  -Version:  3.05
  -Release:  20050806
  +Version:  3.10
  +Release:  20050913
   
   #   list of sources
   Source0:  
http://osdn.dl.sourceforge.net/mplayerplug-in/mplayerplug-in-%{version}.tar.gz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2005-09-13 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   13-Sep-2005 10:39:07
  Branch: HEAD Handle: 2005091309390600

  Modified files:
openpkg-src/nmapnmap.spec

  Log:
upgrading package: nmap 3.91 -> 3.93

  Summary:
RevisionChanges Path
1.74+2  -2  openpkg-src/nmap/nmap.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/nmap/nmap.spec
  
  $ cvs diff -u -r1.73 -r1.74 nmap.spec
  --- openpkg-src/nmap/nmap.spec11 Sep 2005 17:37:27 -  1.73
  +++ openpkg-src/nmap/nmap.spec13 Sep 2005 08:39:06 -  1.74
  @@ -32,8 +32,8 @@
   Class:BASE
   Group:Network
   License:  GPL
  -Version:  3.91
  -Release:  20050911
  +Version:  3.93
  +Release:  20050913
   
   #   list of sources
   Source0:  http://www.insecure.org/nmap/dist/nmap-%{version}.tgz
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2005-09-13 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   13-Sep-2005 10:34:39
  Branch: HEAD Handle: 2005091309343900

  Modified files:
openpkg-src/bacula  bacula.spec

  Log:
'openpkg index' currently only support boolean yes/no comparisons for
build-time options, hence we have to change the RDBMS selection to a
similar approach we have in other packages. Not elegant, but at least
consistent with the other packages and now working with 'openpkg
index'

  Summary:
RevisionChanges Path
1.12+22 -12 openpkg-src/bacula/bacula.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/bacula/bacula.spec
  
  $ cvs diff -u -r1.11 -r1.12 bacula.spec
  --- openpkg-src/bacula/bacula.spec5 Sep 2005 06:36:04 -   1.11
  +++ openpkg-src/bacula/bacula.spec13 Sep 2005 08:34:39 -  1.12
  @@ -39,7 +39,7 @@
   Group:System
   License:  GPL
   Version:  %{V_bacula}
  -Release:  20050905
  +Release:  20050913
   
   #   package options
   %option   with_server   yes
  @@ -47,12 +47,20 @@
   %option   with_group%{l_rgrp}
   %option   with_ssl  yes
   %option   with_wrap no
  -%option   with_db   sqlite
   %option   with_dvd  no
   %option   with_mtx  no
   %option   with_python   no
   %option   with_wxconsoleno
   %option   with_traymonitor  no
  +%option   with_db_sqliteno
  +%option   with_db_pgsql no
  +%option   with_db_mysql no
  +
  +#   package option sanity check
  +%if "%{with_db_sqlite}" == "no" && "%{with_db_mysql}" == "no" && 
"%{with_db_pgsql}" == "no"
  +%undefine with_db_sqlite
  +%define   with_db_sqliteyes
  +%endif
   
   #   list of sources
   Source0:  http://osdn.dl.sourceforge.net/bacula/bacula-%{version}.tar.gz
  @@ -76,15 +84,15 @@
   BuildPreReq:  tcpwrappers
   PreReq:   tcpwrappers
   %endif
  -%if "%{with_db}" == "sqlite"
  +%if "%{with_db_sqlite}" == "yes"
   BuildPreReq:  sqlite
   PreReq:   sqlite
   %endif
  -%if "%{with_db}" == "mysql"
  +%if "%{with_db_mysql}" == "yes"
   BuildPreReq:  mysql
   PreReq:   mysql
   %endif
  -%if "%{with_db}" == "postgres"
  +%if "%{with_db_pgsql}" == "yes"
   BuildPreReq:  postgresql
   PreReq:   postgresql
   %endif
  @@ -155,12 +163,6 @@
   configure
   
   #   configure
  -case "%{with_db}" in
  -sqlite ) cfg_db="--with-sqlite=%{l_prefix}" ;;
  -mysql  ) cfg_db="--with-mysql=%{l_prefix}"  ;;
  -pgsql  ) cfg_db="--with-postgresql=%{l_prefix}" ;;
  -*  ) echo "with_db must be in (sqlite|mysql|pgsql)" 1>&2; exit 1 
;;
  -esac
   CC="%{l_cc}" \
   CFLAGS="%{l_cflags -O}" \
   CPPFLAGS="%{l_cppflags}" \
  @@ -185,7 +187,15 @@
   %if "%{with_wrap}" == "yes"
   --with-tcp-wrappers=yes \
   %endif
  -$cfg_db \
  +%if "%{with_db_sqlite}" == "yes"
  +--with-sqlite=%{l_prefix} \
  +%endif
  +%if "%{with_db_mysql}" == "yes"
  +--with-mysql=%{l_prefix} \
  +%endif
  +%if "%{with_db_pgsql}" == "yes"
  +--with-postgresql=%{l_prefix} \
  +%endif
   %if "%{with_python}" == "yes" || "%{with_dvd}" == "yes"
   --with-python=%{l_prefix} \
   %endif
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


[CVS] OpenPKG: openpkg-web/ Makefile

2005-09-13 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-web  Date:   13-Sep-2005 10:32:42
  Branch: HEAD Handle: 2005091309324200

  Modified files:
openpkg-web Makefile

  Log:
remove obsolete stuff

  Summary:
RevisionChanges Path
1.23+1  -6  openpkg-web/Makefile
  

  patch -p0 <<'@@ .'
  Index: openpkg-web/Makefile
  
  $ cvs diff -u -r1.22 -r1.23 Makefile
  --- openpkg-web/Makefile  11 Jun 2005 19:12:30 -  1.22
  +++ openpkg-web/Makefile  13 Sep 2005 08:32:42 -  1.23
  @@ -31,7 +31,7 @@
   GRAPHICS = \
   grid.png
   
  -all: update-news $(PAGES) $(GRAPHICS) dep
  +all: update-news $(PAGES) $(GRAPHICS)
   
   update-news:
./news.pl
  @@ -106,11 +106,6 @@
   ln -s ../PKG pkg; \
   fi
   
  -dep:
  - [EMAIL PROTECTED] [ ! -h dep ]; then \
  -ln -s ../dep dep; \
  -fi
  -
   pkg.db: 
[EMAIL PROTECTED] [ ! -f pkg.db ]; then \
./pkg.mkdb; \
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org


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

2005-09-13 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /v/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   13-Sep-2005 10:21:38
  Branch: HEAD Handle: 2005091309213800

  Modified files:
openpkg-src/eximexim.spec

  Log:
fix quoting

  Summary:
RevisionChanges Path
1.89+2  -2  openpkg-src/exim/exim.spec
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/exim/exim.spec
  
  $ cvs diff -u -r1.88 -r1.89 exim.spec
  --- openpkg-src/exim/exim.spec5 Sep 2005 13:19:37 -   1.88
  +++ openpkg-src/exim/exim.spec13 Sep 2005 08:21:38 -  1.89
  @@ -33,7 +33,7 @@
   Group:Mail
   License:  GPL
   Version:  4.52
  -Release:  20050905
  +Release:  20050913
   
   #   package options
   %option   with_auth_cram_md5  no
  @@ -62,7 +62,7 @@
   PreReq:   OpenPKG, openpkg >= 20040130, perl, gzip
   BuildPreReq:  db >= 4.1.24, libiconv
   PreReq:   db >= 4.1.24, libiconv
  -%if "%{with_dlfunc}" == yes
  +%if "%{with_dlfunc}" == "yes"
   BuildPreReq:  gcc
   %endif
   %if "%{with_mysql}" == "yes"
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List openpkg-cvs@openpkg.org