view gaim2blt.pl @ 8217:423453c1cf2b

[gaim-migrate @ 8940] " Many years ago MIT kerberos changed the variable krb_err_base to ERROR_TABLE_BASE_krb (of consistency reasons I suppose). MIT still support krb_err_base as well, while kth-krb don't. This tiny patch makes gaim compile with kth-krb. It only affects *very* old MIT kerberos installations badly ()." -- M?rten Svantesson "It looks reasonable enough. ERROR_TABLE_BASE_krb existed as far back as 1988 :-)" --Arun A Tharuvai (the normal zepher patch provider) committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sat, 07 Feb 2004 17:40:57 +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