Ticket #40748: Portfile

File Portfile, 1.6 KB (added by wolf@…, 11 years ago)
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           compiler_blacklist_versions 1.0
6PortGroup           github 1.0
7
8github.setup        wolfcw libfaketime v0.9.5rc3
9
10checksums           rmd160  8d10140a181e0d5ce93bd7b0e7eeaa380eb7a9c6 \
11                    sha256  ee2234335b3d730fdf6898d8dba9195d9ab3068c29af25270be03682d24a424f
12
13version             0.9.5rc3
14categories          sysutils
15platforms           darwin
16maintainers         code-wizards.com:wolf openmaintainer
17license             GPL-2
18
19description         libfaketime modifies the system time for a single application
20
21long_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
28use_configure       no
29
30variant universal {}
31
32compiler.blacklist  *cc* *dragonegg* {clang < 211}
33
34build.args          -f Makefile.OSX
35build.env           CC="${configure.cc}" \
36                    CFLAGS="[get_canonical_archflags cc]" \
37                    LDFLAGS="[get_canonical_archflags ld]" \
38                    PREFIX=${prefix}
39
40destroot.args       -f Makefile.OSX
41destroot.env        PREFIX=${prefix}