Ports 搜索

共有18,669项符合descr.zh_CN%3A%E9%81%8F%E5%88%B6%E5%9E%83%E5%9C%BE的查询结果,以下是第1,6511,660项(搜索用时0.009秒)
devel/mq4cpp-1.16 (Score: 0.001329588)
Message Queuing for C++
MQ4CPP, or "Message Queuing for C++", is an open source implementation of enterprise messaging system, also referred to as message-oriented middleware (MOM).
devel/cxref-1.6e (Score: 0.0013294128)
C program cross-referencing & documentation tool
A program that takes as input a series of C source files and produces a LaTeX or HTML document containing a cross reference of the files/functions/variables in the program, including documentation taken from suitably formatted source code comments. The documentation is stored in the C source file in specially formatted comments, making it simple to maintain. The cross referencing includes lists of functions called, callers of each function, usage of global variables, header file inclusion, macro definitions and type definitions. Works for ANSI C, including a few gcc extensions.
textproc/wdiff-1.2.2 (Score: 0.0013287293)
Display word differences between text files
<< wdiff >> From man page of wdiff: wdiff compares two files, finding which words have been deleted or added to old_file to get new_file. A word is anything between whitespace. The output is collected and used to produce an annotated copy of new_file on standard output. Suitable annotations produce a nice display of word differences between the original files. Example: text-a I like FreeBSD. text-b I love FreeBSD. % wdiff -n text-a text-b I [-like-] {+love+} FreeBSD.
lang/awka-0.7.5 (Score: 0.0013233067)
Converts the AWK script to C, then compiles it
Awka is an open-source implementation of the AWK programming language. Awka is not an interpreter like Gawk, Mawk or Nawk, but instead it converts the program to ANSI-C, then compiles this using gcc or a native C compiled to create a binary executable. This means you must have an ANSI C compiler present on your system for Awka to work.
games/moagg-1.95b (Score: 0.0013229195)
Pilot a small space ship
Moagg stands for "Mother of all gravity games". In this game you are pilot of a small space ship and have to navigate it through different caves by using the thrusters and rotating the ship. But besides gravity there are many other difficulties you have to master. The game is strongly influenced by some classical cave flyers from the C64 and Amiga era such as "Space Taxi" or "Gravity Force". But Moagg is supposed to be more than just a clone of these games.
lang/cython-0.24 (Score: 0.0013228094)
Compiler for Writing C Extensions for the Python Language
The Cython language makes writing C extensions for the Python language as easy as Python itself. Cython is a source code translator based on the well-known Pyrex, but supports more cutting edge functionality and optimizations. The Cython language is very close to the Python language (and most Python code is also valid Cython code), but Cython additionally supports calling C functions and declaring C types on variables and class attributes. This allows the compiler to generate very efficient C code from Cython code. This makes Cython the ideal language for writing glue code for external C libraries, and for fast C modules that speed up the execution of Python code.
devel/libvterm-git20160104 (Score: 0.001321365)
Implementation of a VT220/xterm/ECMA-48 terminal emulator
Abstract C99 library which implements a VT220 or xterm-like terminal emulator. It doesn't use any particular graphics toolkit or output system, instead it invokes callback function pointers that its embedding program should provide it to draw on its behalf. It avoids calling malloc() during normal running state, allowing it to be used in embedded kernel situations.
devel/interface-1.3 (Score: 0.001319769)
Python implementation of an Erlang node
The Py-Interface is a python-implementation of an Erlang node. The py_interface provides the possibility to create a node that may be used for communication with other Erlang nodes. Some characteristics: o The Python nodes are hidden, like the Java nodes o The Python node supports - registering the Python node in the epmd - sending and receiving message - executing remote procedure calls (the rpc:call(M,F,A) mechanism) o The Python node does currently not do: - linking - tracing o The Python node translates Erlang types to Python types as far as there is a reasonable Python counterpart. If there is not, then a class is used. o The Python node is a single threaded callback-driven process. o The Python node runs on Python 2.5 and Erlang R12. It may well still work with older version of both Python and Erlang. Development started on Python 1.5 and Erlang R7.
databases/Redis-hiredis-0.11.0 (Score: 0.0013180209)
Simple wrapper around hiredis C client
Redis::hiredis is a simple wrapper around Salvatore Sanfilippo's hiredis C client that allows connecting and sending any command just like you would from a command line Redis client.
devel/jsoncpp-1.7.3 (Score: 0.0013180209)
JSON reader and writer library for C++
jsoncpp is an implementation of a JSON reader and writer in C++. JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate.