[CVS] OpenPKG: openpkg-src/giflib/ giflib.patch giflib.spec
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: 12-Sep-2006 08:41:09 Branch: HEAD Handle: 2006091207410800 Added files: openpkg-src/giflib giflib.patch Modified files: openpkg-src/giflib giflib.spec Log: fix Autoconf feature tests (this indirectly fixes the building under Solaris 9) Summary: RevisionChanges Path 1.1 +20 -0 openpkg-src/giflib/giflib.patch 1.27+10 -2 openpkg-src/giflib/giflib.spec patch -p0 <<'@@ .' Index: openpkg-src/giflib/giflib.patch $ cvs diff -u -r0 -r1.1 giflib.patch --- /dev/null 2006-09-12 08:38:59 +0200 +++ giflib.patch 2006-09-12 08:41:08 +0200 @@ -0,0 +1,20 @@ +Index: configure.ac +--- configure.ac.orig2005-10-10 08:22:20.0 +0200 configure.ac 2006-09-12 08:32:26.472978472 +0200 +@@ -59,14 +59,14 @@ + + dnl Find a way to define a 32 bit integer + foundint=no +-AC_CHECK_HEADERS([sys/types.h], [ ++AC_CHECK_TYPES([u_int32_t], [ + AC_DEFINE([UINT32], u_int32_t, + [Set to an unsigned 32 bit integer available on this system]) + foundint=yes] + ) + + if test x$foundint != x'yes'; then +-AC_CHECK_HEADERS([stdint.h], [ ++AC_CHECK_TYPES([uint32_t], [ + AC_DEFINE([UINT32], uint32_t, + [Set to an unsigned 32 bit integer available on this system]) + foundint=yes] @@ . patch -p0 <<'@@ .' Index: openpkg-src/giflib/giflib.spec $ cvs diff -u -r1.26 -r1.27 giflib.spec --- openpkg-src/giflib/giflib.spec24 May 2006 18:51:38 - 1.26 +++ openpkg-src/giflib/giflib.spec12 Sep 2006 06:41:08 - 1.27 @@ -38,7 +38,7 @@ Group:Graphics License: LGPL Version: %{V_main} -Release: 20060524 +Release: 20060912 # package options %option with_tools no @@ -46,11 +46,12 @@ # list of sources Source0: http://switch.dl.sourceforge.net/sourceforge/libungif/giflib-%{V_giflib}.tar.gz Source1: http://switch.dl.sourceforge.net/sourceforge/libungif/libungif-%{V_libungif}.tar.gz +Patch0: giflib.patch # build information Prefix: %{l_prefix} BuildRoot:%{l_buildroot} -BuildPreReq: OpenPKG, openpkg >= 20040130, gcc +BuildPreReq: OpenPKG, openpkg >= 20040130, gcc, autoconf PreReq: OpenPKG, openpkg >= 20040130 AutoReq: no AutoReqProv: no @@ -77,10 +78,17 @@ %prep %setup -q -c %setup -q -T -D -a 1 +%patch -p0 -d giflib-%{V_giflib} %build ( cd giflib-%{V_giflib} + %{l_prefix}/bin/autoconf + %{l_prefix}/bin/autoheader echo "ac_cv_lib_X11_main=no" >config.cache + AUTOCONF="true" \ + AUTOHEADER="true" \ + AUTOMAKE="true" \ + ACLOCAL="true" \ CC="%{l_cc}" \ CFLAGS="%{l_cflags -O}" \ ./configure \ @@ . __ The OpenPKG Projectwww.openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/perl-sys/ perl-sys.spec
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: 12-Sep-2006 08:27:08 Branch: HEAD Handle: 2006091207270800 Modified files: openpkg-src/perl-sysperl-sys.spec Log: add optional Authen::PAM support Summary: RevisionChanges Path 1.156 +24 -1 openpkg-src/perl-sys/perl-sys.spec patch -p0 <<'@@ .' Index: openpkg-src/perl-sys/perl-sys.spec $ cvs diff -u -r1.155 -r1.156 perl-sys.spec --- openpkg-src/perl-sys/perl-sys.spec4 Sep 2006 14:11:38 - 1.155 +++ openpkg-src/perl-sys/perl-sys.spec12 Sep 2006 06:27:08 - 1.156 @@ -39,6 +39,7 @@ %define V_file_tail 0.99.3 %define V_freezethaw 0.43 %define V_authen_sasl 2.10 +%define V_authen_pam 0.16 %define V_weakref 0.01 %define V_filehandle_deluxe 0.92 %define V_filehandle_rollback 1.05 @@ -65,7 +66,10 @@ Group:Language License: GPL/Artistic Version: %{V_perl} -Release: 20060904 +Release: 20060912 + +# package options +%option with_pam no # list of sources Source0: http://www.cpan.org/modules/by-module/Unix/Unix-Syslog-%{V_unix_syslog}.tar.gz @@ -97,6 +101,7 @@ Source26: http://www.cpan.org/modules/by-module/IPC/IPC-Run3-%{V_ipc_run3}.tar.gz Source27: http://www.cpan.org/modules/by-module/IO/IO-Mux-%{V_io_mux}.tar.gz Source28: http://www.cpan.org/modules/by-module/File/File-FnMatch-%{V_file_fnmatch}.tar.gz +Source29: http://www.cpan.org/modules/by-module/Authen/Authen-PAM-%{V_authen_pam}.tar.gz # build information Prefix: %{l_prefix} @@ -105,6 +110,10 @@ PreReq: OpenPKG, openpkg >= 20040130, perl >= %{V_perl} BuildPreReq: perl-time, perl-term PreReq: perl-time, perl-term +%if "%{with_pam}" == "yes" +BuildPreReq: PAM +PreReq: PAM +%endif AutoReq: no AutoReqProv: no @@ -124,6 +133,7 @@ - File::Tail (%{V_file_tail}) - FreezeThaw (%{V_freezethaw}) - Authen::SASL (%{V_authen_sasl}) +- Authen::PAM (%{V_authen_pam}) [with_pam=yes] - Archive::Zip (%{V_archive_zip}) - WeakRef (%{V_weakref}) - FileHandle::Deluxe (%{V_filehandle_deluxe}) @@ -286,6 +296,11 @@ url = http://www.cpan.org/modules/by-module/File/ regex = File-FnMatch-(__VER__)\.tar\.gz } +prog perl-sys:Authen-PAM = { +version = %{V_authen_pam} +url = http://www.cpan.org/modules/by-module/Authen/ +regex = Authen-PAM-(__VER__)\.tar\.gz +} %prep %setup -q -c @@ -317,6 +332,7 @@ %setup -q -T -D -a 26 %setup -q -T -D -a 27 %setup -q -T -D -a 28 +%setup -q -T -D -a 29 %build @@ -352,6 +368,13 @@ %{l_prefix}/bin/perl-openpkg -d %{SOURCE26} configure build install %{l_prefix}/bin/perl-openpkg -d %{SOURCE27} configure build install %{l_prefix}/bin/perl-openpkg -d %{SOURCE28} configure build install +%if "%{with_pam}" == "yes" +export CC="%{l_cc}" +export CFLAGS="%{l_cflags} -I`%{l_rc} --query pam_incdir`" +export CPPFLAGS="%{l_cppflags} -I`%{l_rc} --query pam_incdir`" +export LDFLAGS="%{l_ldflags} -L`%{l_rc} --query pam_libdir`" +%{l_prefix}/bin/perl-openpkg -d %{SOURCE29} configure build install +%endif %{l_prefix}/bin/perl-openpkg -F perl-openpkg-files fixate cleanup %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std} `cat perl-openpkg-files` @@ . __ The OpenPKG Projectwww.openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/pound/ pound.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Christoph Schug Root: /v/openpkg/cvs Email: [EMAIL PROTECTED] Module: openpkg-src Date: 12-Sep-2006 07:32:54 Branch: HEAD Handle: 2006091206325200 Modified files: openpkg-src/pound pound.spec Log: upgrading package: pound 2.1 -> 2.1.1 Summary: RevisionChanges Path 1.57+2 -2 openpkg-src/pound/pound.spec patch -p0 <<'@@ .' Index: openpkg-src/pound/pound.spec $ cvs diff -u -r1.56 -r1.57 pound.spec --- openpkg-src/pound/pound.spec 25 Aug 2006 19:18:34 - 1.56 +++ openpkg-src/pound/pound.spec 12 Sep 2006 05:32:52 - 1.57 @@ -32,8 +32,8 @@ Class:EVAL Group:Web License: GPL -Version: 2.1 -Release: 20060825 +Version: 2.1.1 +Release: 20060912 # package options %option with_fsl yes @@ . __ The OpenPKG Projectwww.openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/asterisk/ asterisk.txt
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: 11-Sep-2006 19:43:25 Branch: HEAD Handle: 2006091118432500 Modified files: openpkg-src/asteriskasterisk.txt Log: fix dialplan Summary: RevisionChanges Path 1.8 +1 -1 openpkg-src/asterisk/asterisk.txt patch -p0 <<'@@ .' Index: openpkg-src/asterisk/asterisk.txt $ cvs diff -u -r1.7 -r1.8 asterisk.txt --- openpkg-src/asterisk/asterisk.txt 8 Sep 2006 16:51:44 - 1.7 +++ openpkg-src/asterisk/asterisk.txt 11 Sep 2006 17:43:25 - 1.8 @@ -196,7 +196,7 @@ exten = s,1,Dial(${ARG1},${ARG2},j${ARG3}) exten = s,n,Goto(s-${DIALSTATUS},1) exten = s-BUSY,1,Voicemail(u${ARG1}) -exten = s-BUSY,1,Busy +exten = s-BUSY,2,Busy exten = s-CANCEL,1,Busy exten = s-ANSWER,1,Hangup exten = s-NOANSWER,1,Hangup @@ . __ The OpenPKG Projectwww.openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/ngircd/ ngircd.spec
OpenPKG CVS Repository http://cvs.openpkg.org/ Server: cvs.openpkg.org Name: Christoph Schug Root: /v/openpkg/cvs Email: [EMAIL PROTECTED] Module: openpkg-src Date: 11-Sep-2006 16:48:12 Branch: HEAD Handle: 2006091115481100 Modified files: openpkg-src/ngircd ngircd.spec Log: upgrading package: ngircd 0.10.0pre1 -> 0.10.0pre2 Summary: RevisionChanges Path 1.11+3 -3 openpkg-src/ngircd/ngircd.spec patch -p0 <<'@@ .' Index: openpkg-src/ngircd/ngircd.spec $ cvs diff -u -r1.10 -r1.11 ngircd.spec --- openpkg-src/ngircd/ngircd.spec25 Aug 2006 19:17:44 - 1.10 +++ openpkg-src/ngircd/ngircd.spec11 Sep 2006 14:48:11 - 1.11 @@ -23,8 +23,8 @@ ## # package version -%define V_opkg 0.10.0pre1 -%define V_dist 0.10.0-pre1 +%define V_opkg 0.10.0pre2 +%define V_dist 0.10.0-pre2 # package information Name: ngircd @@ -37,7 +37,7 @@ Group:Network License: GNU Version: %{V_opkg} -Release: 20060825 +Release: 20060911 # package options %option with_fsl yes @@ . __ The OpenPKG Projectwww.openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org
[CVS] OpenPKG: openpkg-src/asterisk/ asterisk.patch asterisk.spec
--- frame.c.orig 2006-07-31 06:06:16 +0200 -+++ frame.c 2006-09-09 19:28:53 +0200 frame.c 2006-09-11 10:25:27 +0200 @@ -1055,7 +1055,7 @@ { switch(buf & TYPE_MASK) { @@ -505,7 +536,7 @@ return 4; Index: funcs/Makefile --- funcs/Makefile.orig 2005-11-29 19:24:39 +0100 -+++ funcs/Makefile 2006-09-09 19:28:53 +0200 funcs/Makefile 2006-09-11 10:25:27 +0200 @@ -40,9 +40,7 @@ CFLAGS+=-fPIC endif @@ -519,7 +550,7 @@ Index: funcs/func_strings.c --- funcs/func_strings.c.orig2006-03-21 18:45:56 +0100 -+++ funcs/func_strings.c 2006-09-09 19:30:57 +0200 funcs/func_strings.c 2006-09-11 10:25:27 +0200 @@ -169,7 +169,7 @@ epochi = tv.tv_sec; } @@ -531,7 +562,7 @@ format = "%c"; Index: pbx/Makefile --- pbx/Makefile.orig2005-11-29 19:24:39 +0100 -+++ pbx/Makefile 2006-09-09 19:28:53 +0200 pbx/Makefile 2006-09-11 10:25:27 +0200 @@ -14,9 +14,7 @@ PBX_LIBS=pbx_config.so pbx_spool.so pbx_dundi.so pbx_loopback.so pbx_realtime.so \ pbx_ael.so @@ -545,7 +576,7 @@ #PBX_LIBS+=$(shell $(CROSS_COMPILE_BIN)gtk-config --cflags >/dev/null 2>/dev/null && echo "pbx_gtkconsole.so") Index: res/Makefile --- res/Makefile.orig2005-11-29 19:24:39 +0100 -+++ res/Makefile 2006-09-09 19:28:53 +0200 res/Makefile 2006-09-11 10:25:27 +0200 @@ -36,10 +36,8 @@ endif endif @@ -561,7 +592,7 @@ CYGSOLINK=-Wl,[EMAIL PROTECTED] -Wl,--export-all-symbols Index: res/res_features.c --- res/res_features.c.orig 2006-08-02 01:07:06 +0200 -+++ res/res_features.c 2006-09-09 19:28:53 +0200 res/res_features.c 2006-09-11 10:25:27 +0200 @@ -505,13 +505,13 @@ if (touch_monitor) { len = strlen(touch_monitor) + 50; @@ -580,7 +611,7 @@ for( x = 0; x < strlen(args); x++) Index: rtp.c --- rtp.c.orig 2006-09-01 19:35:06 +0200 -+++ rtp.c2006-09-09 19:28:53 +0200 rtp.c2006-09-11 10:25:27 +0200 @@ -962,8 +962,10 @@ rtp->us.sin_port = htons(x); rtp->us.sin_addr = addr; @@ -595,7 +626,7 @@ (!rtp->rtcp || !bind(rtp->rtcp->s, (struct sockaddr *)&rtp->rtcp->us, sizeof(rtp->rtcp->us Index: say.c --- say.c.orig 2005-11-29 19:24:39 +0100 -+++ say.c2006-09-09 19:28:53 +0200 say.c2006-09-11 10:25:27 +0200 @@ -3133,7 +3133,7 @@ time_t beg_today; @@ -787,7 +818,7 @@ beg_today = now.tv_sec - (tmnow.tm_hour * 3600) - (tmnow.tm_min * 60) - (tmnow.tm_sec); Index: utils.c --- utils.c.orig 2006-07-12 15:54:10 +0200 -+++ utils.c 2006-09-09 19:28:53 +0200 utils.c 2006-09-11 10:25:27 +0200 @@ -58,7 +58,10 @@ static char base64[64]; static char b2a[256]; @@ -802,7 +833,7 @@ #define ERANGE 34 Index: utils/Makefile --- utils/Makefile.orig 2005-11-29 19:24:39 +0100 -+++ utils/Makefile 2006-09-09 19:28:53 +0200 utils/Makefile 2006-09-11 10:25:27 +0200 @@ -16,17 +16,15 @@ # CFLAGS+=-DNO_AST_MM @@ . patch -p0 <<'@@ .' Index: openpkg-src/asterisk/asterisk.spec $ cvs diff -u -r1.8 -r1.9 asterisk.spec --- openpkg-src/asterisk/asterisk.spec9 Sep 2006 16:37:10 - 1.8 +++ openpkg-src/asterisk/asterisk.spec11 Sep 2006 08:32:18 - 1.9 @@ -40,7 +40,7 @@ Group:Network License: GPL Version: %{V_asterisk} -Release: 20060909 +Release: 20060911 # list of sources Source0: ftp://ftp.digium.com/pub/asterisk/releases/asterisk-%{V_asterisk}.tar.gz @@ . __ The OpenPKG Projectwww.openpkg.org CVS Repository Commit List openpkg-cvs@openpkg.org