1 | # $Id: Portfile 36993 2008-05-22 13:50:10Z simon@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | |
---|
5 | name rtorrent-devel |
---|
6 | set real_name rtorrent |
---|
7 | version 0.8.4 |
---|
8 | categories net |
---|
9 | platforms darwin |
---|
10 | maintainers gardnermj@gmail.com |
---|
11 | description console-based BitTorrent client (development version) |
---|
12 | long_description rTorrent is a console-based BitTorrent client. It aims to \ |
---|
13 | be a fully-featured and efficient client with the ability to \ |
---|
14 | run in the background using screen. It supports fast-resume \ |
---|
15 | and session management. \ |
---|
16 | This is the development version of rTorrent, now with DHT! \ |
---|
17 | (See http://libtorrent.rakshasa.no/wiki/RTorrentUsingDHT) |
---|
18 | |
---|
19 | homepage http://libtorrent.rakshasa.no/ |
---|
20 | master_sites ${homepage}downloads/ |
---|
21 | distname ${real_name}-${version} |
---|
22 | checksums md5 dc0f37d933b0b6c713ad617e09441f3b \ |
---|
23 | sha1 83a7c0dbeb46bb074ae075d9faf5d05f0df17571 \ |
---|
24 | rmd160 a7a65a136161dc89e93479cee776cc084dce4ee0 |
---|
25 | |
---|
26 | depends_lib port:curl \ |
---|
27 | port:libsigcxx2 \ |
---|
28 | port:libtorrent-devel \ |
---|
29 | port:ncurses \ |
---|
30 | port:openssl \ |
---|
31 | port:zlib |
---|
32 | |
---|
33 | configure.args --mandir=${prefix}/share/man \ |
---|
34 | --disable-debug \ |
---|
35 | --enable-ipv6 |
---|
36 | |
---|
37 | livecheck.name ${real_name} |
---|
38 | |
---|
39 | variant xmlrpc description {Enable XMLRPC interface} { |
---|
40 | configure.args-append --with-xmlrpc-c |
---|
41 | depends_lib-append port:xmlrpc-c |
---|
42 | } |
---|