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 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup compiler_blacklist_versions 1.0 |
---|
6 | PortGroup github 1.0 |
---|
7 | |
---|
8 | github.setup wolfcw libfaketime v0.9.5rc3 |
---|
9 | |
---|
10 | checksums rmd160 8d10140a181e0d5ce93bd7b0e7eeaa380eb7a9c6 \ |
---|
11 | sha256 ee2234335b3d730fdf6898d8dba9195d9ab3068c29af25270be03682d24a424f |
---|
12 | |
---|
13 | version 0.9.5rc3 |
---|
14 | categories sysutils |
---|
15 | platforms darwin |
---|
16 | maintainers code-wizards.com:wolf openmaintainer |
---|
17 | license GPL-2 |
---|
18 | |
---|
19 | description libfaketime modifies the system time for a single application |
---|
20 | |
---|
21 | long_description libfaketime intercepts various system calls that applications use to \ |
---|
22 | retrieve the current date and time. It can then report user-specified \ |
---|
23 | faked dates and times to these applications. This allows us to modify \ |
---|
24 | the system time an application sees without having to change the time \ |
---|
25 | system-wide. The faketime wrapper can be used from command line. \ |
---|
26 | Check the documentation on how to integrate into installed applications. |
---|
27 | |
---|
28 | use_configure no |
---|
29 | |
---|
30 | variant universal {} |
---|
31 | |
---|
32 | compiler.blacklist *cc* *dragonegg* {clang < 211} |
---|
33 | |
---|
34 | build.args -f Makefile.OSX |
---|
35 | build.env CC="${configure.cc}" \ |
---|
36 | CFLAGS="[get_canonical_archflags cc]" \ |
---|
37 | LDFLAGS="[get_canonical_archflags ld]" \ |
---|
38 | PREFIX=${prefix} |
---|
39 | |
---|
40 | destroot.args -f Makefile.OSX |
---|
41 | destroot.env PREFIX=${prefix} |
---|