Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/skype/README

    r0a7a7e9 r83c246e  
    5858connects to Skype, finally BitlBee can connect to `skyped`.
    5959
    60 === Installing
    61 
    62 Either use your package manager to install the Skype plugin, using something
    63 like:
     60=== Installing under Frugalware or Debian
     61
     62- Install the necessary packages:
     63
     64----
     65# pacman-g2 -S bitlbee-skype
     66----
     67
     68or
    6469
    6570----
     
    6772----
    6873
    69 Or install http://sourceforge.net/projects/skype4py/[Skype4Py], and build
    70 BitlBee with `--skype=1`.
     74(the later from the unstable repo)
     75
     76and you don't have to compile anything manually.
     77
     78=== Installing under OS X
     79
     80- Install the necessary packages from ports:
     81
     82NOTE: You have to edit the Portfile manually to include the install-dev target,
     83just append install-dev after install-etc.
     84
     85----
     86# port -v install bitlbee
     87----
     88
     89and you have to install `bitlbee-skype` and `skype4py` from
     90source.
     91
     92=== Installing from source
     93
     94NOTE: bitlbee-skype by default builds and installs skyped and the
     95plugin. In case you just want to install the plugin for a public server
     96or you want to use skyped with a public server (like
     97`bitlbee1.asnetinc.net`), you don't need both.
     98
     99- You need the latest stable BitlBee release (unless you want to use a
     100  public server):
     101
     102----
     103$ wget http://get.bitlbee.org/src/bitlbee-@BITLBEE_VERSION@.tar.gz
     104$ tar xf bitlbee-@BITLBEE_VERSION@.tar.gz
     105$ cd bitlbee-@BITLBEE_VERSION@
     106----
     107
     108- Now compile and install it:
     109
     110----
     111$ ./configure
     112$ make
     113# make install install-dev
     114----
     115
     116- To install http://skype4py.sourceforge.net/[Skype4Py] from source
     117  (unless you want to install the plugin for a public server):
     118
     119----
     120$ tar -zxvf Skype4Py-x.x.x.x.tar.gz
     121$ cd Skype4Py-x.x.x.x
     122# python setup.py install
     123----
     124
     125- Get the plugin code (in an empty dir, or whereever you want, it does
     126  not matter):
     127
     128----
     129$ wget http://vmiklos.hu/project/bitlbee-skype/bitlbee-skype-@VERSION@.tar.gz
     130$ tar xf bitlbee-skype-@VERSION@.tar.gz
     131$ cd bitlbee-skype-@VERSION@
     132----
     133
     134- Compile and install it:
     135
     136----
     137$ ./configure
     138$ make
     139# make install
     140----
     141
     142This will install the plugin to where BitlBee expects them, which is
     143`/usr/local/lib/bitlbee` if you installed BitlBee from source.
    71144
    72145=== Configuring
Note: See TracChangeset for help on using the changeset viewer.