Re: [CVS] OpenPKG: openpkg-src/gd/ gd.spec

2007-10-12 Thread Gunnar Wrobel
Ralf S. Engelschall [EMAIL PROTECTED] writes:

 On Thu, Oct 11, 2007, Gunnar Wrobel wrote:

 [...]
 config.status: executing depfiles commands
 + /kolab/lib/openpkg/shtool subst -e 's;-LNONE;;' Makefile
 shtool:subst:Warning: substitution resulted in no content change on file 
 Makefile
 + /kolab/bin/make --no-print-directory
 cd .  /bin/sh /kolab/RPM/TMP/gd-2.0.35/config/missing --run aclocal-1.9 -I 
 config
  cd .  /bin/sh /kolab/RPM/TMP/gd-2.0.35/config/missing --run automake-1.9 
 --foreign
 cd .  /bin/sh /kolab/RPM/TMP/gd-2.0.35/config/missing --run autoconf

 Ok, I see. I've tried to apply the usual workaround which we have
 already in many other packages. Can you retry with the latest gd
 package to make sure that the workaround also works for you?

Yup, works fine! Thanks for the fix.

Cheers,

Gunnar


Ralf S. Engelschall
[EMAIL PROTECTED]
www.engelschall.com

 __
 OpenPKG http://openpkg.org
 Developer Communication List   openpkg-dev@openpkg.org

-- 
__ http://kdab.com ___ http://kolab-konsortium.com _

[EMAIL PROTECTED] Kolab work is funded in part by KDAB and the Kolab Konsortium

 http://www.pardus.de _ http://gunnarwrobel.de _
E-mail : [EMAIL PROTECTED] Dr. Gunnar Wrobel
Tel.   : +49 40 432 72335   Bundesstrasse 29
Fax: +49 40 432 70855D-20146 Hamburg

Mail at ease - Rent a kolab groupware server at [EMAIL PROTECTED]   
   

__
OpenPKG http://openpkg.org
Developer Communication List   openpkg-dev@openpkg.org


Re: [CVS] OpenPKG: openpkg-src/gd/ gd.spec

2007-10-11 Thread Ralf S. Engelschall
On Thu, Oct 11, 2007, Kolab Konsortium via Gunnar Wrobel wrote:

 [...]
   Log:
 Run libtoolize if you rebuild the configure system. See
 http://article.gmane.org/gmane.linux.gentoo.devel/23449. This allows
 to build gd on a recent gentoo system.
 [...]
%{l_shtool} subst -e 's;-LNONE;;' Makefile
   +libtoolize --copy --force
%{l_make} %{l_mflags}
%{l_shtool} subst -e 's;/usr/bin/perl;%{l_prefix}/bin/perl;' bdftogd

Hmmm...

1. libtoolize is provided by the libtool package. If it is used, a
   dependency to the libtool package has to added, too.

2. running libtoolize _after_ running the configure script
   seems to be wrong and technically useless to me. If the libtool
   files really are out of sync and a libtoolize run should be
   required, it IMHO has to be done _before_ running configure.

3. The above URL shows a discussion which tells that the generated
   files can be go out of sync if just autoconf is run. But the
   OpenPKG gd package does not run autoconf and it also doesn't
   patch autoconf input files (and so autoconf should be also not
   run implicitly). So how should the files gone out of sync here?

   Ralf S. Engelschall
   [EMAIL PROTECTED]
   www.engelschall.com

__
OpenPKG http://openpkg.org
Developer Communication List   openpkg-dev@openpkg.org


Re: [CVS] OpenPKG: openpkg-src/gd/ gd.spec

2007-10-11 Thread Gunnar Wrobel
Ralf S. Engelschall [EMAIL PROTECTED] writes:

 On Thu, Oct 11, 2007, Kolab Konsortium via Gunnar Wrobel wrote:

 [...]
   Log:
 Run libtoolize if you rebuild the configure system. See
 http://article.gmane.org/gmane.linux.gentoo.devel/23449. This allows
 to build gd on a recent gentoo system.
 [...]
%{l_shtool} subst -e 's;-LNONE;;' Makefile
   +libtoolize --copy --force
%{l_make} %{l_mflags}
%{l_shtool} subst -e 's;/usr/bin/perl;%{l_prefix}/bin/perl;' bdftogd

 Hmmm...

 1. libtoolize is provided by the libtool package. If it is used, a
dependency to the libtool package has to added, too.

Right. Should be fixed.


 2. running libtoolize _after_ running the configure script
seems to be wrong and technically useless to me. If the libtool
files really are out of sync and a libtoolize run should be
required, it IMHO has to be done _before_ running configure.

 3. The above URL shows a discussion which tells that the generated
files can be go out of sync if just autoconf is run. But the
OpenPKG gd package does not run autoconf and it also doesn't
patch autoconf input files (and so autoconf should be also not
run implicitly). So how should the files gone out of sync here?

This is the output when I try to install the old gd package:

...

config.status: executing depfiles commands
+ /kolab/lib/openpkg/shtool subst -e 's;-LNONE;;' Makefile
shtool:subst:Warning: substitution resulted in no content change on file 
Makefile
+ /kolab/bin/make --no-print-directory
cd .  /bin/sh /kolab/RPM/TMP/gd-2.0.35/config/missing --run aclocal-1.9 -I 
config
 cd .  /bin/sh /kolab/RPM/TMP/gd-2.0.35/config/missing --run automake-1.9 
--foreign 
cd .  /bin/sh /kolab/RPM/TMP/gd-2.0.35/config/missing --run autoconf
/bin/sh ./config.status --recheck
running CONFIG_SHELL=/bin/sh /bin/sh ./configure  --cache-file=./config.cache 
--prefix=/kolab --without-x --without-xpm --with-png=/kolab --with-jpeg=/kolab 
--with-freetype=/kolab --disable-shared CC=/kolab/bin/cc CFLAGS=-O2 -pipe 
LDFLAGS=-L/kolab/li

...

checking for strip... (cached) strip
checking for correct ltmain.sh version... no
configure: error:

*** [Gentoo] sanity check failed! ***
*** libtool.m4 and ltmain.sh have a version mismatch! ***
*** (libtool.m4 = 1.5.24, ltmain.sh = 1.5.22) ***

Please run:

  libtoolize --copy --force

if appropriate, please contact the maintainer of this
package (or your distribution) for help.




Basically the line

  %{l_make} %{l_mflags}

runs the problematic calls.

I did not go and check this error in depth to be honest. The
explanation given by Mike Frysinger seemed logical and fixed the issue
when building on Gentoo. I also checked that it did not disturb the
build on any of the other test machines ([rv]m[0-9]*).

So maybe the fix is incorrect but it definitely does not build on
OpenPKG/Gentoo :)

Cheers,

Gunnar


Ralf S. Engelschall
[EMAIL PROTECTED]
www.engelschall.com

 __
 OpenPKG http://openpkg.org
 Developer Communication List   openpkg-dev@openpkg.org
__
OpenPKG http://openpkg.org
Developer Communication List   openpkg-dev@openpkg.org


Re: [CVS] OpenPKG: openpkg-src/gd/ gd.spec

2007-10-11 Thread Ralf S. Engelschall
On Thu, Oct 11, 2007, Gunnar Wrobel wrote:

 [...]
 config.status: executing depfiles commands
 + /kolab/lib/openpkg/shtool subst -e 's;-LNONE;;' Makefile
 shtool:subst:Warning: substitution resulted in no content change on file 
 Makefile
 + /kolab/bin/make --no-print-directory
 cd .  /bin/sh /kolab/RPM/TMP/gd-2.0.35/config/missing --run aclocal-1.9 -I 
 config
  cd .  /bin/sh /kolab/RPM/TMP/gd-2.0.35/config/missing --run automake-1.9 
 --foreign
 cd .  /bin/sh /kolab/RPM/TMP/gd-2.0.35/config/missing --run autoconf

Ok, I see. I've tried to apply the usual workaround which we have
already in many other packages. Can you retry with the latest gd
package to make sure that the workaround also works for you?

   Ralf S. Engelschall
   [EMAIL PROTECTED]
   www.engelschall.com

__
OpenPKG http://openpkg.org
Developer Communication List   openpkg-dev@openpkg.org


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

2004-04-20 Thread Ralf S. Engelschall
  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  Date:   20-Apr-2004 20:24:15
  Branch: HEAD Handle: 2004042019241500

  Modified files:
openpkg-src/gd  gd.spec

  Log:
upgrading package: gd 2.0.22 - 2.0.23

  Summary:
RevisionChanges Path
1.68+2  -2  openpkg-src/gd/gd.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/gd/gd.spec
  
  $ cvs diff -u -r1.67 -r1.68 gd.spec
  --- openpkg-src/gd/gd.spec7 Feb 2004 17:54:59 -   1.67
  +++ openpkg-src/gd/gd.spec20 Apr 2004 18:24:15 -  1.68
  @@ -33,8 +33,8 @@
   Class:BASE
   Group:Graphics
   License:  GPL
  -Version:  2.0.22
  -Release:  20040207
  +Version:  2.0.23
  +Release:  20040420
   
   #   package options
   %option   with_xpm  no
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


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

2004-01-09 Thread Christoph Schug
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Christoph Schug
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   09-Jan-2004 15:22:39
  Branch: HEAD Handle: 2004010914223900

  Modified files:
openpkg-src/gd  gd.spec

  Log:
added optional xpm support

  Summary:
RevisionChanges Path
1.62+15 -0  openpkg-src/gd/gd.spec
  

  patch -p0 '@@ .'
  Index: openpkg-src/gd/gd.spec
  
  $ cvs diff -u -r1.61 -r1.62 gd.spec
  --- openpkg-src/gd/gd.spec9 Jan 2004 08:16:25 -   1.61
  +++ openpkg-src/gd/gd.spec9 Jan 2004 14:22:39 -   1.62
  @@ -35,6 +35,9 @@
   Version:  2.0.20
   Release:  20040109
   
  +#   package options
  +%option   with_xpm  no
  +
   #   list of sources
   Source0:  http://www.boutell.com/gd/http/gd-%{version}.tar.gz
   Patch0:   gd.patch
  @@ -46,6 +49,10 @@
   PreReq:   OpenPKG, openpkg = 20030709, perl
   BuildPreReq:  png, zlib, jpeg, freetype
   PreReq:   png, zlib, jpeg, freetype
  +%if %{with_xpm} == yes
  +BuildPreReq:  X11, xpm
  +PreReq:   X11, xpm
  +%endif
   AutoReq:  no
   AutoReqProv:  no
   
  @@ -73,7 +80,15 @@
   ./configure \
   --cache-file=./config.cache \
   --prefix=%{l_prefix} \
  +%if %{with_xpm} == yes
  +--with-x \
  +--x-includes=`%{l_prefix}/etc/rc --query x11_incdir` \
  +--x-libraries=`%{l_prefix}/etc/rc --query x11_libdir` \
  +--with-xpm=%{l_prefix} \
  +%else
   --without-x \
  +--without-xpm \
  +%endif
   --with-png=%{l_prefix} \
   --with-freetype=%{l_prefix} \
   --with-jpeg=%{l_prefix} \
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/gd/ gd.spec openpkg-web/ news.txt

2003-11-07 Thread Ralf S. Engelschall
  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:   07-Nov-2003 21:21:30
  Branch: HEAD Handle: 2003110720212801

  Modified files:
openpkg-src/gd  gd.spec
openpkg-web news.txt

  Log:
adjust for new freetype filesystem layout

  Summary:
RevisionChanges Path
1.56+2  -2  openpkg-src/gd/gd.spec
1.7319  +1  -0  openpkg-web/news.txt
  

  patch -p0 '@@ .'
  Index: openpkg-src/gd/gd.spec
  
  $ cvs diff -u -r1.55 -r1.56 gd.spec
  --- openpkg-src/gd/gd.spec1 Aug 2003 07:58:35 -   1.55
  +++ openpkg-src/gd/gd.spec7 Nov 2003 20:21:29 -   1.56
  @@ -33,7 +33,7 @@
   Group:Graphics
   License:  GPL
   Version:  2.0.15
  -Release:  20030801
  +Release:  20031107
   
   #   list of sources
   Source0:  http://www.boutell.com/gd/http/gd-%{version}.tar.gz
  @@ -67,7 +67,7 @@
   ) config.cache
   CC=%{l_cc} \
   CFLAGS=%{l_cflags -O} \
  -CPPFLAGS=%{l_cppflags freetype2 . libpng} \
  +CPPFLAGS=%{l_cppflags . libpng} \
   LDFLAGS=%{l_ldflags} \
   LIBS=-lm \
   ./configure \
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.7318 -r1.7319 news.txt
  --- openpkg-web/news.txt  7 Nov 2003 20:12:48 -   1.7318
  +++ openpkg-web/news.txt  7 Nov 2003 20:21:28 -   1.7319
  @@ -1,3 +1,4 @@
  +07-Nov-2003: Upgraded package: Pgd-2.0.15-20031107
   07-Nov-2003: Upgraded package: Pttmkfdir-20021109-20031107
   07-Nov-2003: Upgraded package: Popenpkg-20031107-20031107
   07-Nov-2003: Upgraded package: Ppkgconfig-0.15.0-20031107
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/gd/ gd.spec openpkg-web/ news.txt

2003-08-01 Thread Michael van Elst
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Michael van Elst
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src openpkg-web  Date:   01-Aug-2003 09:58:36
  Branch: HEAD Handle: 2003080108583401

  Modified files:
openpkg-src/gd  gd.spec
openpkg-web news.txt

  Log:
use our perl for bdftogd

  Summary:
RevisionChanges Path
1.55+6  -3  openpkg-src/gd/gd.spec
1.5976  +1  -0  openpkg-web/news.txt
  

  patch -p0 '@@ .'
  Index: openpkg-src/gd/gd.spec
  
  $ cvs diff -u -r1.54 -r1.55 gd.spec
  --- openpkg-src/gd/gd.spec25 Jul 2003 08:11:48 -  1.54
  +++ openpkg-src/gd/gd.spec1 Aug 2003 07:58:35 -   1.55
  @@ -33,7 +33,7 @@
   Group:Graphics
   License:  GPL
   Version:  2.0.15
  -Release:  20030725
  +Release:  20030801
   
   #   list of sources
   Source0:  http://www.boutell.com/gd/http/gd-%{version}.tar.gz
  @@ -42,8 +42,10 @@
   #   build information
   Prefix:   %{l_prefix}
   BuildRoot:%{l_buildroot}
  -BuildPreReq:  OpenPKG, openpkg = 20030709, png, zlib, jpeg, freetype
  -PreReq:   OpenPKG, openpkg = 20030709, png, zlib, jpeg, freetype
  +BuildPreReq:  OpenPKG, openpkg = 20030709
  +PreReq:   OpenPKG, openpkg = 20030709, perl
  +BuildPreReq:  png, zlib, jpeg, freetype
  +PreReq:   png, zlib, jpeg, freetype
   AutoReq:  no
   AutoReqProv:  no
   
  @@ -78,6 +80,7 @@
   --disable-shared
   %{l_shtool} subst -e 's;-LNONE;;' Makefile
   %{l_make} %{l_mflags}
  +%{l_shtool} subst -e 's;/usr/bin/perl;%{l_prefix}/bin/perl;' bdftogd
   
   %install
   rm -rf $RPM_BUILD_ROOT
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.5975 -r1.5976 news.txt
  --- openpkg-web/news.txt  1 Aug 2003 07:54:29 -   1.5975
  +++ openpkg-web/news.txt  1 Aug 2003 07:58:34 -   1.5976
  @@ -1,3 +1,4 @@
  +01-Aug-2003: Upgraded package: Pgd-2.0.15-20030801
   01-Aug-2003: Upgraded package: Patool-0.26.0-1.20030801
   01-Aug-2003: Upgraded package: Paegis-4.11-1.20030801
   01-Aug-2003: Upgraded package: Padns-1.0-1.20030801
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/gd/ gd.spec openpkg-src/perl-gd/ perl-gd.sp...

2003-07-09 Thread Ralf S. Engelschall
  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:   09-Jul-2003 10:23:42
  Branch: HEAD Handle: 2003070909233705

  Modified files:
openpkg-src/gd  gd.spec
openpkg-src/perl-gd perl-gd.spec
openpkg-src/perl-tk perl-tk.spec
openpkg-src/postfix postfix.spec
openpkg-src/scanssh scanssh.spec
openpkg-src/sendmailsendmail.spec
openpkg-src/subversion  subversion.spec
openpkg-src/transfigtransfig.spec
openpkg-src/xfigxfig.spec
openpkg-web news.txt

  Log:
switch to the syntax for %{l_cppflags} amd %{l_ldflags}

  Summary:
RevisionChanges Path
1.53+4  -4  openpkg-src/gd/gd.spec
1.55+3  -3  openpkg-src/perl-gd/perl-gd.spec
1.23+4  -4  openpkg-src/perl-tk/perl-tk.spec
1.149   +6  -6  openpkg-src/postfix/postfix.spec
1.23+4  -4  openpkg-src/scanssh/scanssh.spec
1.82+6  -6  openpkg-src/sendmail/sendmail.spec
1.20+4  -4  openpkg-src/subversion/subversion.spec
1.8 +6  -6  openpkg-src/transfig/transfig.spec
1.14+6  -6  openpkg-src/xfig/xfig.spec
1.5460  +8  -0  openpkg-web/news.txt
  

  patch -p0 '@@ .'
  Index: openpkg-src/gd/gd.spec
  
  $ cvs diff -u -r1.52 -r1.53 gd.spec
  --- openpkg-src/gd/gd.spec8 Jul 2003 14:39:39 -   1.52
  +++ openpkg-src/gd/gd.spec9 Jul 2003 08:23:38 -   1.53
  @@ -33,7 +33,7 @@
   Group:Graphics
   License:  GPL
   Version:  2.0.15
  -Release:  20030708
  +Release:  20030709
   
   #   list of sources
   Source0:  http://www.boutell.com/gd/http/gd-%{version}.tar.gz
  @@ -41,8 +41,8 @@
   #   build information
   Prefix:   %{l_prefix}
   BuildRoot:%{l_buildroot}
  -BuildPreReq:  OpenPKG, openpkg = 20030708, png, zlib, jpeg, freetype
  -PreReq:   OpenPKG, openpkg = 20030708, png, zlib, jpeg, freetype
  +BuildPreReq:  OpenPKG, openpkg = 20030709, png, zlib, jpeg, freetype
  +PreReq:   OpenPKG, openpkg = 20030709, png, zlib, jpeg, freetype
   AutoReq:  no
   AutoReqProv:  no
   
  @@ -63,7 +63,7 @@
   ) config.cache
   CC=%{l_cc} \
   CFLAGS=%{l_cflags -O} \
  -CPPFLAGS=%{l_cppflags +libpng -freetype2} \
  +CPPFLAGS=%{l_cppflags freetype2 . libpng} \
   LDFLAGS=%{l_ldflags} \
   LIBS=-lm \
   ./configure \
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-gd/perl-gd.spec
  
  $ cvs diff -u -r1.54 -r1.55 perl-gd.spec
  --- openpkg-src/perl-gd/perl-gd.spec  9 Jul 2003 07:03:24 -   1.54
  +++ openpkg-src/perl-gd/perl-gd.spec  9 Jul 2003 08:23:38 -   1.55
  @@ -62,8 +62,8 @@
   #   build information
   Prefix:   %{l_prefix}
   BuildRoot:%{l_buildroot}
  -BuildPreReq:  OpenPKG, openpkg = 20030708, perl, perl-openpkg, gd = 2.0.7
  -PreReq:   OpenPKG, openpkg = 20030708, perl, perl-openpkg, gd = 2.0.7
  +BuildPreReq:  OpenPKG, openpkg = 20030709, perl, perl-openpkg, gd = 2.0.7
  +PreReq:   OpenPKG, openpkg = 20030709, perl, perl-openpkg, gd = 2.0.7
   AutoReq:  no
   AutoReqProv:  no
   
  @@ -103,7 +103,7 @@
   #   build and install GD glue module
   ( cd GD-%{V_gd}
 (echo y; echo y) |\
  -  GD_INC=%{l_cppflags . -freetype2} \
  +  GD_INC=%{l_cppflags freetype2 .} \
 GD_LIBS=%{l_ldflags} -lfreetype \
 %{l_prefix}/bin/perl-openpkg install
   )
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-src/perl-tk/perl-tk.spec
  
  $ cvs diff -u -r1.22 -r1.23 perl-tk.spec
  --- openpkg-src/perl-tk/perl-tk.spec  8 Jul 2003 14:41:47 -   1.22
  +++ openpkg-src/perl-tk/perl-tk.spec  9 Jul 2003 08:23:39 -   1.23
  @@ -65,7 +65,7 @@
   Group:Language
   License:  GPL/Artistic
   Version:  20030609
  -Release:  20030708
  +Release:  20030709
   
   #   list of sources
   Source0:  http://www.cpan.org/modules/by-module/Tk/Tk-%{V_tk}.tar.gz
  @@ -102,8 +102,8 @@
   #   build information
   Prefix:   %{l_prefix}
   BuildRoot:%{l_buildroot}
  -BuildPreReq:  OpenPKG, openpkg = 20030708, perl, perl-openpkg, X11, tiff, jpeg, 
png, zlib
  -PreReq:   OpenPKG, openpkg = 20030708, perl, perl-openpkg, X11, tiff, jpeg, 
png, zlib
  +BuildPreReq:  OpenPKG, openpkg = 20030709, perl, perl-openpkg, X11, tiff, jpeg, 
png, zlib
  +PreReq:   OpenPKG, openpkg = 

[CVS] OpenPKG: openpkg-src/gd/ gd.spec openpkg-web/ news.txt

2003-07-08 Thread Ralf S. Engelschall
  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:   08-Jul-2003 14:19:30
  Branch: HEAD Handle: 2003070813192901

  Modified files:
openpkg-src/gd  gd.spec
openpkg-web news.txt

  Log:
modernize build flags

  Summary:
RevisionChanges Path
1.51+5  -5  openpkg-src/gd/gd.spec
1.5441  +1  -0  openpkg-web/news.txt
  

  patch -p0 '@@ .'
  Index: openpkg-src/gd/gd.spec
  
  $ cvs diff -u -r1.50 -r1.51 gd.spec
  --- openpkg-src/gd/gd.spec4 Jun 2003 09:14:56 -   1.50
  +++ openpkg-src/gd/gd.spec8 Jul 2003 12:19:30 -   1.51
  @@ -33,7 +33,7 @@
   Group:Graphics
   License:  GPL
   Version:  2.0.15
  -Release:  20030604
  +Release:  20030708
   
   #   list of sources
   Source0:  http://www.boutell.com/gd/http/gd-%{version}.tar.gz
  @@ -41,8 +41,8 @@
   #   build information
   Prefix:   %{l_prefix}
   BuildRoot:%{l_buildroot}
  -BuildPreReq:  OpenPKG, openpkg = 20020206, png, zlib, jpeg, freetype
  -PreReq:   OpenPKG, openpkg = 20020206, png, zlib, jpeg, freetype
  +BuildPreReq:  OpenPKG, openpkg = 20030708, png, zlib, jpeg, freetype
  +PreReq:   OpenPKG, openpkg = 20030708, png, zlib, jpeg, freetype
   AutoReq:  no
   AutoReqProv:  no
   
  @@ -63,8 +63,8 @@
   ) config.cache
   CC=%{l_cc} \
   CFLAGS=%{l_cflags -O} \
  -CPPFLAGS=-I%{l_prefix}/include/freetype2 %{l_cppflags} -I. 
-I%{l_prefix}/include/libpng \
  -LDFLAGS=%{l_ldflags} -L. \
  +CPPFLAGS=%{l_cppflags +libpng -freetype2} \
  +LDFLAGS=%{l_ldflags} \
   LIBS=-lm \
   ./configure \
   --cache-file=./config.cache \
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.5440 -r1.5441 news.txt
  --- openpkg-web/news.txt  8 Jul 2003 12:19:08 -   1.5440
  +++ openpkg-web/news.txt  8 Jul 2003 12:19:29 -   1.5441
  @@ -1,3 +1,4 @@
  +08-Jul-2003: Upgraded package: Pgd-2.0.15-20030708
   08-Jul-2003: Upgraded package: Popenpkg-20030708-20030708
   08-Jul-2003: Upgraded package: Pcfengine-2.0.7-20030708
   08-Jul-2003: Upgraded package: Pgnuplot-3.7.3-20030708
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/gd/ gd.spec openpkg-web/ news.txt

2003-06-04 Thread Ralf S. Engelschall
  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:   03-Jun-2003 17:43:51
  Branch: HEAD Handle: 2003060316435001

  Modified files:
openpkg-src/gd  gd.spec
openpkg-web news.txt

  Log:
gd 2.0 is now the only one gd

  Summary:
RevisionChanges Path
1.48+1  -3  openpkg-src/gd/gd.spec
1.4705  +1  -0  openpkg-web/news.txt
  

  patch -p0 '@@ .'
  Index: openpkg-src/gd/gd.spec
  
  $ cvs diff -u -r1.47 -r1.48 gd.spec
  --- openpkg-src/gd/gd.spec8 Apr 2003 15:29:48 -   1.47
  +++ openpkg-src/gd/gd.spec3 Jun 2003 15:43:51 -   1.48
  @@ -33,7 +33,7 @@
   Group:Graphics
   License:  GPL
   Version:  2.0.12
  -Release:  20030408
  +Release:  20030603
   
   #   list of sources
   Source0:  http://www.boutell.com/gd/http/gd-%{version}.tar.gz
  @@ -45,8 +45,6 @@
   PreReq:   OpenPKG, openpkg = 20020206, png, zlib, jpeg, freetype
   AutoReq:  no
   AutoReqProv:  no
  -Provides: GD
  -Conflicts:gd  2, gd = 3, gd1
   
   %description
   GD is a graphics library. It allows your code to quickly draw images
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.4704 -r1.4705 news.txt
  --- openpkg-web/news.txt  3 Jun 2003 12:11:18 -   1.4704
  +++ openpkg-web/news.txt  3 Jun 2003 15:43:50 -   1.4705
  @@ -1,3 +1,4 @@
  +03-Jun-2003: Upgraded package: Pgd-2.0.12-20030603
   03-Jun-2003: Upgraded package: Pghostscript-7.04-1.1.1
   03-Jun-2003: New package: Pgcc32-3.2.3-20030603
   03-Jun-2003: Upgraded package: Pgcc-3.3-20030603
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/gd/ gd.spec openpkg-web/ news.txt

2003-03-24 Thread Ralf S. Engelschall
  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:   24-Mar-2003 17:16:02
  Branch: HEAD Handle: 2003032416160001

  Modified files:
openpkg-src/gd  gd.spec
openpkg-web news.txt

  Log:
speclint police

  Summary:
RevisionChanges Path
1.45+2  -2  openpkg-src/gd/gd.spec
1.3799  +1  -0  openpkg-web/news.txt
  

  patch -p0 '@@ .'
  Index: openpkg-src/gd/gd.spec
  
  $ cvs diff -u -r1.44 -r1.45 gd.spec
  --- openpkg-src/gd/gd.spec17 Jan 2003 07:43:18 -  1.44
  +++ openpkg-src/gd/gd.spec24 Mar 2003 16:16:01 -  1.45
  @@ -33,7 +33,7 @@
   Group:Graphics
   License:  GPL
   Version:  2.0.11
  -Release:  20030117
  +Release:  20030324
   
   #   list of sources
   Source0:  http://www.boutell.com/gd/http/gd-%{version}.tar.gz
  @@ -43,10 +43,10 @@
   BuildRoot:%{l_buildroot}
   BuildPreReq:  OpenPKG, openpkg = 20020206, png, zlib, jpeg, freetype
   PreReq:   OpenPKG, openpkg = 20020206, png, zlib, jpeg, freetype
  -Conflicts:gd  2, gd = 3, gd1
   AutoReq:  no
   AutoReqProv:  no
   Provides: GD
  +Conflicts:gd  2, gd = 3, gd1
   
   %description
   GD is a graphics library. It allows your code to quickly draw images
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.3798 -r1.3799 news.txt
  --- openpkg-web/news.txt  24 Mar 2003 16:14:59 -  1.3798
  +++ openpkg-web/news.txt  24 Mar 2003 16:16:00 -  1.3799
  @@ -1,3 +1,4 @@
  +24-Mar-2003: Upgraded package: Pgd-2.0.11-20030324
   24-Mar-2003: Upgraded package: Pbind-9.2.2-20030324
   24-Mar-2003: Upgraded package: Pas-gui-0.7.2-20030324
   24-Mar-2003: Upgraded package: Pxds-0.9.0-20030324
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/gd/ gd.spec openpkg-web/ news.txt

2003-01-13 Thread Ralf S. Engelschall
  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:   13-Jan-2003 21:22:25
  Branch: HEAD Handle: 2003011320222301

  Modified files:
openpkg-src/gd  gd.spec
openpkg-web news.txt

  Log:
make sure it does not pick up freetype1 headers

  Summary:
RevisionChanges Path
1.42+2  -2  openpkg-src/gd/gd.spec
1.2700  +1  -0  openpkg-web/news.txt
  

  patch -p0 '@@ .'
  Index: openpkg-src/gd/gd.spec
  
  $ cvs diff -u -r1.41 -r1.42 gd.spec
  --- openpkg-src/gd/gd.spec12 Jan 2003 09:32:30 -  1.41
  +++ openpkg-src/gd/gd.spec13 Jan 2003 20:22:24 -  1.42
  @@ -33,7 +33,7 @@
   Group:Graphics
   License:  GPL
   Version:  2.0.9
  -Release:  20030112
  +Release:  20030113
   
   #   list of sources
   Source0:  http://www.boutell.com/gd/http/gd-%{version}.tar.gz
  @@ -65,7 +65,7 @@
   ) config.cache
   CC=%{l_cc} \
   CFLAGS=%{l_cflags -O} \
  -CPPFLAGS=%{l_cppflags} -I. -I%{l_prefix}/include/libpng 
-I%{l_prefix}/include/freetype2 \
  +CPPFLAGS=-I%{l_prefix}/include/freetype2 %{l_cppflags} -I. 
-I%{l_prefix}/include/libpng \
   LDFLAGS=%{l_ldflags} -L. \
   LIBS=-lm \
   ./configure \
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.2699 -r1.2700 news.txt
  --- openpkg-web/news.txt  13 Jan 2003 19:35:54 -  1.2699
  +++ openpkg-web/news.txt  13 Jan 2003 20:22:23 -  1.2700
  @@ -1,3 +1,4 @@
  +13-Jan-2003: Upgraded package: Pgd-2.0.9-20030113
   13-Jan-2003: Upgraded package: Ppatch-2.5.8-20030113
   13-Jan-2003: Upgraded package: Pemacs-21.2-20030113
   13-Jan-2003: Upgraded package: Pncurses-5.3.20030111-20030113
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]



[CVS] OpenPKG: openpkg-src/gd/ gd.spec openpkg-web/ news.txt

2003-01-12 Thread Ralf S. Engelschall
  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:   12-Jan-2003 10:32:30
  Branch: HEAD Handle: 2003011209322901

  Modified files:
openpkg-src/gd  gd.spec
openpkg-web news.txt

  Log:
Ops, with X11 is certainly wrong and also causes trouble on at least
Solaris 9

  Summary:
RevisionChanges Path
1.41+2  -2  openpkg-src/gd/gd.spec
1.2666  +1  -0  openpkg-web/news.txt
  

  patch -p0 '@@ .'
  Index: openpkg-src/gd/gd.spec
  
  $ cvs diff -u -r1.40 -r1.41 gd.spec
  --- openpkg-src/gd/gd.spec3 Jan 2003 10:52:04 -   1.40
  +++ openpkg-src/gd/gd.spec12 Jan 2003 09:32:30 -  1.41
  @@ -33,7 +33,7 @@
   Group:Graphics
   License:  GPL
   Version:  2.0.9
  -Release:  20021211
  +Release:  20030112
   
   #   list of sources
   Source0:  http://www.boutell.com/gd/http/gd-%{version}.tar.gz
  @@ -71,7 +71,7 @@
   ./configure \
   --cache-file=./config.cache \
   --prefix=%{l_prefix} \
  ---with-x \
  +--without-x \
   --with-png=%{l_prefix} \
   --with-freetype=%{l_prefix} \
   --with-jpeg=%{l_prefix} \
  @@ .
  patch -p0 '@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.2665 -r1.2666 news.txt
  --- openpkg-web/news.txt  12 Jan 2003 09:30:16 -  1.2665
  +++ openpkg-web/news.txt  12 Jan 2003 09:32:29 -  1.2666
  @@ -1,3 +1,4 @@
  +12-Jan-2003: Upgraded package: Pgd-2.0.9-20030112
   12-Jan-2003: Upgraded package: Pperl-xml-20030112-20030112
   12-Jan-2003: Upgraded package: Pghostscript-8.00-20030112
   12-Jan-2003: Upgraded package: Pgif2png-2.4.6-20030112
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]



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

2002-10-24 Thread Thomas Lotterer
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Thomas Lotterer
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src  Date:   24-Oct-2002 09:16:01
  Branch: HEAD Handle: 200210240816

  Modified files:
openpkg-src/gd  gd.spec

  Log:
inhibit use of --verbose

  Summary:
RevisionChanges Path
1.30+1  -0  openpkg-src/gd/gd.spec
  

  Index: openpkg-src/gd/gd.spec
  
  $ cvs diff -u -r1.29 -r1.30 gd.spec
  --- openpkg-src/gd/gd.spec24 Oct 2002 06:42:06 -  1.29
  +++ openpkg-src/gd/gd.spec24 Oct 2002 07:16:00 -  1.30
  @@ -74,6 +74,7 @@
   -e 's;$installCommands.*;;' \
   -e 's;$installPrefix;%{l_prefix};' \
   -e 's;sh \./install-item ;%{l_shtool} install -c -m ;' \
  +-e 's;--verbose; ;' \
   -e 's;\\\(.\);\1;g' \
   Makefile
   
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]