appears to work fine w/ kde4.
cmake will still generate a libfoo.so (which is useful as a placeholder to
know the lib has been built, since other directories don't have access to
the version number), but it obeys OpenBSD conventions for the actual library
now.
ld does the right thing, namely it ignores the libfoo.so and links against
libfoo.so.5.0 properly.
Also take environment into account to allow the ports tree to override
version numbers.
Todo: logfile of built libraries.
X11 >= 10, and bump those major numbers accordingly, so that bug-reports
will get easier to process.
(artificial `flag day' as discussed with deraadt@)
LibOFX is an API designed to allow applications to very easily support
OFX (Open Financial eXchange) command responses, usually provided by
financial institutions.
It was implemented directly from the full OFX 1.6 spec, and currently
supports:
* Banking transactions and statements
* Credit card and statements
* Investment transactions
* OFX 2
based on a submission by Landry Breuil <gaston at gcu dot info> (MAINTAINER)
The Benchmark::Timer class allows you to time portions of code
conveniently, as well as benchmark code by allowing timings of repeated
trials. It is perfect for when you need more precise information about
the running time of portions of your code than the Benchmark module will
give you, but don't want to go all out and profile your code.
ok jasper@
FileHandle::Unget is a drop-in replacement for FileHandle which allows
more than one byte to be placed back on the input. It supports an
ungetc(ORD) which can be called more than once in a row, and an
ungets(SCALAR) which places a string of bytes back on the input.
ok jasper@
This module can be used to determine the mime type of a file. It tries
to implement the freedesktop specification for a shared MIME database.
ok simon@
DESCR:
Bazaar-NG allows you to keep old versions of files and directories,
keep a log of who, when, and why changes occurred, etc., like SVN,
CVS, or RCS. Bazaar-NG is distributed, which gives it significant
advantages and some disadvantages compared to SVN and CVS.
Bazaar-NG is written in Python.