Commits
Zero King authored 84fda0b252e
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 4 | |
5 5 | name talloc |
6 6 | conflicts samba3 |
7 - | version 2.1.8 |
7 + | version 2.1.9 |
8 8 | set major [lindex [split ${version} .] 0] |
9 9 | categories devel |
10 10 | # mostly LGPL, but a few files are GPL |
11 11 | license GPL-3+ |
12 12 | platforms darwin |
13 13 | maintainers nomaintainer |
14 14 | description Hierarchical memory allocation library |
15 15 | long_description talloc is a hierarchical, reference counted memory pool \ |
16 16 | system with destructors. It is the core memory allocator \ |
17 17 | used in Samba. |
18 18 | homepage https://talloc.samba.org/ |
19 19 | master_sites https://www.samba.org/ftp/talloc/ |
20 20 | |
21 - | checksums rmd160 5bef7db691f79d3fb673d3656434f33e761f67e4 \ |
22 - | sha256 22d14911164d4de67ff76b5269fa5250d01f78c955bc77e28615350996877130 |
21 + | checksums rmd160 ee8335deb5fd59b6de8d5bdc9fc518757188b9a5 \ |
22 + | sha256 f0aad4cb88a3322207c82136ddc07bed48a37c2c21f82962d6c5ccb422711062 |
23 23 | |
24 24 | configure.args --disable-python \ |
25 25 | --with-libiconv=${prefix} |
26 26 | |
27 27 | # disable silent rules |
28 28 | build.args V=1 |
29 29 | destroot.args V=1 |
30 30 | |
31 31 | post-destroot { |
32 32 | system "install_name_tool -id ${prefix}/lib/libtalloc.${major}.dylib ${destroot}${prefix}/lib/libtalloc.${major}.dylib" |