diff -u /Users/jacksonisaac/Development/macports/macports-ports/devel/libzookeeper/Portfile devel/libzookeeper/Portfile
old
|
new
|
|
3 | 3 | PortSystem 1.0 |
4 | 4 | |
5 | 5 | name libzookeeper |
6 | | version 3.4.6 |
| 6 | version 3.4.10 |
7 | 7 | categories devel |
8 | | maintainers nomaintainer |
| 8 | maintainers {ijackson @JacksonIsaac} openmaintainer |
9 | 9 | |
10 | 10 | description C bindings for ZooKeeper, the high-performance coordination service |
11 | 11 | |
… |
… |
|
25 | 25 | distname zookeeper-${version} |
26 | 26 | dist_subdir zookeeper |
27 | 27 | master_sites apache:zookeeper/stable |
28 | | checksums rmd160 d9fadf07a40a85b8fd5a7e04e7200c74fd7393ce \ |
29 | | sha256 01b3938547cd620dc4c93efe07c0360411f4a66962a70500b163b59014046994 |
| 28 | |
| 29 | checksums rmd160 4b9b48d4a12abed14dd80071423d578afc68a5ba \ |
| 30 | sha256 7f7f5414e044ac11fee2a1e0bc225469f51fb0cdf821e67df762a43098223f27 |
30 | 31 | |
31 | 32 | worksrcdir ${distname}/src/c |
32 | 33 | |
33 | 34 | depends_build port:apache-ant |
| 35 | depends_build port:cppunit |
34 | 36 | |
35 | | platform darwin { |
36 | | # ZooKeeperZOOKEEPER-2049: Yosemite build failure: htonll conflict |
37 | | # https://issues.apache.org/jira/browse/ZOOKEEPER-2049, modified for 3.4.6 |
38 | | if {${os.major} >= 14} { |
39 | | patchfiles-append patch-yosemite.diff |
40 | | patch.pre_args -p2 |
41 | | } |
42 | | } |
| 37 | use_autoreconf yes |
| 38 | autoreconf.args -fvi |
43 | 39 | |
44 | 40 | pre-configure { |
45 | 41 | system -W "${worksrcpath}/../.." "ant compile_jute" |
46 | 42 | } |
47 | 43 | |
| 44 | configure.args --disable-dependency-tracking \ |
| 45 | --prefix=${prefix} \ |
| 46 | --without-cppunit |
| 47 | |
48 | 48 | variant universal {} |
49 | 49 | |
50 | 50 | build.args CFLAGS="${configure.cflags} [get_canonical_archflags]" |
51 | 51 | |
| 52 | #destroot.destdir INSTALL_BIN=${destroot}${prefix}/bin |
| 53 | |
52 | 54 | post-destroot { |
53 | 55 | file mkdir ${destroot}${prefix}/share/doc/${name} |
54 | 56 | xinstall -m 644 -W ${worksrcpath} \ |