Ports Search

Results 281290 of 17,773 for comment.zh_CN%3A%E6%8E%A7%E5%88%B6%E5%8F%B0.(0.029 seconds)
audio/gstreamer-1.8.0 (Score: 0.011790188)
GStreamer Bauer Stereophonic to Banaural BSP (bs2b) plugin
net/malo-firmware-3.0.0.39 (Score: 0.011790188)
Marvell Libertas 88W8335 IEEE 802.11b/g Firmware Kernel Module
Marvell Libertas 88W8335 firmware files are not free because Marvell refuses to grant distribution rights. This port contains firmware files from OpenBSD's malo(4) driver.
security/plaso-1.5.0 (Score: 0.011637769)
Automatic creation of a super timeline
Plaso is the Python based back-end engine used by tools such as log2timeline for automatic creation of a super timelines. The goal of log2timeline (and thus plaso) is to provide a single tool that can parse various log files and forensic artifacts from computer and related systems, such as network equipment to produce a single correlated timeline. This timeline can then be easily analysed by forensic investigators/analysts, speeding up investigations by correlating the vast amount of information found on an average computer system.
net/tac_plus-F4.0.4.28 (Score: 0.01161346)
Cisco remote authentication/authorization/accounting server
A TACACS+ server that allows authorization and authentication via net on remote access servers: Authenticate users, authorize commands and log accounting information. Version 4 has improved features and bugfixes over the older 2.x versions. Improved features among others and bugfixes: Microsoft CHAP support. To enable MSCHAP you need to optain a key from Microsoft, see the FAQ section in the users guide. Therefore this isn't enabled by default. Cisco, the original developers, have stopped tac_plus development around F4.0.4. There are different versions based on Cisco tac_plus, this is the version from Shrubbery Networks.
chinese/auto-tw-l10n-1.15 (Score: 0.011573693)
Automatic localization for Traditional Chinese locale
Traditional Chinese (BIG-5 encoding) zh_TW.Big5 automatic localization Install this port and you will have a Traditional Chinese FreeBSD system
sysutils/pkginfo-1.2.1 (Score: 0.011530627)
Query metadatdata from sdists / bdists / installed packages
This package provides an API for querying the distutils metadata written in the PKG-INFO file inside a source distribution (an sdist) or a binary distribution (e.g., created by running bdist_egg). It can also query the EGG-INFO directory of an installed distribution, and the *.egg-info stored in a "development checkout" (e.g, created by running setup.py develop).
www/opencart-2.3.0.2 (Score: 0.011530627)
Open source PHP-based online shopping cart system
OpenCart is an open source PHP-based online shopping cart system. A robust e-commerce solution for Internet merchants with the ability to create their own online business and participate in e-commerce at a minimal cost. OpenCart is designed feature rich, easy to use, search engine friendly and with a visually appealing interface.
comms/libsdr-0.1.0 (Score: 0.011411802)
Simple software defined radio (SDR) library
A simple software defined radio (SDR) library. Although being simple, libsdr is sufficient to write a simple SDR receiver application (github.com/hmatuschek/sdr-rx, above). This RX application supports several input sources (i.e. sound card, files, RTL2382 dongles etc.) and modes (i.e. AM, FM, SSB, CW, etc.).
security/gss-1.0.3 (Score: 0.011411802)
GNU Generic Security Service Library
GSS is an implementation of the Generic Security Service Application Program Interface (GSS-API). GSS-API is used by network servers (e.g., IMAP, SMTP) to provide security services, e.g., authenticate clients against servers. GSS consists of a library and a manual.
databases/DBIx-Safe-1.2.5 (Score: 0.011354733)
Safer access to your database through a DBI database handle
The purpose of DBIx::Safe is to give controlled, limited access to an application, rather than simply passing it a raw database handle through DBI. DBIx::Safe acts as a wrapper to the database, by only allowing through the commands you tell it to. It filters all things related to the database handle - methods and attributes. The typical usage is for your application to create a database handle via a normal DBI call to new(), then pass that to DBIx::Safe->new(), which will return you a DBIx::Safe object. After specifying exactly what is and what is not allowed, you can pass the object to the untrusted application. The object will act very similar to a DBI database handle, and in most cases can be used interchangeably. By default, nothing is allowed to run at all. There are many things you can control. You can specify which SQL commands are allowed, by indicating the first word in the SQL statement (e.g. 'SELECT'). You can specify which database methods are allowed to run (e.g. 'ping'). You can specify a regular expression that allows matching SQL statements to run (e.g. 'qr{SET TIMEZONE}'). You can specify a regular expression that is NOT allowed to run (e.g. qr(UPDATE xxx}). Finally, you can indicate which database attributes are allowed to be read and changed (e.g. 'PrintError'). For all of the above, there are matching methods to remove them as well.