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 github 1.0 |
---|
6 | |
---|
7 | github.setup wolfcw libfaketime be2b7c0a0cae3f8b75928891285a33b5e34f97a2 |
---|
8 | |
---|
9 | checksums rmd160 25d0d06c0693df93f5cceb32fb67f10c93c83258 \ |
---|
10 | sha256 ed4b3a11a4f67a777103bf7a192517fa7ac70cbc7df54b6383f572310423031d |
---|
11 | |
---|
12 | revision 2 |
---|
13 | |
---|
14 | name libfaketime |
---|
15 | version 0.9.5rc2 |
---|
16 | categories sysutils |
---|
17 | platforms darwin |
---|
18 | license GPL |
---|
19 | maintainers code-wizards.com:wolf |
---|
20 | |
---|
21 | description libfaketime modifies the system time for a single application |
---|
22 | long_description libfaketime intercepts various system calls that applications use to \ |
---|
23 | retrieve the current date and time. It can then report user-specified \ |
---|
24 | faked dates and times to these applications. This allows us to modify \ |
---|
25 | the system time an application sees without having to change the time \ |
---|
26 | system-wide. The faketime wrapper can be used from command line. \ |
---|
27 | Check the documentation on how to integrate into installed applications. |
---|
28 | homepage https://github.com/wolfcw/libfaketime |
---|
29 | |
---|
30 | use_configure no |
---|
31 | |
---|
32 | variant universal {} |
---|
33 | if {[variant_isset universal]} { |
---|
34 | set archflags ${configure.universal_cflags} |
---|
35 | } else { |
---|
36 | set archflags ${configure.cc_archflags} |
---|
37 | } |
---|
38 | |
---|
39 | build.cmd ${build.cmd} -f Makefile.OSX |
---|
40 | build.args CC="${configure.cc} ${archflags}" PREFIX=${prefix} |
---|
41 | build.env ${configure.env} |
---|
42 | |
---|
43 | compiler.blacklist *cc* *dragonegg* |
---|
44 | |
---|