Update of /cvsroot/fink/experimental/dmrrsn
In directory sc8-pr-cvs17:/tmp/cvs-serv22490
Added Files:
irssi-10.5.info irssi-ssl-10.5.info irssi-ssl.patch
irssi.patch
Log Message:
versions for 10.5
--- NEW FILE: irssi-10.5.info ---
# DISCLAIMER: Max Horn is the sole maintainer of this package.
# Please DO NOT MAKE MODIFICATIONS without informing the maintainer.
# Preferably, send a patch to me instead of making changes yourself!
# If that is not possible due to extra urgency, at least send me a mail.
#
# Explanation: I am sick and tired of getting back to my packages and
# discovering that people have messed with it. I am then forced to
# retrace their steps, find out who, when and why did make a certain
# change etc. -- i.e. it makes my life as maintainer harder.
# Furthermore, as maintainer I am responsible for problems caused by my
# packages. But I am not willing to take responsibility for something I
# did not do. In particular, for changes that other people introduced
# behind my back, no matter how good and noble their intentions were. As
# such, I may see myself forced to drop responsibility for (and hence,
# maintainership of) the affected package.
Package: irssi
Version: 0.8.10a
Revision: 2012
Distribution: 10.5
Maintainer: Max Horn <[EMAIL PROTECTED]>
BuildDepends: <<
glib2-dev,
fink (>= 0.13.0-1),
libncurses5 (>= 5.4-20041023-1006),
pkgconfig,
libgettext3-dev,
libiconv-dev
<<
Depends: <<
glib2-shlibs,
libncurses5-shlibs (>= 5.4-20041023-1006),
libgettext3-shlibs,
libiconv,
perl588-core
<<
Conflicts: irssi-ssl
Replaces: irssi-ssl
Source: http://www.irssi.org/files/irssi-%v.tar.bz2
SourceDirectory: irssi-0.8.10
Source-MD5: 38e616bccb6a34ff6d91690317c2fa19
Patch: %n.patch
ConfigureParams: <<
--with-modules \
--with-ncurses=%p \
--with-proxy \
--enable-ipv6 \
--mandir=%i/share/man \
--with-perl-lib=%p/lib/perl5/5.8.8/darwin-thread-multi-2level \
--without-socks \
--disable-ssl
<<
#Type: perl 5.8.8
#UpdatePOD: true
CompileScript: <<
export ARCHFLAGS=""; ./configure %c
make perlpath=perl5.8.8
<<
InstallScript: <<
make install prefix=%i PREFIX=%i INSTALLPRIVLIB=%i/lib/perl5/5.8.8
INSTALLARCHLIB=%i/lib/perl5/5.8.8/darwin-thread-multi-2level
INSTALLSITELIB=%i/lib/perl5/5.8.8
INSTALLSITEARCH=%i/lib/perl5/5.8.8/darwin-thread-multi-2level
mkdir -p %i/share/podfiles/5.8.8
cat %i/lib/perl5/5.8.8/darwin-thread-multi-2level/perllocal.pod | sed -e
s,%i/lib/perl5,%p/lib/perl5, > %i/share/podfiles/5.8.8/perllocal.%n.pod
rm -rf %i/lib/perl5/5.8.8/darwin-thread-multi-2level/perllocal.pod
<<
PostInstScript: <<
# Updating %p/lib/perl5/darwin-thread-multi-2level/5.8.8/perllocal.pod
mkdir -p %p/lib/perl5/5.8.8/darwin-thread-multi-2level
cat %p/share/podfiles/5.8.8/*.pod >
%p/lib/perl5/5.8.8/darwin-thread-multi-2level/perllocal.pod
<<
PostRmScript: <<
# Updating %p/lib/perl5/5.8.8/darwin-thread-multi-2level/perllocal.pod
###
### check to see if any .pod files exist in %p/share/podfiles.
###
perl <<'END_PERL'
if (-e "%p/share/podfiles/5.8.8") {
@files = <%p/share/podfiles/5.8.8/*.pod>;
if ($#files >= 0) {
exec "cat %p/share/podfiles/5.8.8/*.pod >
%p/lib/perl5/5.8.8/darwin-thread-multi-2level/perllocal.pod";
}
}
END_PERL
<<
DocFiles: AUTHORS COPYING ChangeLog NEWS README TODO
Description: Modular IRC client
DescPackaging: <<
Update the podfiles manually, due to fink changes for Type: perl
Enabled IRC proxy support
<<
DescPort: <<
Patch memory leak in /quit
See http://bugs.irssi.org/index.php?do=details&id=369
<<
Homepage: http://www.irssi.org/
License: GPL
--- NEW FILE: irssi.patch ---
diff -ru irssi-0.8.9/configure irssi-0.8.9-patched/configure
--- irssi-0.8.9/configure 2003-12-11 00:23:05.000000000 +0100
+++ irssi-0.8.9-patched/configure 2004-07-15 22:03:59.000000000 +0200
@@ -23013,10 +23013,10 @@
if $search_ncurses
then
- if test -f $withval/include/ncurses.h
+ if test -f $withval/include/ncurses/ncurses.h
then
- echo "$as_me:$LINENO: result: Found ncurses on
$withval/include/ncurses.h" >&5
-echo "${ECHO_T}Found ncurses on $withval/include/ncurses.h" >&6
+ echo "$as_me:$LINENO: result: Found ncurses on
$withval/include/ncurses/ncurses.h" >&5
+echo "${ECHO_T}Found ncurses on $withval/include/ncurses/ncurses.h" >&6
CURSES_LIBS="-L$withval/lib -lncurses"
echo "$as_me:$LINENO: checking for initscr in -lncurses" >&5
--- irssi-0.8.10/src/irc/dcc/Backup/dcc.c.~1~ 2005-12-08 18:32:48.000000000
+0100
+++ irssi-0.8.10/src/irc/dcc/dcc.c 2006-01-17 08:51:35.000000000 +0100
@@ -58,8 +58,8 @@
pos = gslist_find_string(dcc_types, type);
if (pos != NULL) {
- dcc_types = g_slist_remove(dcc_types, pos->data);
g_free(pos->data);
+ dcc_types = g_slist_remove(dcc_types, pos->data);
}
}
--- NEW FILE: irssi-ssl.patch ---
diff -ru irssi-0.8.9/configure irssi-0.8.9-patched/configure
--- irssi-0.8.9/configure 2003-12-11 00:23:05.000000000 +0100
+++ irssi-0.8.9-patched/configure 2004-07-15 22:03:59.000000000 +0200
@@ -23013,10 +23013,10 @@
if $search_ncurses
then
- if test -f $withval/include/ncurses.h
+ if test -f $withval/include/ncurses/ncurses.h
then
- echo "$as_me:$LINENO: result: Found ncurses on
$withval/include/ncurses.h" >&5
-echo "${ECHO_T}Found ncurses on $withval/include/ncurses.h" >&6
+ echo "$as_me:$LINENO: result: Found ncurses on
$withval/include/ncurses/ncurses.h" >&5
+echo "${ECHO_T}Found ncurses on $withval/include/ncurses/ncurses.h" >&6
CURSES_LIBS="-L$withval/lib -lncurses"
echo "$as_me:$LINENO: checking for initscr in -lncurses" >&5
--- irssi-0.8.10/src/irc/dcc/Backup/dcc.c.~1~ 2005-12-08 18:32:48.000000000
+0100
+++ irssi-0.8.10/src/irc/dcc/dcc.c 2006-01-17 08:51:35.000000000 +0100
@@ -58,8 +58,8 @@
pos = gslist_find_string(dcc_types, type);
if (pos != NULL) {
- dcc_types = g_slist_remove(dcc_types, pos->data);
g_free(pos->data);
+ dcc_types = g_slist_remove(dcc_types, pos->data);
}
}
--- NEW FILE: irssi-ssl-10.5.info ---
# DISCLAIMER: Max Horn is the sole maintainer of this package.
# Please DO NOT MAKE MODIFICATIONS without informing the maintainer.
# Preferably, send a patch to me instead of making changes yourself!
# If that is not possible due to extra urgency, at least send me a mail.
#
# Explanation: I am sick and tired of getting back to my packages and
# discovering that people have messed with it. I am then forced to
# retrace their steps, find out who, when and why did make a certain
# change etc. -- i.e. it makes my life as maintainer harder.
# Furthermore, as maintainer I am responsible for problems caused by my
# packages. But I am not willing to take responsibility for something I
# did not do. In particular, for changes that other people introduced
# behind my back, no matter how good and noble their intentions were. As
# such, I may see myself forced to drop responsibility for (and hence,
# maintainership of) the affected package.
Package: irssi-ssl
Version: 0.8.10a
Revision: 2012
Distribution: 10.5
Maintainer: Max Horn <[EMAIL PROTECTED]>
BuildDepends: <<
openssl097-dev,
glib2-dev,
fink (>= 0.13.0-1),
libncurses5 (>= 5.4-20041023-1006),
pkgconfig,
libgettext3-dev,
libiconv-dev
<<
Depends: <<
openssl097-shlibs,
glib2-shlibs,
libncurses5-shlibs (>= 5.4-20041023-1006),
libgettext3-shlibs,
libiconv,
perl588-core
<<
Conflicts: irssi
Replaces: irssi
Source: http://www.irssi.org/files/irssi-%v.tar.bz2
SourceDirectory: irssi-0.8.10
Source-MD5: 38e616bccb6a34ff6d91690317c2fa19
Patch: %n.patch
ConfigureParams: <<
--with-modules \
--with-ncurses=%p \
--with-proxy \
--enable-ipv6 \
--mandir=%i/share/man \
--with-perl-lib=%p/lib/perl5/5.8.8/darwin-thread-multi-2level \
--with-socks \
--enable-ssl
<<
#Type: perl 5.8.8
#UpdatePOD: true
CompileScript: <<
export ARCHFLAGS=""; ./configure %c
make perlpath=perl5.8.8
<<
InstallScript: <<
make install prefix=%i PREFIX=%i INSTALLPRIVLIB=%i/lib/perl5/5.8.8
INSTALLARCHLIB=%i/lib/perl5/5.8.8/darwin-thread-multi-2level
INSTALLSITELIB=%i/lib/perl5/5.8.8
INSTALLSITEARCH=%i/lib/perl5/5.8.8/darwin-thread-multi-2level
mkdir -p %i/share/podfiles/5.8.8
cat %i/lib/perl5/5.8.8/darwin-thread-multi-2level/perllocal.pod | sed -e
s,%i/lib/perl5,%p/lib/perl5, > %i/share/podfiles/5.8.8/perllocal.%n.pod
rm -rf %i/lib/perl5/5.8.8/darwin-thread-multi-2level/perllocal.pod
<<
PostInstScript: <<
# Updating %p/lib/perl5/darwin-thread-multi-2level/5.8.8/perllocal.pod
mkdir -p %p/lib/perl5/5.8.8/darwin-thread-multi-2level
cat %p/share/podfiles/5.8.8/*.pod >
%p/lib/perl5/5.8.8/darwin-thread-multi-2level/perllocal.pod
<<
PostRmScript: <<
# Updating %p/lib/perl5/5.8.8/darwin-thread-multi-2level/perllocal.pod
###
### check to see if any .pod files exist in %p/share/podfiles.
###
perl <<'END_PERL'
if (-e "%p/share/podfiles/5.8.8") {
@files = <%p/share/podfiles/5.8.8/*.pod>;
if ($#files >= 0) {
exec "cat %p/share/podfiles/5.8.8/*.pod >
%p/lib/perl5/5.8.8/darwin-thread-multi-2level/perllocal.pod";
}
}
END_PERL
<<
DocFiles: AUTHORS COPYING ChangeLog NEWS README TODO
Description: Modular IRC client (with SSL)
DescPackaging: <<
Although this package has a GPL license, it is marked Restrictive since
it links to openssl.
Update the podfiles manually, due to fink changes for Type: perl
Enabled IRC proxy support
<<
DescPort: <<
Patch memory leak in /quit
See http://bugs.irssi.org/index.php?do=details&id=369
<<
Homepage: http://www.irssi.org/
License: Restrictive
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Fink-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fink-commits