Ports Search

Results 1,3411,350 of 18,669 for descr.zh_CN%3A%E9%81%8F%E5%88%B6%E5%9E%83%E5%9C%BE.(0.01 seconds)
x11-toolkits/fltk-1.3.3 (Score: 0.0017581561)
Cross-platform C++ graphical user interface toolkit
The Fast Light ToolKit ("FLTK", pronounced "fulltick") is a LGPL'd C++ graphical user interface for X11. FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL and its built-in GLUT emulation. FLTK is designed to be small and modular enough to be statically linked, but works fine as a shared library. FLTK also includes an excellent UI builder called FLUID that can be used to create applications in minutes.
math/eispack-1.0 (Score: 0.0017535149)
Eigenvalue system package
This is eispack from research.att.com. I've cleaned up the Makefile, but it is otherwise the same. The package is described in: 1. Smith, B.T, Boyle, J.M, Dongerra, J.J., Garbow, B.S., Ikebe, Y., Klema, V.C., and Moler, C.B., Matrix Eigensystem Routines -- EISPACK Guide, Lecture Notes in Computer Science, Vol. 6, Second Edition, Springer-Verlag, New York, Heidelberg, Berlin, 1976 2. Garbow, B.S., Boyle J.M., Dongerra, J.J, and Moler C.B., Matrix Eigensystem Routines -- EISPACK Guide Extension, Lecture Notes in Computer Science, Vol. 51, Springer-Verlag, New York, Heidelberg, Berlin, 1977 As the package is in FORTRAN there are no include files for the library, and the only thing to install is the library itself.
net/tcpcat-1.2.0 (Score: 0.001753262)
Simple utility for sending/receiving data over a TCP or a Unix-domain socket
From the tcpcat README: Tcpcat is a simple program that is like `cat' but it works over TCP streams to allow you to cat from one host to another. The host common way to use this program whould be something like this: on host a: $ tcpcat -l 93255 | gzip -dc | tar xvf - on host b: $ tcpcat -h hosta:93255 file.tar.gz Another good use for this program is debugging network stuff. When debugging a newtork client or server you can pipe the output of tcpcat to a hex dump (I recomend xxd which comes with vim). Also it can act as a crude telnet server when invoded with --listen, --input, and --output, this mode is quite useful for network program debugging as well.
devel/cpputest-3.7.1 (Score: 0.0017479243)
Unit testing and mocking framework for C/C++
CppUTest is a C /C++ based unit xUnit test framework for unit testing and for test-driving your code. It is written in C++ but is used in C and C++ projects and frequently used in embedded systems. CppUTest's core design principles: * Simple to use and small * Portable to old and new platforms * Build with Test-driven Development in mind
devel/cdecl-2.5 (Score: 0.0017479243)
Explains complicated C/C++ declarations in plain English
Cdecl composes compilable C declarations and typecasts from descriptive English phrases, and can also explain a complicated typecast or declaration. It handles ANSI C, C++, pre-ANSI C, and K&R C, and has TAB completion of keywords and line editing and history (provided by the GNU readline library).
databases/qdbm-1.8.78 (Score: 0.001747205)
Quick Database Manager
QDBM is a library of routines for managing a database. The database is a simple data file containing records, each is a pair of a key and a value. Every key and value is serial bytes with variable length. Both binary data and character string can be used as a key and a value. There is neither concept of data tables nor data types. Records are organized in hash table or B+ tree.
databases/tokyocabinet-1.4.48 (Score: 0.001747205)
Modern implementation of DBM
Tokyo Cabinet is a library of routines for managing a database. The database is a simple data file containing records, each is a pair of a key and a value. Every key and value is serial bytes with variable length. Both binary data and character string can be used as a key and a value. There is neither concept of data tables nor data types. Records are organized in hash table or B+ tree.
devel/xxl-1.0.1 (Score: 0.0017467123)
C/C++ library for exception handling and asset management
XXL is a library for C and C++ that provides exception handling and asset management. Asset management is integrated with the exception handling mechanism such that assets may be automatically cleaned up if an exception is thrown, which allows for much simplified program structure with respect to error handling. By allowing XXL to track assets and using its exception handling features, the programmer no longer has to check error conditions on every function call and cleanup the assets on failure because XXL does the work.
textproc/ctpp2-2.8.3 (Score: 0.0017461563)
C++ library to use templates in C/C++ projects, version 2
This is a simple set of C++ classes which allow to use templates like perl modules Template Toolkit and HTML::Template::Pro Version 2.
net/librdkafka-0.9.1 (Score: 0.0017440045)
Apache Kafka C/C++ library
This is a port of librdkafka, a C library implementation of the Apache Kafka protocol, containing both Producer and Consumer support. It was designed with message delivery reliability and high performance in mind, current figures exceed 800000 msgs/second for the producer and 3 million msgs/second for the consumer.