Ports Search

Results 1,6111,620 of 2,170 for /x11-fonts/.(0.006 seconds)
security/botan-1.10.13 (Score: 0.0034031598)
Portable, easy to use, and efficient C++ crypto library
Botan is a crypto library written in C++. It provides a variety of cryptographic algorithms, including common ones such as AES, MD5, SHA, HMAC, RSA, Diffie-Hellman, DSA, and ECDSA, as well as many others that are more obscure or specialized. It also offers X.509v3 certificates and CRLs, and PKCS #10 certificate requests. A message processing system that uses a filter/pipeline metaphor allows for many common cryptographic tasks to be completed with just a few lines of code. Assembly optimizations for common CPUs, including x86, x86-64, and PowerPC, offers further speedups for critical tasks such as SHA-1 hashing and multiple precision integer operations. Botan is licensed under the same permissive terms as FreeBSD itself.
x11-toolkits/Prima-1.47 (Score: 0.0034031598)
Extensible Perl toolkit for multi-platform GUI development
Prima is an extensible Perl toolkit for multi-platform GUI development. Platforms supported include Linux, Windows NT/9x/2K, OS/2 and UNIX/X11 workstations ( FreeBSD, IRIX, SunOS, Solaris and others). The toolkit contains a rich set of standard widgets and has emphasis on 2D image processing tasks. A Perl program using PRIMA looks and behaves identically on X, Win32 and OS/2 PM. The toolkit includes a visual builder ( VB ) and a graphic pod viewer utility ( podview ). The examples are installed into perl site in Prima/examples directory. A 'hello world' code is as simple as follows: use Prima qw(Application Buttons); Prima::Window-> create( text => 'Hello world!', size => [ 200, 200], )-> insert( Button => centered => 1, text => 'Hello world!', onClick => sub { $::application-> close }, ); run Prima;
x11-fonts/CharisSILCompact-4.114 (Score: 0.00340136)
Charis SIL TrueType font collection, compact variant
Charis SIL is a Unicode-based font family that attempts to provide a comprehensive inventory of glyphs needed for almost any Roman- or Cyrillic-based writing system, whether used for phonetic or orthographic needs. In addition, there is provision for other characters and symbols useful to linguists. This font makes use of state-of-the-art font technologies to support complex typographic issues, such as the need to position arbitrary combinations of base glyphs and diacritics optimally. Charis is similar to Bitstream Charter, one of the first fonts designed specifically for laser printers. It is highly readable and holds up well in less-than-ideal reproduction environments. It also has a full set of styles - regular, italic, bold, bold italic - and so is more useful in general publishing than Doulos SIL. Charis is a serif, proportionally-spaced font optimized for readability in long printed documents. This compact variant has been created with TypeTuner Web, by setting the "Line spacing" feature to "Tight", and will not be able to be TypeTuned again.
archivers/fastjar-0.93.20060808 (Score: 0.003334402)
Version of JDK's `jar' command written entirely in C
Fastjar is a version of Sun's `jar' utility, written entirely in C, and therefore quite a bit faster. Fastjar can be up to 100x faster than the stock `jar' program running without a JIT. Currently, the author is working on adding all the features present in the Sun utility. At the moment, implemented features are: * Archive creation * Verbose/quiet output * stdout vs. file output * Manifest file support * Deflation or storage * Changing to directory and adding files (-C) * Archive content listing (-t) * Archive extraction (-x)
astro/xearth-1.2 (Score: 0.003334402)
Set the root window to the image of earth
Xearth sets the X root window to an image of the Earth, as seen from your favorite vantage point in space, correctly shaded for the current position of the Sun. By default, xearth updates the displayed image every five minutes. The time between updates can be changed with the -wait option. Xearth can also render directly into PPM and GIF files instead of drawing in the root window. There are three additional marker files installed in /usr/local/lib/X11/xearth which specify the locations of various FreeBSD people and places: freebsd.committers.markers - FreeBSD committers freebsd.submitters.markers - FreeBSD submitters freebsd.ftp.markers - FreeBSD FTP mirrors
audio/darkice-1.3 (Score: 0.003334402)
IceCast, IceCast2, and ShoutCast live audio streamer
DarkIce is an IceCast, IceCast2, and ShoutCast live audio streamer. It records audio from an audio interface (e.g. sound card), encodes it and sends it to a stream server. DarkIce can encode in the following formats: - MP3 (using the lame library) - MP2 (using the twolame library) - Ogg Vorbis - AAC (using the faac library) - AAC HEv2 (using libaacplus library) DarkIce can send the encoded stream to the following streaming servers: - ShoutCast - IceCast 1.3.x and 2.x - Darwin Streaming Server - Archive the encoded audio in files
benchmarks/iperf-3.1.3 (Score: 0.003334402)
Improved tool to measure TCP and UDP bandwidth
iperf is a tool for measuring the maximum TCP and UDP bandwidth along a path between two hosts. It allows the tuning of various parameters and UDP characteristics, and reports bandwidth, delay jitter, datagram loss. iperf was originally developed by NLANR/DAST. iperf3 is a new implementation from scratch, with the goal of a smaller, simpler code base, and a library version of the functionality that can be used in other programs. iperf3 also a number of features found in other tools such as nuttcp and netperf, but were missing from iperf 2.x. iperf3 is not backwards compatible with iperf 2.x.
devel/modules-svn20130912 (Score: 0.003334402)
High level open source game development suite, modules
Bennu is a high level open source game development suite which focuses on modularity and portability, making it a perfect choice for cross-platform game development. Although officialy it is only supported on Windows, Linux and GP2X Wiz (on the right), Bennu can run on multiple other platforms, including *BSD, MacOSX and other consoles such as the Wii, Dingoo A320, GP2X, or the classic Xbox. This makes it really fun to code in Bennu: the game can be played on you computer AND your console!
devel/core-svn20130912 (Score: 0.003334402)
High level open source game development suite, core libs
Bennu is a high level open source game development suite which focuses on modularity and portability, making it a perfect choice for cross-platform game development. Although officialy it is only supported on Windows, Linux and GP2X Wiz (on the right), Bennu can run on multiple other platforms, including *BSD, MacOSX and other consoles such as the Wii, Dingoo A320, GP2X, or the classic Xbox. This makes it really fun to code in Bennu: the game can be played on you computer AND your console!
devel/attrs-16.0.0 (Score: 0.003334402)
Python attributes without boilerplate
attrs is an MIT-licensed Python package with class decorators that ease the chores of implementing the most common attribute-related object protocols: >>> import attr >>> @attr.s ... class C(object): ... x = attr.ib(default=42) ... y = attr.ib(default=attr.Factory(list)) >>> i = C(x=1, y=2) (If you don't like the playful attr.s and attr.ib, you can also use their no-nonsense aliases attr.attributes and attr.attr). You just specify the attributes to work with and attrs gives you: a nice human-readable __repr__, a complete set of comparison methods, an initializer, and much more without writing dull boilerplate code again and again.