Changes between Version 8 and Version 9 of Installing/FreeBSD


Ignore:
Timestamp:
10/01/2014 11:51:07 AM (10 years ago)
Author:
Cas
Comment:

remove old 1.1 instructions

Legend:

Unmodified
Added
Removed
Modified
  • Installing/FreeBSD

    v8 v9  
    3434 
    3535 
    36 == Manual installation (Outdated v1.1.x) == 
    37  
    38 To install Deluge in FreeBSD it is similar to doing it from source. This example will be pulling from the 1.1.0_RC branch. First you need subversion for svn access: 
    39  
    40 {{{ 
    41 cd /usr/ports/devel/subversion; make install clean 
    42 }}} 
    43  
    44 Before you get other dependencies, you need to compile boost with python support. Do not use devel/boost-python, for some reason this doesn't work. We will compile boost manually like this: 
    45  
    46 {{{ 
    47 cd /usr/ports/devel/boost; make -DWITH_PYTHON install clean 
    48 }}} 
    49  
    50 Note that "-DWITH_PYTHON" is essential here. 
    51  
    52 There are several other dependencies that need to be met as well including Python and other libraries. If you have the portinstall package installed you can do: 
    53  
    54 {{{ 
    55 portinstall python25 py-setuptools py-xdg py-gobject py-gtk2 librsvg2 
    56 }}} 
    57  
    58 or 
    59  
    60 {{{ 
    61 cd /usr/ports/devel/python25; make install clean; 
    62 cd /usr/ports/devel/py-setuptools; make install clean; 
    63 cd /usr/ports/devel/py-xdg; make install clean; 
    64 cd /usr/ports/devel/py-gobject; make install clean; 
    65 cd /usr/ports/x11-toolkits/py-gtk2; make install clean; 
    66 cd /usr/ports/graphics/librsvg2; make install clean; 
    67 }}} 
    68  
    69 Note that this will install dependencies for these packages as well. This is normal. This is the only time you will need to worry about all of these packages. You can upgrade Deluge without having to touch these. Also note that when you install librsvg2, you do NOT want to enable Mozilla support unless you are using Firefox 2.x. 
    70  
    71 After the dependencies are met, you can get Deluge from the svn. This will copy Deluge from the svn to a directory called deluge. 
    72  
    73 {{{ 
    74 svn co http://svn.deluge-torrent.org/branches/1.1.0_RC deluge 
    75 }}} 
    76  
    77 Once that finishes, just: 
    78  
    79 {{{ 
    80 cd deluge 
    81 }}} 
    82  
    83 Then build: 
    84  
    85 {{{ 
    86 python setup.py build 
    87 }}} 
    88  
    89 Then either su or sudo: 
    90  
    91 {{{ 
    92 python setup.py install 
    93 }}} 
    94  
    95 And that's it. Drop back to a regular user and start having fun with Deluge! If I missed something regarding a FreeBSD install, please contact !AlmightyOatmeal on Freenode.