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 | |
---|
6 | name google-gflags |
---|
7 | version 2.0 |
---|
8 | revision 1 |
---|
9 | categories devel |
---|
10 | maintainers hum openmaintainer |
---|
11 | |
---|
12 | description commandline flags module for C++ |
---|
13 | long_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 | |
---|
19 | homepage http://code.google.com/p/gflags/ |
---|
20 | platforms darwin |
---|
21 | license BSD |
---|
22 | |
---|
23 | master_sites googlecode:gflags |
---|
24 | distname gflags-${version} |
---|
25 | checksums 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 | # } |
---|