Ports 搜索

共有5,824项符合/net/的查询结果,以下是第2,5712,580项(搜索用时0.005秒)
devel/aegis-4.25 (Score: 0.01987111)
Transaction-based software configuration management system
Aegis is a transaction-based software configuration management system. It provides a framework within which a team of developers may work on many changes to a program independently, and Aegis coordinates integrating these changes back into the master source of the program, with as little disruption as possible. Some key features: * All operations on the repository are based on change sets. * True configurations. All changes are reproducible snapshots. Every change set has a unique configuration identifier. * Ability to rename files without losing their history. * Binary files are supported. * File meta-data are versioned. Aegis versions permissions also. * Commits are truly atomic. No part of a commit takes effect until the entire commit has succeeded. Log messages are attached to the change set, not stored redundantly in each file. * Access controls on lines of development (branches). Creating a branch in Aegis can be accomplished with a single, fast command. * Repository synchronization, geographically distributed development. * Optimal performance for all users, local or remote (no difference). * Disconnected commits. * Peer-to-peer architecture. Work may flow in without involving a master site. * Costs are proportional to change size, not data size.
devel/pdcurses-3.4 (Score: 0.01987111)
Curses library implementation for Win32, DOS, OS/2, and X11
PDCurses is a public domain curses library for Win32, DOS, OS/2 and X11, implementing most of the functions available in System V R4 curses. It supports most compilers for these platforms. The X11 port allows existing text-mode curses programs to be re-compiled and linked with PDCurses to produce native X11 applications.
devel/SpecTcl-1.2.2a (Score: 0.01987111)
Free drag-and-drop GUI builder for Tk and Java from Sun
Main Features of Sun's SpecTcl 1.1 ================================== Easy to Learn: SpecTcl's drag & drop interface along with a powerful toolbar and on-line help make it easy to start building GUI applications. Tcl and Java Support: SpecTcl generates both Tcl and Java code. Platform Independent: SpecTcl runs on all major platforms: Solaris, SunOS, Linux, Windows 95, Windows NT Server 3.51, Windows NT Workstation 3.51, MacOS, and Irix. Constraint Based Alignment and resizing of widgets (buttons, Geometry Manager: check boxes, etc.) is automatic. This makes creating dynamic UIs and cross platform UIs a snap!
devel/gaphor-0.17.2 (Score: 0.01987111)
UML modeling environment written in Python
Gaphor is an easy to use modeling environment. This means that you are able to create nice UML diagrams for documentation and to assist you with design decisions. Gaphor will help you create your applications.
devel/piklab-0.16.2 (Score: 0.01987111)
KDE/Qt IDE for microcontroller development
Piklab is an integrated development environment (IDE) for applications based on Microchip PIC and dsPIC microcontrollers similar to the MPLAB environment. It integrates with several compiler and assembler toolchains (like gputils, sdcc, c18) and with the GPSim simulator. It supports the most common programmers (serial, parallel, ICD2, Pickit2, PicStart+), the ICD2 debugger, and several bootloaders (Tiny, Pickit2, and Picdem).
devel/ptypes-2.1.1 (Score: 0.01987111)
C++ Portable Types Library
PTypes is a C++ Portable Types Library. It offers the following features: * Threads and synchronization objects along with message queues solve the vital problem of diversity of the threading API's on different platforms. * IP socket classes and utilities provide complete IP-based framework for both client-side and server-side programming. They can be combined with PTypes multithreading. * Dynamic strings, variants, character sets, date/time type and various kinds of dynamic and associative arrays: Delphi programmers will find them very similar to the ones in their favorite language. * Streaming interfaces provide buffered I/O with simple and powerful text parsing methods. A strictly defined syntax for the given text format or a formal language can be represented by calls to PTypes token extraction methods. The unified streaming interface is applicable to files, named pipes and network sockets. * Special thread class with enhanced functionality called unit. Units have their own main() and input/output 'plugs'; they can be connected to each other within one application to form pipes, like processes in the Unix shell. * Finally, everything above is portable: all platform-dependent details are hidden inside.
devel/premake-3.7 (Score: 0.01987111)
Build script creation tool
Describe your software project with a full-featured scripting language and let Premake write the build scripts for you. With one file your project can support both IDE-addicted Windows coders and Linux command-line junkies!
devel/pstreams-0.8.1 (Score: 0.01987111)
C++ utility for simple IOStream-based IPC
C++ utility for simple IOStream-based Inter-Process Communication
devel/cfgparse-1.3 (Score: 0.01987111)
Python module for parsing configuration files
cfgparse is Python module for parsing configuration files.
devel/cxx-6.0.0 (Score: 0.01987111)
Make it easier to extend Python with C++
PyCXX is a set of C++ facilities to make it easier to write Python extensions. The chief way in which PyCXX makes it easier to write Python extensions is that it greatly increases the probability that your program will not make a reference-counting error and will not have to continually check error returns from the Python C API. PyCXX integrates Python with C++ in these ways: - C++ exception handling is relied on to detect errors and clean up. In a complicated function this is often a tremendous problem when writing in C. With PyCXX, we let the compiler keep track of what objects need to be dereferenced when an error occurs. - The Standard Template Library (STL) and its many algorithms plug and play with Python containers such as lists and tuples. - The optional CXX_Extensions facility allows you to replace the clumsy C tables with objects and method calls that define your modules and extension objects.