view gaim2blt.pl @ 8034:b068791d7635

[gaim-migrate @ 8714] The Dead Body That Claims It Isn't: I'm not dead! Collector: What? Large Man with Dead Body: Nothing. There's your ninepence. The Dead Body That Claims It Isn't: I'm not dead! Collector: 'Ere, he says he's not dead. LM w/ DB: Yes he is. The DB That CII: I'm not! Collector: He isn't. LM w/ DB: Well, he will be soon, he's very ill. The DB That CII: I'm getting better! committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Wed, 07 Jan 2004 06:20:19 +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