Ports Search

Results 121130 of 17,773 for comment.zh_CN%3A%E6%8E%A7%E5%88%B6%E5%8F%B0.(0.008 seconds)
devel/B-Generate-1.54 (Score: 0.033070393)
Create your own Perl op trees
Malcolm Beattie's B module allows you to examine the Perl op tree at runtime, in Perl space; it's the basis of the Perl compiler. But what it doesn't let you do is manipulate that op tree: it won't let you create new ops, or modify old ones. Now you can. Well, if you're intimately familiar with Perl's internals, you can.
graphics/a2png-0.1.5 (Score: 0.03296881)
Converts plain ASCII text into PNG bitmap images
a2png is a UNIX program that converts plain text into PNG images.
print/a2pdf-1.13 (Score: 0.032834418)
Text to PDF converter
a2pdf converts ASCII text to PDF format, with optional line/page numbering and Perl syntax highlighting.
textproc/po4a-0.45 (Score: 0.032792576)
Brings gettext translation tools to all kinds of docs
The po4a (po for anything) project goal is to ease translations (and more interestingly, the maintenance of translations) using gettext tools in areas where they were not expected, like documentation. po4a supports currently the following formats: * manpages * pod * xml (generic, docbook, xhtml, dia, or guide) * sgml * TeX (generic, LaTeX, or Texinfo) * text (simple text files with some formatting) * ini * KernelHelp
mail/qmail-auditor-0.47 (Score: 0.0320971)
Selective e-mail auditing for qmail by means of qmail-queue wrapping
This software provides an easy and functional way to audit incoming and outgoing e-mails from a qmail server. It works by means of qmail-queue wrapping. It has a control file which allows selective auditing of sender or recipient, as well as whom the messages should be forwarded to. This control file allows regular expressions, what increases its flexibility of use.
devel/B-Hooks-OP-Annotation-0.44 (Score: 0.032071717)
Annotate and delegate hooked OPs
B::Hooks::OP::Annotation provides a way for XS code that hijacks OP op_ppaddr functions to delegate to (or restore) the previous functions, whether assigned by perl or by another module. Typically this should be used in conjunction with B::Hooks::OP::Check.
mail/dispmua-1.6.9 (Score: 0.031942245)
Displays the icon of the application with which the e-mail was written
DispMUA adds an image on the right side of the "header view" which displays the icon of the application with which the selected mail was written. So if the person who sent the mail used e.g. mozilla to send the mail, a mozilla icon will be displayed.
devel/B-C-1.52 (Score: 0.031147905)
Perl compiler's C backend
Perl compiler's C backend This compiler backend takes Perl source and generates C source code corresponding to the internal structures that perl uses to run your program. When the generated C source is compiled and run, it cuts out the time which perl would have taken to load and parse your program into its internal semi-compiled form. That means that compiling with this backend will not help improve the runtime execution speed of your program but may improve the start-up time. Depending on the environment in which your program runs this may be either a help or a hindrance.
devel/B-Compiling-0.06 (Score: 0.031015728)
Perl extension to expose PL_compiling to perl
This module exposes the perl interpreter's PL_compiling variable to perl.
devel/B-OPCheck-0.32 (Score: 0.031015728)
PL_check hacks using Perl callbacks
PL_check is an array indexed by opcode number (op_type) that contains function pointers invoked as the last stage of optree compilation, per op.