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 libhx |
---|
7 | version 3.12 |
---|
8 | revision 0 |
---|
9 | categories devel |
---|
10 | platforms darwin |
---|
11 | maintainers nomaintainers |
---|
12 | |
---|
13 | description common structures and low-level operations library |
---|
14 | |
---|
15 | long_description libHX is a C library (with some C++ bindings \ |
---|
16 | available) that provides data structures \ |
---|
17 | and functions commonly needed, such as \ |
---|
18 | maps, deques, linked lists, string \ |
---|
19 | formatting and autoresizing, option and \ |
---|
20 | config file parsing, type checking casts \ |
---|
21 | and more. libHX aids in quickly writing \ |
---|
22 | up C and C++ data processing programs, by \ |
---|
23 | consolidating tasks that often happen to be \ |
---|
24 | open-coded, such as (simple) config file \ |
---|
25 | reading, option parsing, directory traversal, \ |
---|
26 | and others, into a library. The focus is on \ |
---|
27 | reducing the amount of time (and secondarily, \ |
---|
28 | the amount of code) a developer has to spend \ |
---|
29 | for otherwise implementing such. |
---|
30 | |
---|
31 | homepage http://libhx.sourceforge.net/ |
---|
32 | master_sites sourceforge |
---|
33 | |
---|
34 | checksums md5 5f6e5351d41d0f67ba056fd587714b48 |
---|
35 | |
---|
36 | distname libHX-${version} |
---|
37 | worksrcdir libHX-${version} |
---|
38 | use_xz yes |
---|
39 | patchfiles patch-src-Makefile.in |
---|
40 | |
---|