diff --git a/net/libtorrent/Portfile b/net/libtorrent/Portfile
index 72f84f4210..189f5220cf 100644
a
|
b
|
|
1 | 1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
2 | 2 | |
3 | 3 | PortSystem 1.0 |
| 4 | PortGroup cxx11 1.1 |
| 5 | PortGroup github 1.0 |
| 6 | |
| 7 | github.setup rakshasa libtorrent 0.13.7 v |
4 | 8 | |
5 | | name libtorrent |
6 | 9 | conflicts libtorrent-devel |
7 | | version 0.13.2 |
8 | | revision 1 |
9 | 10 | categories net |
10 | 11 | platforms darwin |
11 | 12 | maintainers nomaintainer |
… |
… |
long_description libTorrent is a BitTorrent library written in C++ for \ |
17 | 18 | *nix. It is designed to avoid redundant copying and \ |
18 | 19 | storing of data that other clients and libraries suffer from. |
19 | 20 | |
20 | | homepage http://libtorrent.rakshasa.no/ |
21 | | master_sites ${homepage}downloads/ |
22 | | |
23 | | checksums rmd160 090e6af9b4318a6176064159f6a8f70ab708c7fe \ |
24 | | sha256 ed2f2dea16c29cac63fa2724f6658786d955f975861fa6811bcf1597ff8a5e4f |
| 21 | checksums rmd160 e0a6f01eac616cec788cb81995318e7b9fc7baac \ |
| 22 | sha256 7de1c2e2ebb23ff0f13891f1f865a2ac6899141d8e662b269156c3cb11518a4d \ |
| 23 | size 356972 |
25 | 24 | |
26 | 25 | depends_build port:pkgconfig |
27 | 26 | |
28 | 27 | depends_lib path:lib/libssl.dylib:openssl \ |
29 | 28 | port:libsigcxx2 |
30 | 29 | |
| 30 | pre-configure { |
| 31 | system -W ${worksrcpath} "./autogen.sh" |
| 32 | } |
| 33 | |
31 | 34 | configure.args --disable-debug \ |
32 | 35 | --enable-ipv6 \ |
33 | 36 | --with-kqueue |
34 | 37 | |
35 | | compiler.blacklist gcc-4.0 |
36 | | |
37 | 38 | post-destroot { |
38 | 39 | set docdir ${prefix}/share/doc/${name} |
39 | 40 | xinstall -d ${destroot}${docdir} |