view gaim2blt.pl @ 10466:151498407e23

[gaim-migrate @ 11744] sf patch #1094369, from Kevin Stange "This change to internal.h fixes the fact that glib seems to provide the wrong printf formatting for gint64/guint64 integers. It's kinda nasty, but it eliminates some warnings compiling the MSN stuff that uses guint64s. This can be applied to both HEAD and oldstatus. I am going to have to look into why glib (or something) sets G_GINT64_MODIFIER to capital 'I' because that isn't a valid formatting character. At least not in gcc 3.3..." committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sun, 02 Jan 2005 17:38:05 +0000
parents 66bf7ecefedd
children
line wrap: on
line source

#!/usr/bin/perl -w
# Original by Andy Harrison,
# Rewrite by Decklin Foster,
# Available under the GPL.

package Gaim2Blt;
use strict;
use Getopt::Std;
use vars qw(%opts $in_group);

getopts('s:', \%opts);
die "usage: $0 -s 'screen name' gaim.buddy\n" unless $opts{s};

print <<"EOF";
Config {
  version 1
}
User {
  screenname "$opts{s}"
}
Buddy {
  list {
EOF

while (<>) {
    chomp;
    my ($type, $args) = split ' ', $_, 2;
    next unless $type;

    if ($type eq 'g') {
        print "    }\n" if ($in_group);
        print qq(    "$args" {\n);
        $in_group = 1;
    } elsif ($type eq 'b') {
        my ($buddy, $alias) = split /:/, $args;
        print qq(      "$buddy"\n);
    }
}

print <<"EOF";
    }
  }
}
EOF