Ticket #20013: rtorrent-devel.Portfile

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