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: Portfile 67107 2010-04-29 07:24:50Z ryandesign@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name tclap |
---|
7 | version 1.2.0 |
---|
8 | categories devel |
---|
9 | platforms darwin |
---|
10 | maintainers v9g.de:tvb377 |
---|
11 | homepage http://tclap.sourceforge.net |
---|
12 | |
---|
13 | # do not generate docs (should the build phase be enabled again) |
---|
14 | configure.args-append --disable-doxygen |
---|
15 | |
---|
16 | description Templatized C++ Command Line Parser |
---|
17 | |
---|
18 | long_description This is a simple templatized C++ library for parsing command line arguments. \ |
---|
19 | The library provides a simple, flexible object-oriented interface to the \ |
---|
20 | command line that automates argument parsing, USAGE creation and type casting. \n\ |
---|
21 | NOTE: THIS PORT INSTALLS NO SAMPLES OR DOCUMENTATION. \ |
---|
22 | PLEASE HAVE A LOOK AT TCLAP's HOME PAGE FOR THAT STUFF. |
---|
23 | |
---|
24 | master_sites sourceforge:tclap |
---|
25 | |
---|
26 | # do not build anything, lib is header only |
---|
27 | build { |
---|
28 | } |
---|
29 | |
---|
30 | # install only header files |
---|
31 | destroot.args -C include |
---|
32 | |
---|
33 | checksums md5 f6ea7c05ef62f920d30e4bde5ee3ec8c \ |
---|
34 | sha1 aa1b8ce5b3c5356e89961d70f03c825dbdfc6f49 \ |
---|
35 | rmd160 63d3f14ea6e2b0be5dec17194b2dfefd07205cc8 |
---|