Ticket #20014: rtorrent.Portfile

File rtorrent.Portfile, 1.2 KB (added by gardnermj@…, 15 years ago)
Line 
1# $Id$
2
3PortSystem 1.0
4
5name              rtorrent
6set real_name     rtorrent
7version           0.8.4
8categories        net
9platforms         darwin
10maintainers       gmail.com:gardnermj
11description       console-based BitTorrent client
12long_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
17homepage      http://libtorrent.rakshasa.no/
18master_sites  ${homepage}downloads/
19distname      ${real_name}-${version}
20checksums     md5 dc0f37d933b0b6c713ad617e09441f3b \
21              sha1 83a7c0dbeb46bb074ae075d9faf5d05f0df17571 \
22              rmd160 a7a65a136161dc89e93479cee776cc084dce4ee0
23
24depends_lib  port:curl \
25             port:libsigcxx2 \
26             port:libtorrent \
27             port:ncurses \
28             port:openssl \
29             port:zlib
30
31configure.args  --mandir=${prefix}/share/man \
32                --disable-debug \
33                --enable-ipv6
34
35livecheck.name  ${real_name}
36
37variant xmlrpc description {Enable XMLRPC interface} {
38    configure.args-append  --with-xmlrpc-c
39    depends_lib-append     port:xmlrpc-c
40}