Ticket #42420: Portfile

File Portfile, 1.4 KB (added by c9s (Yo-An Lin), 10 years ago)

Portfile of google-gflags

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
5
6name                google-gflags
7version             2.0
8revision            1
9categories          devel
10maintainers         hum openmaintainer
11
12description         commandline flags module for C++
13long_description    The gflags package contains a library that implements commandline flags processing. \
14                    As such it's a replacement for getopt(). It has increased flexibility, \
15                    including built-in support for C++ types like string, and \
16                    the ability to define flags in the source file in which \
17                    they're used.
18
19homepage            http://code.google.com/p/gflags/
20platforms           darwin
21license             BSD
22
23master_sites        googlecode:gflags
24distname            gflags-${version}
25checksums           rmd160  9a5721fcad934c47ef2055cbef0f092f560b609d \
26                    sha256  ce4a5d3419f27a080bd68966e5cd9507bfa09d14341e07b78a1778a7a172d7d7
27
28# https://code.google.com/p/google-glog/issues/detail?id=169
29# patchfiles          patch-libc++.diff
30
31# post-destroot {
32#     set dest_doc ${destroot}${prefix}/share/doc/${name}
33#     xinstall -d ${dest_doc}
34#     xinstall -m 644 -W ${worksrcpath} \
35#         AUTHORS COPYING ChangeLog doc/designstyle.css doc/glog.html \
36#         ${dest_doc}
37# }