Ports 搜索

共有18,669项符合descr.zh_CN%3A%E9%81%8F%E5%88%B6%E5%9E%83%E5%9C%BE的查询结果,以下是第1,7111,720项(搜索用时0.021秒)
x11/libxcb-1.11.1 (Score: 0.0012841263)
The X protocol C-language Binding (XCB) library
The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility.
x11/xcb-proto-1.11 (Score: 0.0012841263)
The X protocol C-language Binding (XCB) protocol
The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility.
misc/xtail-2.1 (Score: 0.0012841168)
Watches the growth of files or directories
"xtail" watches the growth of files. It's like running a "tail -f" on a bunch of files at once. You can specify both filenames and directories on the command line. If you specify a directory, it watches all the files in that directory. It will notice when new files are created (and start watching them) or when old files are deleted (and stop watching them). This program is an oldie but goodie. It was posted to comp.sources.misc in July 1989 (see ftp.uu.net:/usenet/comp.sources.misc/volume7/xtail.Z). I remember posting an even earlier version to alt.sources. It has been published in the O'Reilly & Associates "Unix Power Tools" collection (book and CD-ROM). Over the years, some fly-by-night organizations (such as the MIT X Consortium and SGI) have tried to steal the "xtail" name. Don't be fooled! Insist on the original.
mail/jwsmtp-1.32.15 (Score: 0.0012820379)
C++ library for sending email
jwSMTP is a GPL-licensed C++ library to facilitate sending email programmatically. All you need to worry about is who the mail is from, who to send it to and the message itself, no network coding necessary. It is able to send mail in html or plain format. jwSMTP can send attachments, send to multiple recipients including Cc/Bcc recipients. LOGIN and PLAIN SMTP authentication. Do an MX lookup or send direct via an smtp server. Supported platforms are BSD, Linux and Windows.
devel/cscout-2.7 (Score: 0.001279806)
Source code analyzer and refactoring browser for C program collections
CScout is a source code analyzer and refactoring browser for collections of C programs. It can process workspaces of multiple projects (we define a project as a collection of C source files that are linked together) mapping the complexity introduced by the C preprocessor back into the original C source code files. CScout takes advantage of modern hardware advances (fast processors and large memory capacities) to analyze C source code beyond the level of detail and accuracy provided by current compilers and linkers. The analysis CScout performs takes into account the identifier scopes introduced by the C preprocessor and the C language proper scopes and namespaces. CScout has already been applied on projects ranging from tens of thousands of lines, like the FreeBSD and Linux kernels, and the Apache web server. This free unsupported version of CScout is distributed under the terms of the CScout Public License, which is available in the accompanying documentation.
devel/alabastra-0.21b (Score: 0.0012769528)
C++ editor written with Qt 4
C++/QT Editor with highlight, project management. Written with Qt V4
textproc/lasem-0.4.1 (Score: 0.0012731357)
SVG/Mathml renderer and editor
Lasem aims to be a C/GObject based SVG/MathML renderer and editor. It uses cairo and pango as it's rendering abstraction layer.
x11/clx-0.7.4 (Score: 0.0012731357)
X11 client library for Common Lisp
CLX is to Common Lisp as Xlib is to C - it provides low-level X calls on top of which a Graphics Toolkit can be based.
devel/ragel-6.9 (Score: 0.0012728292)
Compile regular languages into executable C/C++ code
Ragel compiles finite state machines from regular languages into runnable C code. Ragel state machines can not only recognize byte sequences as regular expression machines do, but can also execute code at arbitrary points in the recognition of a regular language. When you wish to write down a regular language you start with some simple regular language and build a bigger one using the regular language operators union, concatenation, kleene star, intersection and subtraction. This is precisely the way you describe to Ragel how to compile your finite state machines. Ragel also understands operators that insert function calls into machines and operators that control any non-determinism in machines.
lang/lua-5.1.5 (Score: 0.0012685703)
Small, compilable scripting language providing easy access to C code
Lua is a programming language originally designed for extending applications, but also frequently used as a general-purpose, stand-alone language. Lua combines simple procedural syntax (similar to Pascal) with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, interpreted from bytecodes, and has automatic memory management with garbage collection, making it ideal for configuration, scripting, and rapid prototyping. A fundamental concept in the design of Lua is to provide meta-mechanisms for implementing features, instead of providing a host of features directly in the language. For example, although Lua is not a pure object-oriented language, it does provide meta-mechanisms for implementing classes and inheritance. Lua's meta-mechanisms bring an economy of concepts and keep the language small, while allowing the semantics to be extended in unconventional ways. Extensible semantics is a distinguishing feature of Lua. Lua is implemented as a small library of C functions, written in ANSI C, and compiles unmodified in all known platforms. The implementation goals are simplicity, efficiency, portability, and low embedding cost.