Ticket #40662: Portfile

File Portfile, 1.7 KB (added by wolf@…, 11 years ago)

sysutils/libfaketime/Portfile

Line 
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
4PortSystem          1.0
5PortGroup           github 1.0
6
7github.setup        wolfcw libfaketime be2b7c0a0cae3f8b75928891285a33b5e34f97a2
8
9checksums           rmd160  25d0d06c0693df93f5cceb32fb67f10c93c83258 \
10                    sha256  ed4b3a11a4f67a777103bf7a192517fa7ac70cbc7df54b6383f572310423031d
11
12revision            2
13
14name                libfaketime
15version             0.9.5rc2
16categories          sysutils
17platforms           darwin
18license             GPL
19maintainers         code-wizards.com:wolf
20
21description         libfaketime modifies the system time for a single application
22long_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.
28homepage            https://github.com/wolfcw/libfaketime
29
30use_configure       no
31
32variant universal {}
33if {[variant_isset universal]} {
34    set archflags ${configure.universal_cflags}
35} else {
36    set archflags ${configure.cc_archflags}
37}
38
39build.cmd           ${build.cmd} -f Makefile.OSX
40build.args          CC="${configure.cc} ${archflags}" PREFIX=${prefix}
41build.env           ${configure.env}
42
43compiler.blacklist  *cc* *dragonegg*
44