Update of /cvsroot/fink/experimental/dmrrsn
In directory sc8-pr-cvs17:/tmp/cvs-serv9419
Added Files:
gaim-ssl.info gaim-ssl.patch gaim.info gaim.patch
Log Message:
experimental version
--- NEW FILE: gaim.patch ---
diff -ru gaim-0.81/ltmain.sh gaim-0.81-patched/ltmain.sh
--- gaim-0.81/ltmain.sh 2004-08-06 05:24:54.000000000 +0200
+++ gaim-0.81-patched/ltmain.sh 2004-08-15 13:17:32.000000000 +0200
@@ -2276,7 +2276,7 @@
{ test "$prefer_static_libs" = no || test -z "$old_library"; }; then
if test "$installed" = no; then
notinst_deplibs="$notinst_deplibs $lib"
- need_relink=yes
+ need_relink=no
fi
# This is a shared library
diff -ruN gaim-1.5.0/src/account.c gaim-1.5.0-patched/src/account.c
--- gaim-1.5.0/src/account.c 2005-06-17 06:08:51.000000000 -0700
+++ gaim-1.5.0-patched/src/account.c 2007-09-11 12:27:06.000000000 -0700
@@ -61,7 +61,7 @@
{
int integer;
char *string;
- gboolean bool;
+ gboolean bbool;
} value;
@@ -591,7 +591,7 @@
setting = g_new0(GaimAccountSetting, 1);
setting->type = GAIM_PREF_BOOLEAN;
- setting->value.bool = value;
+ setting->value.bbool = value;
g_hash_table_insert(account->settings, g_strdup(name), setting);
@@ -677,7 +677,7 @@
setting->type = GAIM_PREF_BOOLEAN;
setting->ui = g_strdup(ui);
- setting->value.bool = value;
+ setting->value.bbool = value;
table = get_ui_settings_table(account, ui);
@@ -855,7 +855,7 @@
g_return_val_if_fail(setting->type == GAIM_PREF_BOOLEAN, default_value);
- return setting->value.bool;
+ return setting->value.bbool;
}
int
@@ -921,7 +921,7 @@
g_return_val_if_fail(setting->type == GAIM_PREF_BOOLEAN, default_value);
- return setting->value.bool;
+ return setting->value.bbool;
}
GaimLog *
@@ -1031,7 +1031,7 @@
data->setting_type = GAIM_PREF_STRING;
else if (!strcmp(value, "int"))
data->setting_type = GAIM_PREF_INT;
- else if (!strcmp(value, "bool"))
+ else if (!strcmp(value, "bbool"))
data->setting_type = GAIM_PREF_BOOLEAN;
}
}
@@ -1275,7 +1275,7 @@
}
else if (setting->type == GAIM_PREF_BOOLEAN) {
fprintf(fp, " <setting name='%s' type='bool'>%d</setting>\n",
- name, setting->value.bool);
+ name, setting->value.bbool);
}
}
--- NEW FILE: gaim-ssl.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: gaim-ssl
Version: 1.5.0
Revision: 1016
BuildDependsOnly: False
Maintainer: Max Horn <[EMAIL PROTECTED]>
BuildDepends: <<
aspell-dev (>= 0.50.5-1002),
atk1,
audiofile,
fink (>= 0.24.12),
gettext-bin,
libgettext3-dev,
gettext-tools,
glib2-dev (>= 2.12.0-1),
gnutls12,
gtk+2-dev,
gtkspell2-dev (>= 2.0.4-1),
libao2,
libgcrypt,
libgpg-error,
libiconv-dev,
pango1-xft2-dev,
pkgconfig,
pth,
startup-notification-dev,
x11-dev
<<
Depends: <<
audiofile-shlibs,
gnutls12-shlibs,
gtk+2-shlibs,
gtkspell2-shlibs (>= 2.0.4-1),
libao2-shlibs,
pango1-xft2,
startup-notification-shlibs
<<
Conflicts: gaim
Replaces: gaim
Source: mirror:sourceforge:gaim/gaim-%v.tar.bz2
Source-MD5: 9205321ac11fad271c90f2f0d7c5e7ce
PatchFile: %n.patch
PatchFile-MD5: 2bbff3c5515ecaa04fb6dfe4cb41bac6
ConfigureParams: <<
--mandir=%p/share/man \
--disable-perl \
--disable-dependency-tracking \
--enable-gnutls=yes \
--enable-nss=no
<<
InstallScript: make install DESTDIR=%d
SetCFlags: -O
DocFiles: <<
AUTHORS COPYING ChangeLog HACKING NEWS README
doc/CREDITS doc/FAQ doc/*.txt
<<
Description: Instant Messaging client (with SSL)
DescDetail: <<
Gaim is a clone of AOL's Instant Messenger client. It features
nearly all of the functionality of the official AIM client while
also being smaller and faster. Gaim also has plugins that let
you use ICQ, Yahoo, MSN, IRC, Jabber, Napster, and Zephyr.
<<
DescPort: <<
Had to set the optimizations down from -O2 to -O to work around an Apple gcc3
bug.
<<
DescPackaging: <<
BuildDependsOnly is false because plugins may need the headers.
<<
Homepage: http://gaim.sourceforge.net/
License: GPL
--- NEW FILE: gaim.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: gaim
Version: 1.5.0
Revision: 1016
BuildDependsOnly: False
Maintainer: Max Horn <[EMAIL PROTECTED]>
BuildDepends: <<
aspell-dev (>= 0.50.5-1002),
atk1,
audiofile,
fink (>= 0.24.12),
gettext-bin,
libgettext3-dev,
gettext-tools,
glib2-dev (>= 2.12.0-1),
gtk+2-dev,
gtkspell2-dev (>= 2.0.4-1),
libao2,
libiconv-dev,
pango1-xft2-dev,
pkgconfig,
startup-notification-dev,
x11-dev
<<
Depends: <<
audiofile-shlibs,
gtk+2-shlibs,
gtkspell2-shlibs (>= 2.0.4-1),
libao2-shlibs,
pango1-xft2,
startup-notification-shlibs
<<
Conflicts: gaim-ssl
Replaces: gaim-ssl
Source: mirror:sourceforge:gaim/gaim-%v.tar.bz2
Source-MD5: 9205321ac11fad271c90f2f0d7c5e7ce
PatchFile: %n.patch
PatchFile-MD5: 2bbff3c5515ecaa04fb6dfe4cb41bac6
ConfigureParams: <<
--mandir=%p/share/man \
--disable-perl \
--disable-dependency-tracking \
--enable-gnutls=no \
--enable-nss=no
<<
InstallScript: make install DESTDIR=%d
SetCFlags: -O
DocFiles: <<
AUTHORS COPYING ChangeLog HACKING NEWS README
doc/CREDITS doc/FAQ doc/*.txt
<<
Description: Instant Messaging client
DescDetail: <<
Gaim is a clone of AOL's Instant Messenger client. It features
nearly all of the functionality of the official AIM client while
also being smaller and faster. Gaim also has plugins that let
you use ICQ, Yahoo, MSN, IRC, Jabber, Napster, and Zephyr.
MSN is disabled in this non-SSL version. Use gaim-ssl if you want
to use your MSN accounts.
<<
DescPort: <<
Had to set the optimizations down from -O2 to -O to work around an Apple gcc3
bug.
<<
DescPackaging: <<
BuildDependsOnly is false because plugins may need the headers.
<<
Homepage: http://gaim.sourceforge.net/
License: GPL
--- NEW FILE: gaim-ssl.patch ---
diff -ru gaim-0.81/ltmain.sh gaim-0.81-patched/ltmain.sh
--- gaim-0.81/ltmain.sh 2004-08-06 05:24:54.000000000 +0200
+++ gaim-0.81-patched/ltmain.sh 2004-08-15 13:17:32.000000000 +0200
@@ -2276,7 +2276,7 @@
{ test "$prefer_static_libs" = no || test -z "$old_library"; }; then
if test "$installed" = no; then
notinst_deplibs="$notinst_deplibs $lib"
- need_relink=yes
+ need_relink=no
fi
# This is a shared library
diff -ruN gaim-1.5.0/src/account.c gaim-1.5.0-patched/src/account.c
--- gaim-1.5.0/src/account.c 2005-06-17 06:08:51.000000000 -0700
+++ gaim-1.5.0-patched/src/account.c 2007-09-11 12:27:06.000000000 -0700
@@ -61,7 +61,7 @@
{
int integer;
char *string;
- gboolean bool;
+ gboolean bbool;
} value;
@@ -591,7 +591,7 @@
setting = g_new0(GaimAccountSetting, 1);
setting->type = GAIM_PREF_BOOLEAN;
- setting->value.bool = value;
+ setting->value.bbool = value;
g_hash_table_insert(account->settings, g_strdup(name), setting);
@@ -677,7 +677,7 @@
setting->type = GAIM_PREF_BOOLEAN;
setting->ui = g_strdup(ui);
- setting->value.bool = value;
+ setting->value.bbool = value;
table = get_ui_settings_table(account, ui);
@@ -855,7 +855,7 @@
g_return_val_if_fail(setting->type == GAIM_PREF_BOOLEAN, default_value);
- return setting->value.bool;
+ return setting->value.bbool;
}
int
@@ -921,7 +921,7 @@
g_return_val_if_fail(setting->type == GAIM_PREF_BOOLEAN, default_value);
- return setting->value.bool;
+ return setting->value.bbool;
}
GaimLog *
@@ -1031,7 +1031,7 @@
data->setting_type = GAIM_PREF_STRING;
else if (!strcmp(value, "int"))
data->setting_type = GAIM_PREF_INT;
- else if (!strcmp(value, "bool"))
+ else if (!strcmp(value, "bbool"))
data->setting_type = GAIM_PREF_BOOLEAN;
}
}
@@ -1275,7 +1275,7 @@
}
else if (setting->type == GAIM_PREF_BOOLEAN) {
fprintf(fp, " <setting name='%s' type='bool'>%d</setting>\n",
- name, setting->value.bool);
+ name, setting->value.bbool);
}
}
-------------------------------------------------------------------------
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